Hi,

I want to use Python to automate InDesign,
There is very little help on that subject !
I would like to use some of the sample scripts provided in the  InDesign 
Sripting documentation,
So I translate them from VBScript to Python which is ok except there are some 
parts written in JavaScript as well :

Quote from the tutorial "Importing a graphic" :
""" VBScript does not have the ability to do this, so we'll use a JavaScript to 
get a file name.
We'll run the JavaScript using InDesign's DoScript feature.
myJavaScriptString = "var myTextFile = File.openDialog(""Choose a 
graphicfile"");myTextFile.fsName;"
Run the JavaScript using DoScript.
myGraphicFileName = myInDesign.DoScript(myJavaScriptString, 
idScriptLanguage.idJavascript) """

So my question would be :
- how to import a graphic into Indesign using Python Win32 ?
- Should I try to make the doScript command work, the following command doesn't 
work :
myGraphicFileName = myInDesign.DoScript(myJavaScriptString, language = 
Javascript)


Thanks for your help,

Regards,

Thomas


                                          
_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to