Re: Illustrator 10 translate object problem
Re: Illustrator 10 translate object problem
- Subject: Re: Illustrator 10 translate object problem
- From: Shane Stanley <email@hidden>
- Date: Tue, 03 Jun 2003 07:21:46 -0700
On 3/6/03 6:43 AM +1000, Rob Stott, email@hidden, wrote:
>
The following script will happily *move* the item, but not duplicate.
>
>
tell application "Adobe Illustrator 10"
>
tell front document
>
tell layer 1
>
translate path item 1 delta x 100
>
end tell
>
end tell
>
end tell
Something like:
tell application "Adobe Illustrator 10"
tell front document
tell layer 1
duplicate path item 1 to after path item 1
translate result delta x 100
end tell
end tell
end tell
--
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.