i need to know the code for
on rollover gotoandstop on frame 2 of root_cursor
i need to know the code for
on rollover gotoandstop on frame 2 of root_cursor
say you have a cursor named cursor on the _level0 (_root), go like this on the button
on(rollOver)
{
_root.cursor.gotoAndStop(2);
}
on(rollOut)
{
_root.cursor.gotoAndStop(1);
}