May 28, 2001 #1 DKL01 Programmer Sep 14, 2000 233 US Hi, I need to provide links to 3 web sites on my flash movie. I was wondering how to implement this. I would appreciate any help. Thanks
Hi, I need to provide links to 3 web sites on my flash movie. I was wondering how to implement this. I would appreciate any help. Thanks
May 28, 2001 #2 oldnewbie Technical User Dec 6, 2000 9,142 CA Have a look at the getURL action, in HELP->ActionScript Dictionary: on(release) { getURL(http://www.myserver.com, "_blank" } The second parameter would determine if the link opens in a new window or in the original one, replacing your Flash movie! ;-) Upvote 0 Downvote
Have a look at the getURL action, in HELP->ActionScript Dictionary: on(release) { getURL(http://www.myserver.com, "_blank" } The second parameter would determine if the link opens in a new window or in the original one, replacing your Flash movie! ;-)