2018-03-28
09:39 AM
- last edited on
2022-12-06
01:43 PM
by
Daniel Kassai
GSErrCode err;
API_ProjectInfo info;
err = ACAPI_Environment (APIEnv_ProjectID, &info, nullptr);
if (err != NoError){
ErrorBeep ("APIEnv_ProjectID", err);
}
else{
WriteReport("project path is %s", info.projectPath); // returns null always
WriteReport("project name is %s", info.projectName); // returns null always
}
Is there any other specific thing that should be done in order to make this work? Is the project name something different than the filename of the pln?2018-03-28 10:57 AM
WriteReport("project untitled is %s",(info.untitled)?"true":"false"); // returns false always
Why it says that the file is not saved? I'm opening an already saved project.
2018-04-06 01:19 PM