This is driving me crazy cause sometimes it works and sometimes it doesn't.
I have a menu that is called into another swf, with the first frame action:
if (_level0.valo=="1a1"
{
gotoAndStop(10);
} else {
gotoAndStop(11);
}
play();
//second frame:
if (_level0.valo=="1a1"
{
gotoAndStop(10);
} else {
gotoAndStop(11);
}
// frame 10 and 11:
stop ();
in one of the html page i have embed another swf with a string like so ...swf?valo=101
so when that specific html is called everything is set in motion and the menu movie called into that html goes to frame 10 and stops. From that specific html page if a menu option from the menu.swf is on(press) it goes to another html 9i'll call html2) and the menu doesn't pick up the string cause there is no string and the menu stops on frame 11. This all work perfectly EXCEPT, if i clear the cache and refresh html2 the menu goes and stops on frame 10 even though there is no string, if i hit refresh again (without clearing the cache) the page loads and the menu stops on 11.
so why does clearing the cache and reloading the page cause the menu to think there is a string OR cause the menu to ignor the begining actions and play to the first stop (frame10):
if (_level0.valo=="1a1"
{
gotoAndStop(10);
} else {
gotoAndStop(11);
}
ahhhh... there is some sort of weird conflict here and its driving me CRAzY..ahhhhhhhhhhhh... please help!
Thanksssssss!
I have a menu that is called into another swf, with the first frame action:
if (_level0.valo=="1a1"
gotoAndStop(10);
} else {
gotoAndStop(11);
}
play();
//second frame:
if (_level0.valo=="1a1"
gotoAndStop(10);
} else {
gotoAndStop(11);
}
// frame 10 and 11:
stop ();
in one of the html page i have embed another swf with a string like so ...swf?valo=101
so when that specific html is called everything is set in motion and the menu movie called into that html goes to frame 10 and stops. From that specific html page if a menu option from the menu.swf is on(press) it goes to another html 9i'll call html2) and the menu doesn't pick up the string cause there is no string and the menu stops on frame 11. This all work perfectly EXCEPT, if i clear the cache and refresh html2 the menu goes and stops on frame 10 even though there is no string, if i hit refresh again (without clearing the cache) the page loads and the menu stops on 11.
so why does clearing the cache and reloading the page cause the menu to think there is a string OR cause the menu to ignor the begining actions and play to the first stop (frame10):
if (_level0.valo=="1a1"
gotoAndStop(10);
} else {
gotoAndStop(11);
}
ahhhh... there is some sort of weird conflict here and its driving me CRAzY..ahhhhhhhhhhhh... please help!
Thanksssssss!