Re: Opening files in Illustrator CS3
Re: Opening files in Illustrator CS3
- Subject: Re: Opening files in Illustrator CS3
- From: Luther Fuller <email@hidden>
- Date: Thu, 17 Apr 2008 19:01:11 -0500
You can avoid coercion to text. Assuming that 'this_item' is an
alias ...
tell application "Finder"
if class of item this_item is alias file then
set this_item to (original item of this_item) as alias
end if
end tell
On Apr 17, 2008, at 6:37 PM, Shane Stanley wrote:
You really want Illustrator to open the files -- using the Finder
introduces
other problems. But you can use the Finder to deal with the aliases
first,
by inserting something like this:
tell application "Finder"
if class of file (this_item as text) is alias file then
set this_item to (original item of this_item) as alias
end if
end tell
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden