I'm working with Adobe InDesing Server CS 5.5 and having problem that *.jsx script is not able to read input parameters
I run following command: sampleclient.exe -host localhost:8080 "c:\CreateJPEG.jsx" param1="1"
Here is the script:
#target InDesignServer
app.scriptPreferences.version = 7.0;
main();
function main()
{
var eRet;
if (app.scriptArgs.get("param1"))
{
var sXMLFilePath = "C:\\CreateJPEG.xml";
var eRet = app.createJpeg (sXMLFilePath);
}
}
app.scriptArgs.get("param1") is false always. Please help, I couldn't find an answer anywhere. All documents stats that this should work.