I have been making progress on getting the AS 3 debugger working in Flash CS 3.
I have a remoting project(it could be anything I want to debug)
Here is my actions panel, with the break point

When I try to debug movie I get this error:
Attemping to launch and connect to Player using URL /Users/johnbarrett/Desktop/downloads/remoting_debug.swf [SWF] Users:johnbarrett:Desktop:downloads:remoting_debug.swf - 1635 bytes after decompression Warning: Domain 127.0.0.1 does not specify a meta-policy. Applying default meta-policy 'all'. This configuration is deprecated. See http://www.adobe.com/go/strict_policy_files to fix this problem. Warning: Domain localhost does not specify a meta-policy. Applying default meta-policy 'all'. This configuration is deprecated. See http://www.adobe.com/go/strict_policy_files to fix this problem.
before running this I change the file FlashAuthor.cfg to include User
# FlashAuthor.cfg # # This file was automatically installed with one or more # Macromedia applications. This file directs Macromedia Flash # Player to provide alternate messaging for violations of the # security rules for local .SWF files. The alternate messaging # is designed for users who are authors of .SWF files rather # than only consumers of them. # # If you are creating .SWF files for deployment as local files # rather than for Web delivery, and you need to simulate the # end-user experience for local security problems, try changing # the value of "LocalSecurityPrompt" below to "User" rather # than its default of "Author". # # For more information, see: # http://www.macromedia.com/go/flashauthorcfg # LocalSecurityPrompt=User
now in the crossdomain.xml I have
<?xml version="1.0"?>
<!-- http://127.0.0.1/crossdomain.xml -->
<cross-domain-policy>
<allow-access-from domain="127.0.0.1" to-ports="507" />
<allow-access-from domain="*" to-ports="*" />
</cross-domain-policy>
0 Comments.