Re: [Flashcoders] how to get a rollover event from a button component

2005-10-20 Thread eugen pflüger

hi micha,

thanks! its working.
but where did you get this trick from? lowlevelevents? never heard  
before. great!


eugen


Am 19.10.2005 um 16:48 schrieb Michael Stuhr:


eugen pflüger schrieb:


and also no onRollOver events or something like this. mouseMove  
is  not working either.

i thought maybe someone knows a hack?
eugen


import mx.events.LowLevelEvents;
foo.prototype = LowLevelEvents;
fooTrace = function (evt) {
trace (evt.target._name);
}
foo.addEventListener ('mouseOver', fooTrace);

foo is a v2 Button on Stage.

micha


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders











plugisto
...
eugen pflüger

alexanderstr. 109
70180 stuttgart

fon +49.711.6739797
mobil   +49.177.6428272
e-mail  [EMAIL PROTECTED]
...
http://www.plugisto.net
http://www.lifeperformance.net

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] how to get a rollover event from a button component

2005-10-20 Thread Michael Stuhr

eugen pflüger schrieb:

hi micha,

thanks! its working.
but where did you get this trick from? lowlevelevents? never heard  
before. great!


eugen




reading manuals sometimes. :-)

micha

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] how to get a rollover event from a button component

2005-10-19 Thread Spike
does mouseMove do what you want?

Spike

On 10/19/05, eugen pflüger [EMAIL PROTECTED] wrote:

 hello,

 this should be an easy one but i dont get it.

 how can i catch a rollover event from a button component?
 i just wanted to build a little tooltip.

 tia
 eugen
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




--

Stephen Milligan
Do you do the Badger?
http://www.yellowbadger.com

Do you cfeclipse? http://www.cfeclipse.org
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] how to get a rollover event from a button component

2005-10-19 Thread Michael Stuhr

eugen pflüger schrieb:

and also no onRollOver events or something like this. mouseMove is  
not working either.


i thought maybe someone knows a hack?

eugen


import mx.events.LowLevelEvents;
foo.prototype = LowLevelEvents;
fooTrace = function (evt) {
trace (evt.target._name);
}
foo.addEventListener ('mouseOver', fooTrace);

foo is a v2 Button on Stage.

micha


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders