Re: APPLESCRIPT FROM 4D

2019-06-26 Thread Keisuke Miyako via 4D_Tech
the "tell" verb specifies the target object in applescript. so if there is only one line, > tell application "Preview" > print POSIX file "/Volumes/SnapServer/Test_Invoices/Checon_Invoices/2019/04 - > April/224747_04_12.PDF" with print dialog > end tell could be reduced to > tell application "

Re: APPLESCRIPT FROM 4D

2019-06-26 Thread Keisuke Miyako via 4D_Tech
you can insert a line activate in the tell~end tell block > 2019/06/27 5:50、Chuck Miller via 4D_Tech <4d_tech@lists.4d.com>のメール: > How would I bring Preview to the front ** 4D Internet Users Group (4D iNUG) Archive: http://

APPLESCRIPT FROM 4D

2019-06-26 Thread Chuck Miller via 4D_Tech
I Have the following AppleScript which I run and which works fine tell application "Preview" print POSIX file "/Volumes/SnapServer/Test_Invoices/Checon_Invoices/2019/04 - April/224747_04_12.PDF" with print dialog end tell I have the code I use to create it and will share should someone