I am error trapping in my code I need a little help. Once I have trapped the error how can I make my script go to the next line of code after the error was found. I get an error in my code at this line
set bleed of document 1 to 20
How can I make it skip that line and go to the next line which is Print document 1
Print document 1
close document 1
tell application “QuarkXPress™”
try
set bleed of document 1 to 20
Print document 1
close document 1
on error errmsg number errnum
if errnum is -1208 then
go to line print document 1 and continue
end if
end try
end tell