Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
set theFHfile to alias "Path:to:theFHfile"
tell application "Adobe Illustrator"
-- These lines stop at the FH options dialog despite the 'without dialogs' clause:
open theFHfile without dialogs
open theFHfile with options {convert text to outlines:false, import single page:true} without dialogs
-- This line errors and says it can't get the alias:
open theFHfile with options {class:FreeHand options, convert text to outlines:false, import single page:true} without dialogs
end
Copy link to clipboard
Copied
tell application "Adobe Illustrator"
set properties of FreeHand file options of settings to {convert text to outlines:false, import single page:true}
set user interaction level to never interact
open theFHfile without dialogs
-- Continue...
set user interaction level to interact with all
end tell
Find more inspiration, events, and resources on the new Adobe Community
Explore Now