Re: QXP: ungrouping ?
Re: QXP: ungrouping ?
- Subject: Re: QXP: ungrouping ?
- From: Hans Haesler <email@hidden>
- Date: Wed, 7 Nov 2001 08:20:17 +0100
On Wed, 7 Nov 2001, Frank Watzl wrote:
>
Quark Express 4.11 --
I guess you mean 'QuarkXPress' ...
>
is it possible to ungroup a set of grouped generic boxes via AppleScript?
Yes, it is. Use a 'select menu item' command:
---
tell application "QuarkXPress 4.11"
activate
select menu item 11 of menu 5
end tell
---
Note that the separation lines count as item.
And don't forget to count the Apple Menu.
Maybe you'll feel more comfortable when you replace the IDs
by the text. This would look like this (in Frankfurt):
---
select menu item "Gruppieren rueckgaengig" of menu "Objekt"
---
Of course, you must replace the 'ue' and the 'ae' by the
German equivalent.
Regards,
Hans
---
Hans Haesler <email@hidden>