Here's the code I have in my HTML document to embed my flash movie:
(the line in red is an extra parameter)
Is there any way for Flash to read this "url" parameter and incorporate it within the flashMovie.swf?
Or is there a way to get the flash player to read what the URL of the current page is?
Thanks all help is appreciated.
Code:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="[URL unfurl="true"]http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"[/URL] width="550" height="400" id="flashMovie" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="flashMovie.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
[COLOR=red]<param name="url" value="[URL unfurl="true"]http://www.tek-tips.com"[/URL] />[/color]
<embed src="flashMovie.swf" quality="high" bgcolor="#ffffff" width="550" height="400" name="flashMovie" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="[URL unfurl="true"]http://www.macromedia.com/go/getflashplayer"[/URL] />
</object>
(the line in red is an extra parameter)
Is there any way for Flash to read this "url" parameter and incorporate it within the flashMovie.swf?
Or is there a way to get the flash player to read what the URL of the current page is?
Thanks all help is appreciated.