Hi, i am trying to make an Interactive resume, but i am having problem on linking my button to scene 2,
my button are animated, and the animation work well, but once i click on it, it didn't link to another scene,
here is my code of my button
stop();
button_mc.onRollOver = function(){
button_mc.gotoAndPlay("over");
};
button_mc.onRollOut = function(){
button_mc.gotoAndPlay("out");
};
button_mc.onRelease = function(){
button_mc.gotoAndPlay("Scene 4", 1);
};
can anyone tell me how to solve this ? Thanks.