Hey Steven -
Ok. I uninstalled the Regular Flashplayer and installed the debugger, and this is what I found in my Log Files:
from Main: view.scaleX = 0.9041666666666667 and view.scaleY = 1.0129032258064516
from Main: view.x = 0 and view.y = 0
Error: Failed to load policy file from xmlsocket://127.0.0.1:5800
Error: Request for resource at xmlsocket://127.0.0.1:5800 by requestor from http://www.yourgods.com/bin/main.swf has failed because the server cannot be reached.
*** Security Sandbox Violation ***
Connection to 127.0.0.1:5800 halted - not permitted from http://www.yourgods.com/bin/main.swf
Error: Request for resource at xmlsocket://127.0.0.1:5800 by requestor from http://www.yourgods.com/bin/main.swf has failed because the server cannot be reached.
and also this:
Warning: AllowScriptAccess='never' found in HTML. This setting is ineffective and deprecated. See http://www.adobe.com/go/allowscriptaccess for details.
Warning: 'com' has no property 'onEnterFrame'
As for the allowscriptaccess - not sure why it's coming up with that.
I have a one line index.php file located inside of public_html/yourgods.com
<?php header("Location: http://www.yourgods.com/bin/index.html");?>
which simply redirects to the index.html inside of my bin folder generated by Gaia - and that index.html has allowscriptaccess set to always as shown below.
<title>Gaia Framework Site</title>
<script type="text/javascript" src="js/swfobject.js"></script>
<script type="text/javascript" src="js/swfaddress.js"></script>
<script type="text/javascript">
var params = {
quality: "high",
scale: "noscale",
wmode: "window",
allowscriptaccess: "always",
bgcolor: "#333333",
allowfullscreen: "true"
};
var flashvars = {
siteXML: "xml/site.xml"
};
var attributes = {
id: "flashcontent",
name: "flashcontent"
};
swfobject.embedSWF("main.swf", "flashcontent", "100%", "100%", "10.0.0", "expressInstall.swf", flashvars, params, attributes);
</script>
As for the Security Sandbox violation, my old webhost was 1&1, and they are still the official Registrar of YourGods.com - but I now have YourGods.com pointed at the DomainNameServers for my new host, Holistic, which specializes in Drupal and has no experience with Flash - so I hope you'll bear with me and offer what guidance you can since they said I was basically on my own for troubleshooting any Flash related problems.
Is that likely to be the source of my problem (that I'm only 'pointing' to the nameservers and have only 'parked' my domain with the new host instead of transferring it completely?
And if so, do I just need to create a cross domain policy xml file like the one below and leave it on my Old Webhost?
<?xml version="1.0"?>
<cross-domain-policy>
<allow-access-from domain="MyNewDedicatedIPAddressHere" />
</cross-domain-policy>
I'd been using MonsterDebugger but I'm not sure if that gives you anything about Runtime errors. So thanks for the tip about the Flash Debugger and for any further guidance.