I have several UIComponents listening for events on fields for 
example see below, but since going to beta 2, the target seems to be 
fired higher and to the left of the UIComponent itself?? Has anyone 
come accross anything similar??

//var lXAxis:UIComponent = new UIComponent;
                        this.addChild(this.lXAxis);
                        this.lXAxis.x = this.leftBorder;
                        this.lXAxis.y = 
this.chartHeight+this.topBorder;
                        this.lXAxis.graphics.beginFill(0x0000FF,1);
                        this.lXAxis.graphics.drawRect
(0,0,this.chartWidth,this.bottomBorder);
                        this.lXAxis.alpha = 0.2;
                
                this.lXAxis.addEventListener
("dragEnter",this.XAxisrespondToMouseEnter);
                        this.lXAxis.addEventListener("dragDrop", 
this.XAxisrespondToDrop);
                        this.lXAxis.addEventListener("dragExit", 
this.XAxisrespondToExit);
                        this.lXAxis.addEventListener("mouseOut", 
this.XAxisrespondToExit);





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to