i am a web developer/coder and was asked to come up with a flash file that will display a different logo depending on the incoming url. The url value is passed to the file and then an if/else script selects the logo display.
frame 1 has this:
stop();
var urlSource;
if (urlSource == " {
this.gotoAndStop(3);
}
else{
this.gotoAndStop(2);
}
frame 2 has the default license logo
frame 3 has the logo specifically for license-europe
if the url is entered no logo displays. however, a simple shift-refresh will cause the movie to show properly. once the logo image is cached it works properly every time. if i clear the browser cache and try again, it's back to the problem. the same acts for the default display for
this used to work back in the spring and only last week it was brought to my attention that it no longer does.
any suggestions would be greatly appreciated as i am completely baffled.
cheers,
def
frame 1 has this:
stop();
var urlSource;
if (urlSource == " {
this.gotoAndStop(3);
}
else{
this.gotoAndStop(2);
}
frame 2 has the default license logo
frame 3 has the logo specifically for license-europe
if the url is entered no logo displays. however, a simple shift-refresh will cause the movie to show properly. once the logo image is cached it works properly every time. if i clear the browser cache and try again, it's back to the problem. the same acts for the default display for
this used to work back in the spring and only last week it was brought to my attention that it no longer does.
any suggestions would be greatly appreciated as i am completely baffled.
cheers,
def