I'm in a bit of a squeeze, but before i state my problem, this is the foundation to the problem:
I have a page.swf that has a button with simple action:
on (press) {
getURL("stores.html","_self"
;
}
Now the stores.swf calls other swfs into the html, to comprise the end result, like so:
loadMovieNum("bkgrnd.swf", 0);
loadMovieNum("menu.swf", 1);
loadMovieNum("stores1.swf", 2);
stores1.swf has 7 scenes, and the last frame of scene has the action:
if (aa==2) {
gotoAndStop("Scene 2", 1);
} else if (aa==3) {
gotoAndStop("Scene 3", 1);
} else if (aa==4) {
gotoAndStop("Scene 4", 1);
} else if (aa==5) {
gotoAndStop("Scene 5", 1);
} else if (aa==6) {
gotoAndStop("Scene 6", 1);
} else if (aa==7) {
gotoAndStop("Scene 7", 1);
}
I was wonder if through some crazy string value or some other way I can target a scene in store1.swf to play by sending the aa value of the scene i want to play, and doing this from the button in page.swf that currently has this action:
on (press) {
getURL("stores.html","_self"
;
}
So... I'm hoping that this can be done... and if not ...please someone let me know!
If I need to explain things better, i will, just let me know
I have a page.swf that has a button with simple action:
on (press) {
getURL("stores.html","_self"

}
Now the stores.swf calls other swfs into the html, to comprise the end result, like so:
loadMovieNum("bkgrnd.swf", 0);
loadMovieNum("menu.swf", 1);
loadMovieNum("stores1.swf", 2);
stores1.swf has 7 scenes, and the last frame of scene has the action:
if (aa==2) {
gotoAndStop("Scene 2", 1);
} else if (aa==3) {
gotoAndStop("Scene 3", 1);
} else if (aa==4) {
gotoAndStop("Scene 4", 1);
} else if (aa==5) {
gotoAndStop("Scene 5", 1);
} else if (aa==6) {
gotoAndStop("Scene 6", 1);
} else if (aa==7) {
gotoAndStop("Scene 7", 1);
}
I was wonder if through some crazy string value or some other way I can target a scene in store1.swf to play by sending the aa value of the scene i want to play, and doing this from the button in page.swf that currently has this action:
on (press) {
getURL("stores.html","_self"

}
So... I'm hoping that this can be done... and if not ...please someone let me know!
If I need to explain things better, i will, just let me know
