Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need help with LINKING on Flash Please!

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Can somebody please tell me how i can create a link from my Flash page to an html page, i'm a beginner at the subject and don't know much. thanks for the help.
 
Make a Button, Drag it to the stage, on the stage choose ur button then goto window on ur flash main menu click action, ur Object Actions window will pop-up, on ur Object Action window click the positive sign "+" choose ACTIONS, slider menu will appear click "getURL":

on (press) {
getURL (" "_blank");
}

Hope this help!

Regards!
 
On the last frame of your movie, add a keyframe (select the frame and press F6), double-click this keyframe and from the list on the left of the Frame Actions window, double-click on the getURL action.
It will appear on the right side, and simply fill in the URL box on the button. Use the full path, including the
Code:
getURL("[URL unfurl="true"]http://www.yourserver.com/target.html",[/URL] _blank);

As the second parameter in the above, select _blank, in the Window box, if you want to open that target.html in a new browser window, or _self if you want to open it in the same window as your movie, thus replacing it.

Regards,
new.gif
 
I couldn't get it to work, i tried both ways, would this work on the test movie or test scene? those ar ethe only ways i tried it. Is there any way of linking text??
thanks for the help.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top