buddylee
November 11th, 2002, 06:29 PM
Ok, I am trying to perform a simple animation for a hyperlink. What I am doing is when you rollover my hyperlink which is a MC called "home", it duplicates another MC called "home2". After that, it sets the home2 _x + 20, and the home2 _y -20. For some reason, none of this happens with the coding I am using.
here is my code...
on(rollOver){
_root.home.duplicateMovieClip("home2", 1);
_root.home2._x+=20;
_root.home2._y-+20;
}
on (rollOut){
_root.home2._x-=20;
_root.home2._y+=20;
}
here is my code...
on(rollOver){
_root.home.duplicateMovieClip("home2", 1);
_root.home2._x+=20;
_root.home2._y-+20;
}
on (rollOut){
_root.home2._x-=20;
_root.home2._y+=20;
}