#ADPRO ARexx SEPARATE
4 messages in this thread
I have ADPRO 1.03 and am trying to use AREXX SEPARATE:
SEPARATE work:seps/test CMYK
The file get separated but ends up in the directory with ADPRO *and* the
names are C.cyn M.mag Y.yel (or something similar) What am I doing wrong?
Jeff
Put quotes around the file name.
pk
? Sorry, I wasn't very clear in my description. Here is the REXX fragment
which I launch from within ADPRO. I have checked the dstFile string and it
looks like a valid path name. The result is CYMK.mag … in the directory
with ADPRO.
—-trace all address "ADPro" options results
getfile '"Select file to be separated:"' 'imagine:' if RC ~= 0 then exit
srcFile = ADPRO_RESULT
getfile '"Select destination name:"' 'work:tmp' if RC ~= 0 then exit
dstFile = ADPRO_RESULT
load srcFile if RC ~= 0 then do
okay1 "Error Loading" srcFile
exit end
use_separation_defaults separate dstFile CMYK
Any thoughts??? *sigh* Jeff