I am trying to have a button that grows on mouseover, then shrinks on mouseout.
WTF? Its killing me.
I have this in AS2, with "over" and "out" being the proper frames, but nothing is happening.
book_head.onRollOver = Over;
book_head.onRollOut = Out;
function over()
{
this.gotoAndPlay("Over");
}
function out()
{
this.gotoAndPlay("Out");
}
Anyone have an easy answer?
-edit-
I am programming dumb, so I'm sorry for the elementary question.
