Quantcast
Channel: Adobe Community: Message List - FrameMaker Scripting
Viewing all articles
Browse latest Browse all 3715

Re: Output function (results to a file) in Extendscript

$
0
0

Check the JavaScript Tools Guide for details about the File object. Basically, it works more or less like this:

 

var oFile = new File ( /* full path name as text string */ );

 

oFile.open( "w" );     /* use "a" to append, "w" to remove existing text.

 

oFile.writeln ( "Whatever you want to write in there" );

 

oFile.close (  );

 

 

Ciao

 

Jang


Viewing all articles
Browse latest Browse all 3715

Trending Articles