Re: PASSing out with frustration

2011-02-16 Thread Andre Garzia
On Wed, Feb 16, 2011 at 3:55 PM, Colin Holgate wrote: > > On Feb 16, 2011, at 12:40 PM, Andre Garzia wrote: > >> never heard of enabled... cool... > > The funny thing is that I hadn't either, but I know from using Flash that a > similar issue can be solved by setting the mouseEnabled to false, so

Re: PASSing out with frustration

2011-02-16 Thread Scott Rossi
Recently, Colin Holgate wrote: > On Feb 16, 2011, at 12:40 PM, Andre Garzia wrote: > >> never heard of enabled... cool... > > The funny thing is that I hadn't either, but I know from using Flash that a > similar issue can be solved by setting the mouseEnabled to false, so I > searched help for "

Re: PASSing out with frustration

2011-02-16 Thread Colin Holgate
On Feb 16, 2011, at 12:40 PM, Andre Garzia wrote: > never heard of enabled... cool... The funny thing is that I hadn't either, but I know from using Flash that a similar issue can be solved by setting the mouseEnabled to false, so I searched help for "enabled".

Re: PASSing out with frustration

2011-02-16 Thread Richmond
On 02/16/2011 07:40 PM, Andre Garzia wrote: never heard of enabled... cool... Well; it certainly ENABLED me to get on with my work . . . :) ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe a

Re: PASSing out with frustration

2011-02-16 Thread Andre Garzia
never heard of enabled... cool... On Wed, Feb 16, 2011 at 2:22 PM, Richmond wrote: > On 02/16/2011 06:12 PM, Colin Holgate wrote: >> >> You might get what you want by setting the enabled of the overlay graphic >> to false. >> >> > > I think I love you!  That is so simple and so effective, and "Ju

Re: PASSing out with frustration

2011-02-16 Thread Richmond
On 02/16/2011 06:12 PM, Colin Holgate wrote: You might get what you want by setting the enabled of the overlay graphic to false. I think I love you! That is so simple and so effective, and "Just" works. Thank you so much. ___ use-livecode mailing

Re: PASSing out with frustration

2011-02-16 Thread Robert Brenstein
On 16.02.11 at 17:44 +0200 Richmond apparently wrote: I have a series of images used as buttons with an optional overlay image that has both transparent and semi-opaque areas. When I mouse Down/Up over the opaque areas I want the mouse Down / Up signals to pass through the overlay to the images

Re: PASSing out with frustration

2011-02-16 Thread Andre Garzia
oh that is clever... On Wed, Feb 16, 2011 at 2:03 PM, Rick Harrison wrote: > Hi Richmond, > > Check the location of the mouse.  If it is within > the same range as your opaque area send the > message click onto your opaque image. > > Cheers, > > Rick > > On Feb 16, 2011, at 10:44 AM, Richmond wro

Re: PASSing out with frustration

2011-02-16 Thread Jeff Massung
Here's what I do for my toolbars... Create a transparent button. Edit the script of the button in the following way: on mouseDown ## do click effect end mouseDown on mouseUp ## undo click effect end mouseUp on mouseRelease mouseUp end mouseRelease Now, hide that button. Make a series of

Re: PASSing out with frustration

2011-02-16 Thread Colin Holgate
On Feb 16, 2011, at 10:44 AM, Richmond wrote: > When I mouse Down/Up over the opaque areas > I want the mouse Down / Up signals to > pass through the overlay to the images underlying it. > > But I cannot get my thick head around the mechanics of > PASS. I believe that Pass only passes up the hi

Re: PASSing out with frustration

2011-02-16 Thread Rick Harrison
Hi Richmond, Check the location of the mouse. If it is within the same range as your opaque area send the message click onto your opaque image. Cheers, Rick On Feb 16, 2011, at 10:44 AM, Richmond wrote: > I have a series of images used as buttons > with an optional overlay image that has > b

PASSing out with frustration

2011-02-16 Thread Richmond
I have a series of images used as buttons with an optional overlay image that has both transparent and semi-opaque areas. When I mouse Down/Up over the opaque areas I want the mouse Down / Up signals to pass through the overlay to the images underlying it. But I cannot get my thick head around t