How do I change a path??
Posted in: zjnq.com Date: March 13th, 2010

on the buttons make sure that you direct it to the main stage by putting _root before your mc name so that it knows where to go.
like this
on (rollOver) {
loadMovie("nameofyourswffilehere.swf", "_root.nameofyourmoviecliphere");
stop();
}
see if that works
on(release){
_root.pathtoyourcontainer.loadMovie("test.swf");
}
scotty(-:
on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = "two";
container.loadMovie("two.swf");
} else if (_root.currMovie != "two") {
if (container._currentframe >= container.midframe) {
_root.currMovie = "two";
container.play();
}
}
}
so where the container is located needs to be changed or something...b/c this script goes on a different timeline. i have other buttons on the main timeline that load movies fine b/c they are in the same place, but i made buttons that move so they're on a separate timeline..since threre are no levels i must be using a different route than you.
Thanks for the suggestion though.
#If you have any other info about this subject , Please add it free.# |
