I've downloaded a flash template, and although not knowing Flash, I muddled through and did most of what I needed to do for the page content.
However, I don't know how to link static text, to another web "page" in the flash site.
The navigation buttons across the top is linked properly, as I just left everything as it was. But I have some text links on the right side that I want to link to those same "pages" as well.
Here is the link to the html version of the site for reference.
http://www.riverbendfarm.net
The sample flash site I'm trying to set up is at:
http://www.ncwebpros.com/riverbend.html
Since the top nav works, I copied the action script for the "Fall School Tours" tab below:
onClipEvent (load) {
num = 2;
txt1.gotoAndStop(num);
txt2.gotoAndStop(num);
}
on (rollOver) {
if (_root.link<>num) {
this.gotoAndPlay("s1");
}
}
on (releaseOutside, rollOut) {
if (_root.link<>num) {
this.gotoAndPlay("s2");
}
}
on (release) {
if (_root.link<>num and _root.animation == 1) {
_root.animation = 0;
_root.link_prev = _root.link;
_parent["item"+_root.link].gotoAndPlay("s2");
_root.link = num;
_root.play();
}
}
How do I make the "Fall School Tours" text link nav on the right link to the same page? What are the steps I need to take?
Talk to me like a rock, as I don't know Flash at all. Stupid me, I tried highlighting the text and pasting the code above into action pane, but that doesn't work.
Any help would be GREATLY appreciated.