[FONT=Arial]Hey all, well basically i’ve got a project going on for college and i gotta create a interactive flash advertisment. i’ve been building 3 main pages that will all link bk to a index/navigation page. i am wondering is there any way i can link the Flash Movie files to one another so when you click on a link it will open it in the same window. i’ve already created a button but the script i’ve used don’t seem to be working, as it keep opening up my web browser. the script is asa follows:[/FONT]
[FONT=Arial][/FONT]
stop ();
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
this.onRollOver = function(){
rewind = false;
play();
}
this.onRollOut = function(){
rewind = true;
}
this.onRelease = function(){
getURL(“C:\Documents and Settings\Admin\Desktop\Buttons”, “Self_”);
}
can anyone see where i’ve gone wrong?