Hi,
I am currently working with a flash template, the links contained within originally linked to other scenes within the original movie, I have removed the nav and its elements and created a new flash file as I want to use the navigation on a static website, so I want to link the nav buttons to static pages instead of internal pages.
See http://www.redupdates.com/clearpath/
The code for the current buttons is below, does anyone know how I can doctor the on(release) part so that I can point to a url rather than an internal link?
onClipEvent(load) {
num=5;
}
on(rollOver) {
if(_root.link<>num) {
this.gotoAndPlay("s1");
_parent.sign.gotoAndPlay("s1");
}
}
on(rollOut, releaseOutside) {
if(_root.link<>num) {
this.gotoAndPlay("s2");
_parent.sign.gotoAndPlay("s2");
}
}
on(release) {
if(_root.link<>num and _root.animation==1) {
_root.animation=0;
_root.link_prev=_root.link;
_root.menu["item" + _root.link].item.gotoAndPlay("s2");
_root.menu["item" + _root.link].sign.gotoAndPlay("s2");
_root.link=num;
_root.play();
}
}
Thanks,
Paul