Five Methods of Adding Links to FLASH Files

web front end fifteen thousand four hundred and twenty-eight 13 years ago (2011-01-05)

(1) Add in the event handling function of the button, such as:

 on (release) { GetURL ("replace this with the URL", "_blank"); }

(2) Add in the event handling function of the film clip, such as:

 onClipEvent (mouseDown) { GetURL ("replace this with the URL", "_blank"); }

(3) Add on the frame and input the code directly on the frame, such as:

 GetURL ("replace this with the URL", "_blank");

(4) Add to static text or dynamic text. Select the text box and enter the code directly at the bottom line of the property panel where you can enter the link URL, such as:

 GetURL ("replace this with the URL", "_blank");

(5) In html, use the button tag

 <button style="width: 400px; height: 400px; background: transparent; border: 0; padding: 0; cursor: hand" onclick="window. location. href='Replace the URL here '"> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=" height="100%"> <param name="movie" value=" FLASH .swf"> <param name="quality" value="high"> <embed src="flash.swf" width="100%" height="60" quality="high" pluginspage=" type="application/x-shockwave-flash" align="middle"> </embed> </object> </button