
Originally Posted by
cscuilla
Check it out...
I got my flash buttons working on FF it appears...
On Safari the buttons won't work on the home page. Once you click a link then the buttons start to work. I don't understand why this can be.
I haven't tested this yet on IE...
Here is my AS3
INSTANCE.addEventListener(MouseEvent.CLICK, instanceClick );
function instanceClick (event:MouseEvent):void
{
var instanceGo:URLRequest = new URLRequest("http://mysite.com/index.php?main_page=xxx");
navigateToURL( instanceGo , "_self");
}
I put this on tpl_header.php
<object type="application/x-shockwave-flash" data="/images/swf/some_file.swf" width="750px" height="100px">
<param name="movie" value="/images/swf/some_file.swf" />
<param name="quality" value="high"><param name="BGCOLOR" value="#000000">
<param name="menu" value="false">
</object>
I am going to test this at work tommorow on IE. Is your coding similar to this... hopefully we can get this to work on all browsers.