More groups

2003-03-02 Thread Ken Norris
OK, here's another one: These are virtual keyboards. How do I reference the same stored image to three separate background groups? The reason is because I need 3 parts of image 2 visible simultaneously as cutouts in the top image 1, such that the transparent buttons in those positions can

Re: More groups

2003-02-28 Thread Geoff Canyon
Navigator would let you easily select the objects to be grouped without worrying about positioning, etc. It comes with the 2.0 beta, but also works with 1.1.1: http://www.inspiredlogic.com/navigator On Thursday, February 27, 2003, at 02:44 PM, Ken Norris (dialup) wrote: Hi everyone, I'm not

Re: More groups

2003-02-28 Thread Ken Norris (dialup)
** Date: Fri, 28 Feb 2003 12:29:37 +1000 Subject: Re: More groups From: Sarah [EMAIL PROTECTED] Hi Ken, Try stepping through with the Script Debugger. You will see that Klaus' script builds a string from the list of objects in his field, using a repeat for each loop. So

More groups

2003-02-27 Thread Ken Norris (dialup)
Hi everyone, I'm not quite sure how to do this: I want to group of buttons which are already made and not in a particular order (as in 1-40). Doing them by hand is wonky and time consuming, Sometimes it misses, or I accidenatally mess up the position or size, too, and have to fix it. So, I want

Re: More groups

2003-02-27 Thread Klaus Major
Hi Ken, Hi everyone, I'm not quite sure how to do this: I want to group of buttons which are already made and not in a particular order (as in 1-40). Doing them by hand is wonky and time consuming, Sometimes it misses, or I accidenatally mess up the position or size, too, and have to fix it.

Re: More groups

2003-02-27 Thread Ken Norris (dialup)
** Date: Fri, 28 Feb 2003 00:02:18 +0100 Subject: Re: More groups From: Klaus Major [EMAIL PROTECTED] supposed you have a list (field or var) of elements you want to group like: field 3 field 2 button 2 button 3 ... Then you can script (i have a field here): on mouseUp

Re: More groups

2003-02-27 Thread Sarah
Hi Ken, Try stepping through with the Script Debugger. You will see that Klaus' script builds a string from the list of objects in his field, using a repeat for each loop. So mylist_to_group ends up containing: field 3 and field 2 and button 2 and button 3 and As it ends with an extra and, he