Location: Digital Imagery Home

Discussion: Flash CS3- How do I link a Flash animation?Reported This is a featured thread

Showing 5 posts
fisherg
fisherg
Flash CS3- How do I link a Flash animation?
May 9 2008, 9:38 AM EDT | Post edited: May 9 2008, 9:38 AM EDT
Please add what you know, or code, or links here to help build a one stop knowledge base for creating links in Flash. Do you find this valuable?    
Keyword tags: flash link
fisherg
fisherg
1. RE: Flash CS3- How do I link a Flash animation?
May 9 2008, 9:41 AM EDT | Post edited: May 9 2008, 9:41 AM EDT
Richard sent us this helpful link to a forum
http://board.flashkit.com/board/showthread.php?t=736273
Do you find this valuable?    

rburp
2. RE: Flash CS3- How do I link a Flash animation?
May 9 2008, 12:07 PM EDT | Post edited: May 9 2008, 12:07 PM EDT
To make your banner link to their site follow the instructions here http://www.lukamaras.com/tutorials/banners/flash-ad-banners-basics.html
on making an invisible button but, when you get to the part that says "Creating a hyperlink with ActionScript" go to the link mr. fisher posted in the post before this one and view the third post in the thread on that page and follow those instructions.
1  out of 1 found this valuable. Do you?    
fisherg
fisherg
3. RE: Flash CS3- How do I link a Flash animation?
May 9 2008, 12:53 PM EDT | Post edited: May 9 2008, 12:53 PM EDT
And be sure to rename your button in the properties pallet (mybutton for ex.)
+
When you copy or type the action script, change the capitol "B" in my Button to a lower case "b"
: )
Do you find this valuable?    
fisherg
fisherg
4. Here's the linking code:
May 12 2008, 4:16 PM EDT | Post edited: May 12 2008, 4:16 PM EDT
mybutton.addEventListener(MouseEvent.CLICK, myButtonFunction);
function myButtonFunction(event: MouseEvent) {
var request:URLRequest = new URLRequest("http://flashgameu.com");
navigateToURL(request);
}

Do you find this valuable?