Advance rollover tutorial

i was just goin through the advance rollover tutorial,
http://www.kirupa.com/developer/flash5/advroll.asp
and it was made for flash 5.
So the action scripting would be different rite?
so this is what i’ve tried…

on (release) {
rollover {
1text.gotoAndPlay;
}
}

i think its the rollover part thats wrong and i’m new at action scripting so what would the correct code thing be for flash mx? thx for your help

WHAT ?

it should look like this:

on (rollOver) {
rollover.gotoAndPlay ("1text");
}
on (rollOut) {
rollover.gotoAndPlay ("1back");
}

heh thx see what i mean about being new at this :slight_smile: