vote up 1 vote down star

Is there a tool/setting with the help of which I can track or debug flash applications running in a browser? Example apps: A multiple file uploader, or a .flv video player.

Updated: Just found out that flash apps may be using protocols other than http, for eg. rtmp. The feature I require is to keep track of all communication with any remote server. (Remember the net tab of Firebug?)

Any suggestions?

UPDATE: Flash is essentially a different user agent, so firebug and tamperdata both cannot track the http communication.

UPDATE 2: Fiddler looks perfect for Windows. Any *nix alternative? Thanks!

UPDATE 3: Considering debugger version of flash player at http://www.adobe.com/support/flashplayer/downloads.html

flag

75% accept rate

6 Answers

vote up 4 vote down check

If you want to see HTTP communication, I recommend Fiddler.

link|flag
Fiddler runs on Windows, but you can monitor traffic from any other PC. fiddler2.com/fiddler/help/… – EricLaw -MSFT- Jul 20 at 21:34
Decided to go with Fiddler on Windows, and Wire-shark on Linux.. – Swanand Jul 27 at 14:32
vote up 0 vote down

Firebug's net panel does normally log http requests made from flash. I've seen it do that, I don't know why it isn't working for you.

One general purpose debugging tool for flash that I find convenient is alcon. It's a logging tool that doesn't require the debug flash player and has some advanced log level and formatting support.

Another logging option is good old console.log to log directly to firebug or IE's console.

link|flag
vote up 1 vote down

Try Charles- http://www.charlesproxy.com/ Charles is an HTTP proxy / HTTP monitor / Reverse Proxy that enables a developer to view all of the HTTP and SSL / HTTPS traffic between their machine and the Internet. This includes requests, responses and the HTTP headers (which contain the cookies and caching information).

link|flag
Charles is also cross-platform (Win, Mac, & Linux) – TandemAdam Jul 20 at 21:28
Yeah looks good.. – Swanand Jul 21 at 5:50
vote up 1 vote down

One solution would be to monitor your network directly with a tool like WireShark.

link|flag
vote up 0 vote down

The solution is Firebug Lite, a JavaScript file you can insert into your pages to simulate some Firebug features in browsers that are not named "Firefox".

Catch it here. It that what you were looking for ?

link|flag
vote up 0 vote down

You could try Kap Inspect. It doesn't look like firebug but it will let you inspect elements. There's no debugger as far as I'm aware but you can see data bindings. There's no net tab equivalent but you could run your movie in firefox and use either firebug or Tamper Data.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.