Re: Group Items in Illustrator
Re: Group Items in Illustrator
- Subject: Re: Group Items in Illustrator
- From: Simon Topliss <email@hidden>
- Date: Fri, 22 Jun 2001 13:18:08 +0100
Pier,
Use the move command.
-- This script ungroups all items of group item 1
tell application "Adobe Illustrator. 9.0.2"
set allPageItems to every page item of group item 1 of document 1
move allPageItems to beginning of layer 1 of document 1
end tell
HTH
Simon
On 22/6/01 11:46 am, "Pier Kuipers" <email@hidden> wrote:
>
Anybody any ideas on how to ungroup items in Illustrator? I seem to
>
have terrible problems dealing with groups:
>
>
set selected of (every page item of current document whose class is
>
group item) to true
>
--> Selects only groups, as expected.
>
>
set selected of (every page item of current document whose class is
>
not group item) to true
>
--> Selects everything, including items that *are* group items
>
>
I am sort of stuck. Any help greatly appreciated.
>
>
Pier.