Re: [AS Users]Re: Quark Version Compile Trouble
Re: [AS Users]Re: Quark Version Compile Trouble
- Subject: Re: [AS Users]Re: Quark Version Compile Trouble
- From: Shane Stanley <email@hidden>
- Date: Thu, 17 Jul 2003 21:08:16 +1000
On 17/7/03 6:21 PM +1000, Matyas Ferenc Farkas, email@hidden, wrote:
>
The "vertical measure" error with 5 asterisks:
>
if *****vertical measure***** millimeters then
That compiles fine here (with the "does not equal" sign).
>
The page with loop variable I error with 5 asterisks:
>
>
on saveEps(theStart, theEnd, theEPSfolder, theDocName, theBleed)
>
tell application "Quark"
>
repeat with i from theStart to theEnd
>
tell page *****I***** of document 1
>
save in (theEPSfolder as string) & theDocName & "_Page_" & i
>
& ".eps" as +class furl; EPS format Mac color EPS data binary EPS OPI
>
include images bleed theBleed scale 100 version vers current
I don't understand why you're using "as +class furl;", and the version
parameter is for saving QXP files, not eps files. Try:
save in file ((theEPSfolder as string) & theDocName & "_Page_" & i &
".eps") EPS format Mac color EPS data binary EPS OPI include images bleed
theBleed scale 100
--
Shane Stanley, email@hidden
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.