Here ya go scotty

http://www.eyeofthestormmusicgroup.com/unspeakable.zip

okay, downloading:thumb:

oops, it’s getting late…
i got it (a little bit) working, i hope i understand the setup you have.

[AS]on (rollOver) {
_root.rollover.gotoAndPlay(“RollOn7”);
}
on (rollOut) {
_root.rollover.gotoAndPlay(“RollOff7”);
}
on (release) {
if (_global.currMovie != “articles”) {
_root.contents.loadMovie(“articles.swf”);
if (_root.contents._currentframe == _global.midframe) {//this is not working right. at least here
_root.contents.play();
}
}
}[/AS]
on your button (there’s a typo in your rollovermc (roffover7))
at the end of your swf:
[AS]_global.currMovie = “articles”[/AS]
and in the beginning _global.midframe= …
hope this will help

scotty(-:

thanks for trying :).

didn’t work??
[AS]on (rollOver) {
_root.rollover.gotoAndPlay(“RollOn7”);
}
on (rollOut) {
_root.rollover.gotoAndPlay(“RollOff7”);
}
on (release) {
if (_global.currMovie != “articles”) {
_root.contents.loadMovie(“articles.swf”);}
if (_global.currMovie = “articles” && _root.contents._currentframe == _global.midframe) {
_root.contents.play();
}
}

[/AS]
the second “if” should be outside the first one.
let me know if you’ve found out what was wrong:h:

scotty

No, still can’t get it to work…I have until tommorow night. It was working at first…then it started screwing up…and I really need to get this to this client ASAP…and this is the only thing keep me from doing it.

If anyone else wants to help I basically have in and out animations for each section…that work fine…or used to. But even when it worked alright it was rendered useless when loaded into another movie because the MC’s were no longer _root. I figured I’d just change a couple of things and it would work fine. The link to the zip is in this thread if you want to give it a shot. Home.fla is to be loaded in index.fla a couple of sections have been included to test the “in” and “out” transitions to make sure they work. Thanks!

okay, i won’t give up. i misunderstood the index.fla.
this is working here: i puton the end of swf instead of the load mov thing:
[AS]_global.currMovie = “articles”
[/AS]

and for your button (articles eg):
[AS]on (rollOver) {
_root.homeloader.rollover.gotoAndPlay(“RollOn7”);
}
on (rollOut) {
_root.homeloader.gotoAndPlay(“RollOff7”);
}
on (release) {
if (_global.currMovie != “articles”) {
_global.currMovie = “articles”;
_root.homeloader.contents.loadMovie(“articles.swf”);
} else if (_global.currMovie == “articles”) {
if (_root.homeloader.contents._currentframe == _root.homeloader.contents.midframe) {
_root.homeloader.contents.play();
}
}
}
[/AS]

scotty(-:
ps i don’t know what you wan twith the midframe, better change that to global also(check my other post)

Thanks, I’ll give it a try, I’ll hit you with a PM if I have any questions!!