This is a great site!!! Anyhow, I’ve been trying to use Claudios tutorial on the external swf transitions, and I cam across an issue that I’ve sat here for an hour trying to figure out. I initially had his tutorial working perfectly, but then I decided to use animated navigation to my site. This is what was I had inside the invisible button in my prior to adding Claudios script:
on (rollOver){
tellTarget ("/buttonD") {
gotoAndPlay (“over”);
}
}
on (rollOut) {
tellTarget ("/buttonD") {
gotoAndPlay (“out”);
}
}
I then added the script from Claudios Tutorial:
b1.onRelease = function() {
if (_root.section != “page4.swf”) {
_root.section = “page4.swf”;
_root.transition.gotoAndPlay(“closing”);
}
};
And modified it so I could apply it to my mc:
on (release){
if (_root.section != “page4.swf”) {
_root.section = “page4.swf”;
_root.transition.gotoAndPlay(“closing”);
}
}
Can someone explain to me what I’m doing wrong?? i’m not too sure, but it doesn’t seem to work at all