If your rollover is interfering with your ability to click on a textbox, I recommend using a hitTest between the mouse and addButton or nameSearchInput. Button actions, like rollovers, will block other mouse events, like being able to click on a textbox.
In AS 2.0
if(addButton.hitTest(_root
{
trace("the mouse is positioned over my_mc")
}
In AS 3.0
addButton.addEventListener
public function HandleMouseOver(event:Mous
{
trace("The mouse is positioned over addButton");
}
Main Topics
Browse All Topics





by: jockmahon01Posted on 2008-11-28 at 09:17:44ID: 23056617
also how do i call an external function
stener("ro llOver", Delegate.create(this , tmp ) );
so instead of the above something like
nameSearchInput.addEventLi