Definition of document variable
Hi All,
how i can define variable to point to a document. is
var mySourceDocument = app.documents[0] ;
correct?
it produce Result:undefined.
Regards
Saeed
Hi All,
how i can define variable to point to a document. is
var mySourceDocument = app.documents[0] ;
correct?
it produce Result:undefined.
Regards
Saeed
Hi Saeed,
I suppose you are running this line of code with the ExtendScript Toolkit (ESTK) app and you are seeing this in the JavaScript Console after running:
Result: undefined
That does not mean that your variable mySourceDocument is undefined.
The whole script—that one line—is returning that to the ESTK console.
If you would add a second line like that:
var mySourceDocument = app.documents[0];
mySourceDocument
the result in the ESTK console—if a document is open—would be:
Result: [object Document]
The script would not return anything to the ESTK console if you would add e.g. exit() as second line:
var mySourceDocument = app.documents[0];
exit();
Regards,
Uwe
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.