Sorry if this is an obvious question,
How can you use SWFobject to automatically redirect to another URL - DO NOT add href, but physically load another URL?
I am using SWFobject 2 at the moment.
- SWF object code ...
swfobject.embedSWF ("MYSITE.swf", "myAlternativeContent", "850", "700", "9.0.0", false, flashvars, params, attributes);
--- 2 tricks I tried in myAlternativeContent DIV ...
1...
<div id="myAlternativeContent">
<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.NOFLASHSITE.com">
</div>
2 ...
<div id="myAlternativeContent">
<script language="javascript" type="text/javascript">
window.location="http://www.NOFLASHSITE.com";
</script>
</div>
--- Both of them download the alternative ( http://www.NOFLASHSITE.com ) independently.
any help appreciated - MW
source
share