Here’s a question I have about my nav bar. I’m using the actionscript I have from another site I’ve done, however I want to modify this just a bit so instead of going to another swf movie, it goes to a url instead. Right now my link is a movieclip and this is on frame1…Here’s my actionscript…
stop();
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
this.onRollOver = function(){
rewind = false;
play();
}
this.onRollOut = function(){
rewind = true;
}
this.onRelease=function(){
this._parent.container.loadMovie(“home.swf”);
}
I tried changing the home.swf to home.html (which is the url I want to direct to) but that doesn’t seem to work.
Any ideas?