Jul
9
9
G-man asked:
Specifically, I just want to add a link to my flash template that links to an html folder which contains a slideshow. Can someone assist?
Oh, and one more thing…please note that I am very much a non-techy type of person so it would help if someone would descibe it in a very basic way. Thanks !
I am using Macromedia Flash 8 to do this project, if that helps
Sphere: Related ContentSpecifically, I just want to add a link to my flash template that links to an html folder which contains a slideshow. Can someone assist?
Oh, and one more thing…please note that I am very much a non-techy type of person so it would help if someone would descibe it in a very basic way. Thanks !
I am using Macromedia Flash 8 to do this project, if that helps
Tags: Customize, Flash Links, Flash Template, Flash Templates, Flash Website, Html Folder, Macromedia Flash 8, Slideshow, Techy Type, Website Templates












July 12th, 2008 at 8:16 pm
Create your object of whatever the link will be - make sure it’s a symbol. You can change any shape to a symbol with F8. Text works fine to.
Give the link object an instance name - in the lower right hand corner in the properties panel.
Then you need to add the action script to the object. If you add it on the object itself(while the object is selected) type:
onPress = function() { getURL(”http://yourdomain.com”); }
I recommend creating an actionions layer then adding this code there:
linkObject.onPress = function() { getURL(”http://yourdomain.com”); }
Add A Comment