k. so heres my problem. i’ve got a movie clip acting as a button…the actionscript within the clip is this:
stop();
this.onEnterFrame = function()
{
if(rewind == true)
{
prevFrame();
}
}
this.onRollOver = function()
{
rewind = false;
play();
}
this.onRollOut = function()
{
rewind = true;
}
when it’s just like that, the button effect plays out perfectly. when i add this
this.home.onRelease = function()
{
gotoAndStop(“main”,33);
}
actionscript to the main timeline so that the button can switch frames to view different content. the button works so that it’ll change frames, but the effect no longer plays… any ideas? [color=#0000ff]click here[/color] to see an example. the Home button is the only one that has the actionscript on it to goto a new frame.