The flash plugin is likely to crash before your log files can be reset. The only thing I can recommend is to install Windows Debugging Tools .
Then print the command line (as administrator, if in Vista), and enter the following:
cd "%programfiles%\Debugging Tools for Windows" adplus -crash -pn iexplore.exe
(Obviously, change iexplore.exe to any browser you are working with.)
Now use the flex application in the browser until it works. This will create a crash dump in% programfiles% \ Debugging Tools for Windows \ Crash_Mode__Date_02-18-2009__Time_14-40-0202 (actual date will be used).
Now you can send this mini-dump (the smallest dmp file) to Adobe so that they can analyze it.
If you want to browse (native) call stacks in the hope of discovering what caused the problem, you can load windbg and load the dump file (File> Open Crash Dump). After it loads, enter the following command at the windbg command prompt and press enter:
~* kb 2000
source share