On 10/30/05, Liu, Kai M <[EMAIL PROTECTED]> wrote:
> This is a simpler approach, copy and paste it into new FLA and try:
>
> [CODE]
>
> _root.createTextField("txt",10,10,10,200,30);
> onMouseMove = function(){
>         if (_xmouse < 0 || _xmouse > Stage.width || _ymouse <0 ||
> _ymouse > Stage.height){
>                 txt.text = "Your cursor is off now.";
>         }else{
>                 txt.text = "Welcome back, cursor.";
>         }
> }
>
> [/CODE]
>
> Cheers :-)

This doesn't work for me. I stop getting onMouseMove events once my
mouse leaves the flash movie.
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to