Help getting rollover listners to work in a scroll pane
In AS2, how can i get a roll over listner in a MC inside a scroll pane to display a MC tool tip on the stage outside of the scroll pane? I am using the following code in the main time line to display the tool tip and it dosn't seem to be working:
//****Sel******//
selectionTxt._visible = false;
Sel.onRollOver = function()
{
selectionTxt._visible = true;
}
Sel.onRollOut = function()
{
selectionTxt._visible = false;
}
Any clue would be appreciated