Page 1 of 1

Remove Button from Group

Posted: Thu Nov 20, 2008 8:24 pm
by warrenk
How can I remove one button from a group of fields and buttons?

Thanks!
Warren

Posted: Thu Nov 20, 2008 8:34 pm
by Mark
Hi Warren,

That's very simple:

Code: Select all

delete btn x of grp y
Best,

Mark

Posted: Thu Nov 20, 2008 11:20 pm
by Garrett
Would this also work Mark if he has the name of the button:

Code: Select all

delete button "buttonNameHere"

Posted: Thu Nov 20, 2008 11:37 pm
by Mark
Hi Garrett,

Of course, you can replace btn x and grp y with any valid reference to that button or that group. If the name of the button is unique, a reference to the button suffices and you won't need to refer to the group.

Best,

Mark