Re: Illustrator 10: Ungrouping Groups of Groups
Re: Illustrator 10: Ungrouping Groups of Groups
- Subject: Re: Illustrator 10: Ungrouping Groups of Groups
- From: Jason Bourque <email@hidden>
- Date: Fri, 15 Nov 2002 07:03:47 -0500
Thanks, that was a lot of help.
Jason Bourque
On 11/14/02 12:47 AM, "Shane Stanley" <email@hidden> wrote:
>
tell application "Adobe Illustrator 10"
>
make document
>
tell document 1
>
-- make some paths
>
repeat 15 times
>
make rectangle at end with properties {bounds:{0, 0, 100, 100}}
>
end repeat
>
-- make three groups
>
repeat with i from 1 to 3
>
make group item at end with properties {name:i as text}
>
move (path items 1 thru 5) to end of result
>
end repeat
>
--make new group
>
make group item at beginning with properties {name:"4"}
>
-- put old groups into new group
>
move (group items 2 thru 4) to end of group item 1
>
-- make second layer
>
make layer at end
>
-- move some stuff around
>
move group item 2 of group item 1 of layer 1 to end of layer 1
>
move group item 1 of group item 1 of layer 1 to end of layer 2
>
move path item 1 of group item 1 of group item 1 of layer 1 to end of
>
layer 1
>
move path item 1 of group item 1 of group item 1 of layer 1 to end of
>
layer 2
>
end tell
>
end tell
_______________________________________________
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.