2018-03-28 12:39 AM
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 01:57 AM
WriteReport("project untitled is %s",(info.untitled)?"true":"false"); // returns false alwaysWhy it says that the file is not saved? I'm opening an already saved project.
2018-04-06 04:19 AM