Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Waiting for flash player to connect to debugger

Using Flex Builder 3 :
I have been getting this problem in every single debug launch for past few hours.
I used to get this earlier too, but once in a while, not with every debug launch.
I found out that flex debugger uses a certain 7935 port but I can't figure out
how to change it?

like image 378
simplfuzz Avatar asked Feb 03 '10 10:02

simplfuzz


People also ask

What do you do after the flash is no longer supported?

Flash-enabled websites If you are using a website that you know is using Flash, or find a website that stops working when Flash is retired, please contact the website owner to request an update. To read more about Flash Player end of life, visit the Adobe website.

How do I fix Adobe Flash Player update?

Update Adobe Flash Player in Windows 10 So, if you have tried all the above and Flash still refuses to load in Microsoft Edge, you likely need to install an update. Open Start > Settings > Update & security > Windows Update > Check for updates. Download and install the latest update for Flash if it's available.

What is Flash Projector content debugger?

Flash Player Projector Content Debugger is a virtual machine for Flash where you can run Flash programs on your desktop rather than in your browser. Flash doesn't even need to be installed on your computer for it to work.

What is Flash Builder used for?

Flash Builder is a development tool for creating games and web applications using ActionScript and Flex. Flex is the underlying open source framework used to create applications. Learn more in the Flash Builder FAQ.


1 Answers

I remember getting this problem a few times. It might have to do with the Flex Profiler (I used to accidentally click that every now and then trying to launch the debugger).

If you start the Profiler and stop it too fast, it will add something to a file in your home directory that it shouldn't.

Check out /path/to/home/mm.cfg on your operating system (on mac, you can open it in textmate with mate ~/mm.cfg). The mm.cfg file stores some information about debugging in Flex

Then in that file, make sure this is the only content:


ErrorReportingEnable=1
TraceOutputFileEnable=1

If there's an extra line (can't remember/find it, something like

PreloadSwf=/Users/[username]/Documents/workspace/.metadata/.plugins/com.adobe.flash.profiler/ProfilerAgent.swf?host=localhost&port=9999
), delete it.

Let me know if that fixes it.

Lance

like image 63
Lance Avatar answered Oct 29 '22 03:10

Lance