I am trying to build a basic air app using Flex 3. I have been writing some Flex applications with no problem but when I goto debug my AIR app I am having some issues. First off here is the basic code to create the app.
<?xml version="1.0" encoding="utf-8"?> <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" title="Hello AIR"> <mx:Label text="Hello AIR" horizontalCenter="0" verticalCenter="0"/> </mx:WindowedApplication> When I try and debug Flash Player 9 opens and Flex Builder stays on Launching... for about 1 minute after which I see the following error. Failed to connect, session timed out. Ensure that. 1.) You compiled your flash application with debugging on 2.) You are running the debugger version of Flash Player. I am not sure why I get this message? If I am debbugging flex applications with no problem I should be running the debugger version of Flash player right?

