There could be a lot of reasons why this is happening.  For starters, check
out my FAQ page at:

http://nondocs.blogspot.com/2007/04/flexfaqmouseevents.html

If none of those things are the problem, then you're going to need to
provide some more detail so we can figure out what other weird things might
be going on.

- Dan Freiman

On 4/28/07, eveyeti <[EMAIL PROTECTED]> wrote:

  Hi,
I have an issue on UIComponent, inside this class there is addListener
Listening mouseUp event but it never trigger.

this is my code:

*package
{
    import mx.core.UIComponent;
    import mx.controls.Alert;
    import flash.events.MouseEvent;

    public class MiComponente  extends UIComponent
    {
        public function MiComponente(){
            super();
            this.addEventListener(MouseEvent.MOUSE_UP
,onMouseUp,false,0,true);

        }
        public function onMouseUp(evt:MouseEvent):void{
                Alert.show("it' works!!!!","YEZ");
        }
    }
}*

Reply via email to