Links in my heading with AS2
Hi,
I am somewhat new to flash.
i am creating links in my flash Header. they are working in Flash preview, but when i am publishing them to HTML they are not working!
here is the code i am using
on (rollOver) {
gotoAndPlay("s1");
}
on (rollOut, releaseOutside) {
gotoAndPlay("s2");
}
on (release) {
if(_root.url6==""||_root.url6==undefined){
getURL("javascript:alert('NO URL6!')")
}
else{
getURL(_root.url6,"_self")
}
}
The Urls are in a sperate text file loaded at the first fram of my heading
this.loadVariables("_urls.txt")
Stage.showMenu=false;
stop();
anyone know what my problem might be?