Ok, so this time I think I have a less complicated question. I’ve applied the Complex Button Rollover/out Effect tutorial with no problems, but now I would like to have the same button control a Movie Clip in the same scene. I gave the MC an instance name of ‘image’, and tried replacing ‘this’ variable with ‘image’ naively thinking that it would do a similar effect to what Tell Target does. This is what I have on one button:
stop();
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
this.onRollOver = function(){
rewind = false;
play();
}
this.onRollOut = function(){
rewind = true;
}
image.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
image.onRollOver = function(){
rewind = false;
play();
}
image.onRollOut = function(){
rewind = true;
}
I was hoping it would be that easy but I guess not :cantlook:
Something tells me it’s an easy solution, but then again I thought a simple replacement would work =/
Any help would be much appreciated. Thanks.
[color=DarkRed] Attachment[/color] - wcc_home.fla