So, I'm a bit desperate:

The Flex Debugger refuses to debug anything. I thought at first that
it must be the flash player refusing to connect, but that's not what I
think is happening. 

When I launch a project, if FF isn't open, the project shows the
"Waiting for debug player" or something similar until the browser
opens fully. Then once the page begins to load, the dialog box closes,
but instead of debugging information, the Debug panel shows:

<terminated>main[Flex Application]
     <terminated> file:...
     <terminated>, exit value: 0> file:...

Note that it does this at the moment the Flash Player loads in the
browser. 

The problem started after I finally installed Flash CS3. It apparently
installed an older version, and the next time I started Flex, it
complained that the Flash Player version was off. However, I
immediately, followed the instructions / links on the dialog and
uninstalled and reinstalled the player. And from the above, something
is communicating, but not debugging.

In trying to fix this, I have:

Reinstalled Flash Debug Player  in both Firefox and IE (6 times)

Deleted all my existing projects.

Reinstalled Flex.

Attempted to debug a new, nearly empty project. The only code in the
entire project is below, where the lines with "x" have breakpoints on
them:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml";
layout="absolute" initialize="onCreationComplete()"
creationComplete="onCreationComplete()">
        <mx:Script>
                <![CDATA[
x                       public var version:String = " " ;
x                       public function onCreationComplete():void
                        {
x                               version = "this ismy version" ;
                        }
                ]]>
        </mx:Script>
        <mx:Button x="352" y="235" label="Button"/>
</mx:Application>


At this point I'm behind on a project and freaking out a bit. So any
level head to point out something stupid I missed would be appreciated.

Jer

Reply via email to