Question
movie clip draggable button
Here is the code I have so far. it has been driving me nuts
in my attempt to make my homepage the problem is it will not read
the gotoAndPlay command to take the overall movie to frame 5 and
then stop. seems easy and not overwelming but no matter what i do
it does not work.
here is the code please help.
//about button commands
var mcAbout:MovieClip;
mcAbout.onPress = function(){
startDrag("mcAbout");
}
mcAbout.onRelease = function(){
stopDrag();
}
var mcAbout:MovieClip
mcAbout.onRollOver = function(){
mcAbout.gotoAndPlay("rollover");
}
mcAbout.onRollOut = function(){
mcAbout.gotoAndPlay("rollout");
}
mcAbout.onMouseDown= function(){
mcAbout.gotoAndPlay(5);
}
here is the code please help.
//about button commands
var mcAbout:MovieClip;
mcAbout.onPress = function(){
startDrag("mcAbout");
}
mcAbout.onRelease = function(){
stopDrag();
}
var mcAbout:MovieClip
mcAbout.onRollOver = function(){
mcAbout.gotoAndPlay("rollover");
}
mcAbout.onRollOut = function(){
mcAbout.gotoAndPlay("rollout");
}
mcAbout.onMouseDown= function(){
mcAbout.gotoAndPlay(5);
}