Using MacOSX 10.4 Tiger
Flash Professional 8
Firefox, IE, Safari

I created a flash movie. All of the pictures fade in and out perfect. There is a button on each of the pictures and these buttons take you to the picture’s respective page. When I test the movie the buttons work fine. When I export the movie as (.swf) and try it again the buttons work. I am hosting it on a GoDaddy domain that has been purchased and am referencing it on another site that I own. When I embed it onto my website, the movie plays fine but the buttons are not functional. Here are the things that I have tried to rectify the problem:

- Tried exporting and publishing to Flash Player 7 and 6 DID NOT WORK
- Instead of:
on (release) {
getURL(“http:// . . .” , “_self”)
}

I created a new layer and gave the button an instance name and used it as an action layer:

MyButton.onRelease = function() {
getURL(“www . . . .” , “_self”)
}
DID NOT WORK

-I have put in a parameter in the HTML file that references the movie and allows the action script:

<param name = "allowActionScript" value = "true"> DID NOT WORK

-Using server side logic to allow movie to access outside domain. Movie is hosted on a secure server and this is the code I used:

<?xml version="1.0"?>


<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">


<cross-domain-policy>


<allow-access-from domain="http://aaasouthticketmagician.com" secure="false" />


</cross-domain-policy>

Once again, this did not work. I am really running out of things to try and i have no other idea on how to fix this.

I would really like to figure this out, so if anyone has any other suggestions on how I can fix this, I would greatly appreciate it!!!!!