I'm completely new to flash and I'm playing around with a script.
I have the fla file open in FlashMX and want to insert a hyperlink inside each of 3 objects
I click on one and it shows me this in the Action part
on (rollOver) {
texts.lab = "TEXT1";
texts.gotoAndPlay(texts.exitframe);
if (mov3._currentframe == 2) {
mov3.gotoAndStop(3);
}
if (mov2._currentframe == 2) {
mov2.gotoAndStop(3);
}
mov1.gotoAndStop(2);
}
on (press) {
if (_root.link1 != undefined) {
getURL(_root.link1, _root.target1);
}
}
Where would I insert the http link and what would an example code line look like for that link?
I have the fla file open in FlashMX and want to insert a hyperlink inside each of 3 objects
I click on one and it shows me this in the Action part
on (rollOver) {
texts.lab = "TEXT1";
texts.gotoAndPlay(texts.exitframe);
if (mov3._currentframe == 2) {
mov3.gotoAndStop(3);
}
if (mov2._currentframe == 2) {
mov2.gotoAndStop(3);
}
mov1.gotoAndStop(2);
}
on (press) {
if (_root.link1 != undefined) {
getURL(_root.link1, _root.target1);
}
}
Where would I insert the http link and what would an example code line look like for that link?















