Flash Blur Filter Crash

Hiya,
I keep having the problem of Flash crashing in a very bad way
(leaving the Flash.exe process running in memory, with one option
left - close it from the task manager) when i apply a blur filter
with whatever settings to an object and test the movie repeatedly
or scroll through the timeline back and forth a couple times.
Happens on various machines, different configurations and OSes
spanning from XP SP2 to VISTA ULTIMATE 64 bit. Please, help me out,
i had to skip on blur filter all the way to avoid these odd
crashes.

Im gonna desperately try to bump it, since the problem is persistent on different machines/setups and no solution is available...

Similar Messages

  • Flash 8 display 'jumping text' Bug after Blur filter

    I think I found a display bug/glitch with blur effect in
    Flash 8.
    (I'm using the MC TWEEN actionscript method.)
    I need to apply a blur filter to a Movieclip with dynamic
    text.
    When scrolling this Movieclip the text 'jumps' about causing
    visual glitch
    and a slow down...
    I have tweened the blur filter back to 0 and I have also set
    Movieclip.filters=[];
    Has anyone else experienced this problem? Is there a fix?
    Thanks,
    David

    mtaylor wrote:
    > I see what's happening. It appears to be a width issue.
    The underlines had
    > been set to "hairline" but when they converted over to
    Flash 8, the width value
    > disappeared. Once I manually re-added the width value,
    everything worked.
    > Strange.
    If this problem is reproducible, than submit to a bug list at
    www.adobe.com/go/wish
    Perhaps could be eliminated in future release.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Blur filter missing when publishing the movie

    In one movie I use some blur filter on a movie clip. I see
    the effect when I play the timeline directly inside flash (by
    pressing enter). But when I "Test movie" or publish the movie the
    blur filter is gone.
    I have encoutnered this problem twice now and I don't know
    why this is happening. I usually do not have this problem but
    suddenly the blur-filter stops working.
    Publish settings are correct what i can see (version: Flash
    Player 9 )
    Anyone encountered the same problem?

    Ok, I found out what the problem was. Im having a png-image
    inside the movie clip I use the blurr filter on. And it seems like
    there is a size-limit on the image when you are using filters. I
    made the image a bit smaller and the blur came back and then made
    it bigger and bigger in steps and just before I reached the
    original image size the blurr filter stopped working again. I don't
    know if the limit is on the pixel size or the kb of the image, but
    some sort of size limit is there.

  • [svn] 4241: A collection of minor fixes for FXG transcoding to SWF: matrix attribute name correction; allowing for 0x prefix for hexadecimal colors; allowing for an id attribute on FXG nodes; fixing blur filter quality encoding; fixing the order in which

    Revision: 4241
    Author: [email protected]
    Date: 2008-12-05 11:00:45 -0800 (Fri, 05 Dec 2008)
    Log Message:
    A collection of minor fixes for FXG transcoding to SWF: matrix attribute name correction; allowing for 0x prefix for hexadecimal colors; allowing for an id attribute on FXG nodes; fixing blur filter quality encoding; fixing the order in which bevel filter colors are encoding - the SWF specification appears to have the wrong order specified; updating SwfxPrinter to display a linestyle's fillstyle (if present).
    Temporarily removing generated id attribute emitted in FXG to SWF optimization as this attribute is not present in the AS impl.
    Also updating compiler error base types to allow a rootcause to be specified for additional detail to a compiler message exception.
    QE: No
    Doc: No
    Checkintests: Pass
    Reviewer: Discussed compiler base error change with Paul.
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/CompilerException.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/EmbedEvaluator.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/CompilerMessage.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/fxg/FXGConstants.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/fxg/dom/AbstractFXGNode.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/fxg/dom/TextGraphicNode.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/fxg/swf/AbstractFXGGraphics.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagDecoder.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagEncoder.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/SwfxPrinter.java

  • How would I use the blur filter property

    I commented out the alpha line in my script but I would like to use the blur filter property.
    My animation seams a bit abrupt an easing effect can that be doe or not ... if so how?
    Please take a look at the attached pictures for more detail ... thank you.
    TX
    var dir:int = 1;
    var T:Timer = new Timer(1);
    T.addEventListener(TimerEvent.TIMER, flap);
    function flap (Event:TimerEvent):void
    dragonfly_mc.wings_mc.scaleX += .05 * dir;
    if ((dragonfly_mc.wings_mc.scaleX>=1&&dir>0) ||
    (dragonfly_mc.wings_mc.scaleX<=.3&&dir<0))
    dir*=-1;
    //dragonfly_mc.wings_mc.alpha = .3;
    //import flash.filters.BlurFilter.quality;
    Event.updateAfterEvent();
    T.start ();

    var dir:int = 1;
    var t:Timer = new Timer(1);
    //var bf:BlurFilter = new BlurFilter
    //(10, 10, BitmapFilterQuality.HIGH);
    //var gf:GlowFilter = new GlowFilter
    //(10, 10, BitmapFilterQuality.HIGH);
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    import fl.transitions.TweenEvent;
    var blurX:Number = 80;
    var blurY:Number = 80;
    var bf:BlurFilter = new BlurFilter(blurX,blurY);
    var tw:Tween = new Tween(bf,"blurX",None.easeNone,0,30,1,true);
    t.addEventListener (TweenEvent.MOTION_CHANGE,f);
    function f (e:Event)
    bf.blurY = bf.blurX;
    dragonfly_mc.wings_mc.filters = [bf];
    t.addEventListener (TimerEvent.TIMER, flap);
    function flap (Event:TimerEvent):void
    dragonfly_mc.wings_mc.scaleX += .05 * dir;
    if ((dragonfly_mc.wings_mc.scaleX>=1&&dir>0) ||
    (dragonfly_mc.wings_mc.scaleX<=.3&&dir<0))
    dir*=-1;
    //dragonfly_mc.wings_mc.filters = [bf, gf];
    //dragonfly_mc.wings_mc.alpha = .2;
    //import flash.filters.BlurFilter.quality;
    Event.updateAfterEvent ();
    t.start ();

  • The Adobe Flash plugin keeps crashing on Firefox 12.0

    The Adobe Flash plugin keeps crashing on Firefox 12.0, and my Plugin Check link in Addons Manager directs to https://www.mozilla.com/en/404 .
    Is this a hack attempt? Is Firefox 3.6 safer than the release channel?

    Thankss, but it sounds a bit complicated for me. Maybe I can just reinstall FF?
    ~And would switching back to FF 3.6 (or whatever the latest Official release is), rather than being on the new Release Channel be safer than FF 12?

  • Adobe Flash player keeps crashing, but it's up to date on my computer. So is Firefox. Help?

    For some reason, starting today, every page I visit on Firefox (no matter what) comes up with a notification that the Adobe Flash Player plugin has crashed. It started when I was trying to attach a word document to an email to one of my professors on my Google-supported school email account. Every time I tried to attach the document, Flash Player crashed and it wouldn't upload. I finally had to send it using my Live email, which worked, but now Flash Player crashes on every webpage I visit in about 2 seconds. My Flash Player is up to date, as is my version of Firefox. What's going on here? (Note: None of the information of the "Adobe Flash Player has crashed" page was helpful at all.)

    Yes, this has been a problem for a lot of people. ADOBE just released Flash Player 11.0.1.152, and that seems to have fixed the problem. It still am finding it a bit laggy to load Flash scripts, but it no longer displays the crashed window.
    You can download the file from the official Flash website here: http://get.adobe.com/flashplayer/

  • How can i view the ellipse and the points on the ellipse in order to modify the settings when i'm using the iris blur filter on Photoshop CC 2014

    I can't use this blur filter (diaphragm) because i see nothing that could allow me to increase, decrease or move the ellipse that normally appear(?) on the screen. What's amazing is that this filter does his job on photoshop CS6, but not on Photoshop CC 2014 ?! Thanks in advance for your help.  Serge.

    Start from the beginning
    - Select the Rectangle Tool - go to Options Bar, ensure 'Shape' options is on from the the Pick a Tool Mode drop down list.
    - Draw Rect. This should create a vector Shape Layer.
    - Select it in the Layers Panel: The Properties Panel then should highlight the Density and Feather options.
    What happens here when you drag the Feather slider? On my end it feathers the vector shape as a whole.
    If you need further masking capabilities, then apply a Layer Mask to the Shape and proceed with the Properties Panel Density/Feather options.
    h

  • Flash Player 13 crashes with Mac OS X 10.6.8

    Any version of Flash Player 13 crashes on activation.
    Installing FP 12 as suggested allows Flash Player to work, but FF 28 plugin check complains "Out of Date" plugin. Update.
    How serious is the security issue of running this older version of Flash Player?
    (How serious is tricking the Java Installer to ignore the >OS 10.7.2 restriction?)
    Thanks.

    Adobe is aware of this problem. Unfortunately, in order to make both Firefox and Safari happy, you probably do have to use Firefox 12. This thread has more info and links:
    [https://support.mozilla.org/questions/994401 Firefox crashes - FlashPlayer 13.0.0.182 issue on older Mac]

  • Flash Player 9 Crashes Without An Error Message

    Hello,
    Since I downloaded the latest update of Flash Player 9
    (december 2007?), my problems started. Flash Player 9 crashes (IE7)
    without an error message at sites like:
    Zoo Tycoon.com
    My own site
    And many more.
    To give you guys as much information as possible about the
    problem:
    - The first site shouldn't give a warning, and it didn't,
    till I downloaded the update of Flash Player 9. It now looks like
    this >
    Screen
    - The second site is my own site, which should look like this
    >
    Screen
    (Screen is made at an older PC, which hasn't got the update of FP9
    installed!)
    - It now looks like this>
    Screen
    (Screen is made at my current PC, Windows XP with the update
    installed.)
    - I also can't upload pictures at some sites, because they
    require Flash >
    Screen
    - Adobe says I've succesfully installed the latest version of
    Flash Player, version 9.0.115.0 >
    Screen
    My system is:
    - Microsoft Windows XP
    - Home Edition
    - Version 2002
    - Service Pack 2
    - Intel Pentium 4 CPU 3.00GHz
    - Clock Rate 3.01GHz, 1.50GB
    - Internet Explorer 7
    I'm now forced to use an older machine, Windows 2000, to
    update my site and view other sites, because that PC doesn't have
    the Flash Player update installed. ;)
    Things I tried to solve the problem:
    - Uninstall and reinstall
    - Read and tried all the Troubleshooters at this site
    - Adobe's uninstall program
    - SubInACL
    - Installed an older version of Flash Player (7 & 8)
    - Regedit
    - Manually renamed the files in the SYSTEM32/Macromed/Flash
    folder (like explained on the forum)
    Could someone please help me? I'm probably not the only one
    dealing with this problem...
    Regards,
    Sophie
    P.S.: I'm Dutch, so please don't mind my English....
    :)

    Is there no-one who knows the answer? And nobody who has the
    same problem? :(

  • AVG causes adobe flash player to crash every browser I use

    As my thread subject says, when I have the free version of AVG installed it causes adobe flash to crash any web browser I use. I have tried reinstalling everything and ran registry cleaners and nothing I do seems to fix it. If I uninstall AVG, adobe flash no longer crashes my browsers. But as soon as I put AVG back on, bam - the problem is back. Also if I uninstall adobe flash while AVG is installed, I can view any website just fine. Does anyone have any idea what this problem may be? Any help as to how to fix this will be appreciated.

    Ok, Stay in IE and we'll get it cleaned up. Go to Control Panel>Add Remove and find Adobe Download Manager and Remove it. Then just close Add/Remove and close Control Panel. Go back to Tools>Manage Add ons and do this:
    Safe Search, if it is Enabled , with the mouse, hi light it, go down where it says Enabled/Disabled and click on DISABLE.
    Do the same thing with Adobe DLM, Windows Messenger, Windows Live Sign in Helper.
    Make note of anything that IS enabled. It should only be Shockwave Flash Object, you want that ENABLED
    Click ok
    Then I want you to go to www.sunmicrosystems and download and install Java, you will see on the top left side a coffee cup (steaming:-) and the word JAVA, click on that and follow the instructions.
    After that reboot your computer and post back if any problem.
         WATCH THAT YOU DON'T PICK UP ANY TOOLBARS FROM THE JAVA DOWNLOAD, CHECK CAREFULLY
    While you are doing that, I'm going to have a coffee:-)
    Message was edited by: eidnolb  add comment

  • I often get the message "The Adobe Flash Plugin has crashed / Reload the page to try again" but the plugin check page does not list Adobe Flash.

    The plugin check page does list something called 'Shockwave Flash." I went to the Adobe site and downloaded and installed the latest version of Adobe Flash but it still does not show up on the plugin check page. I don't see how Adobe Flash can be crashing in Firefox when Firefox doesn't even know that it's installed.

    Your System Details List shows the Shockwave Flash 12.0 r0 plugin as installed, so you appear to have the Flash plugin installed.
    You can check the version of the current Flash player here:
    *http://www.adobe.com/software/flash/about/
    *http://helpx.adobe.com/flash-player.html
    What is the current setting for the Flash plugin on Firefox/Tools > Add-ons > Plugins?
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Flash plug-in crashes Isight camera

    Hello everyone. So basically, i use stickam to stay in contact with far away family members.  Ive been using it without any problems for.....basically ever!  After the new Mac os update when i go to "allow" my isight camera the flash plug in crashes everytime.  I reproduced this across safari, firefox, and chrome. 
    I have tried the following.
         -Repaired Permisions
         -Uninstalled Flash player and reinstalled
         -Made sure all software is up to date.
    Here is the crash report.
    Process:         WebKitPluginHost [785]
    Path:            /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS /WebKitPluginHost
    Identifier:      com.apple.WebKit.PluginHost
    Version:         6533.20 (6533.20.20)
    Build Info:      WebKitPluginHost-75332020~1
    Code Type:       X86 (Native)
    Parent Process:  WebKitPluginAgent [784]
    Date/Time:       2011-06-30 20:10:59.476 -0400
    OS Version:      Mac OS X 10.6.8 (10K540)
    Report Version:  6
    Interval Since Last Report:          7870 sec
    Crashes Since Last Report:           15
    Per-App Interval Since Last Report:  298 sec
    Per-App Crashes Since Last Report:   14
    Anonymous UUID:                      3E139100-B572-46C7-97A5-3628F4E5EC61
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000fffffead
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   ...ickTimeComponents.component          0x94d5de2f _SGVideoSetVideoDigitizerComponent + 1129
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x932af382 kevent + 10
    1   libSystem.B.dylib                       0x932afa9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x932aef59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x932aecfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x932ae781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x932ae5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x932ae412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x932ae9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x932ae5c6 start_wqthread + 30
    Thread 3:
    0   libSystem.B.dylib                       0x932ae412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x932ae9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x932ae5c6 start_wqthread + 30
    Thread 4:
    0   libSystem.B.dylib                       0x932b6aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x932b675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x932b83f8 pthread_cond_wait$UNIX2003 + 73
    3   ...dia.FlashPlayer-10.6.plugin          0x13b482ff unregister_ShockwaveFlash + 47215
    4   ...dia.FlashPlayer-10.6.plugin          0x13701f24 0x136e9000 + 102180
    5   ...dia.FlashPlayer-10.6.plugin          0x13b483fe unregister_ShockwaveFlash + 47470
    6   ...dia.FlashPlayer-10.6.plugin          0x13b48535 unregister_ShockwaveFlash + 47781
    7   libSystem.B.dylib                       0x932b6259 _pthread_start + 345
    8   libSystem.B.dylib                       0x932b60de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x932b6aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x932b675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x932b83f8 pthread_cond_wait$UNIX2003 + 73
    3   ...dia.FlashPlayer-10.6.plugin          0x13b482ff unregister_ShockwaveFlash + 47215
    4   ...dia.FlashPlayer-10.6.plugin          0x13701f24 0x136e9000 + 102180
    5   ...dia.FlashPlayer-10.6.plugin          0x13b483fe unregister_ShockwaveFlash + 47470
    6   ...dia.FlashPlayer-10.6.plugin          0x13b48535 unregister_ShockwaveFlash + 47781
    7   libSystem.B.dylib                       0x932b6259 _pthread_start + 345
    8   libSystem.B.dylib                       0x932b60de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x93288b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x932b66e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x932e55a8 pthread_cond_timedwait_relative_np + 47
    3   ...dia.FlashPlayer-10.6.plugin          0x13b482c1 unregister_ShockwaveFlash + 47153
    4   ...dia.FlashPlayer-10.6.plugin          0x138cecbf 0x136e9000 + 1989823
    5   ...dia.FlashPlayer-10.6.plugin          0x13b483fe unregister_ShockwaveFlash + 47470
    6   ...dia.FlashPlayer-10.6.plugin          0x13b48535 unregister_ShockwaveFlash + 47781
    7   libSystem.B.dylib                       0x932b6259 _pthread_start + 345
    8   libSystem.B.dylib                       0x932b60de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x93288b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x932b66e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x932e55a8 pthread_cond_timedwait_relative_np + 47
    3   ...dia.FlashPlayer-10.6.plugin          0x13b482c1 unregister_ShockwaveFlash + 47153
    4   ...dia.FlashPlayer-10.6.plugin          0x13a30048 0x136e9000 + 3436616
    5   ...dia.FlashPlayer-10.6.plugin          0x13b483fe unregister_ShockwaveFlash + 47470
    6   ...dia.FlashPlayer-10.6.plugin          0x13b48535 unregister_ShockwaveFlash + 47781
    7   libSystem.B.dylib                       0x932b6259 _pthread_start + 345
    8   libSystem.B.dylib                       0x932b60de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x932a7ac6 select$DARWIN_EXTSN + 10
    1   ...dia.FlashPlayer-10.6.plugin          0x13b57716 unregister_ShockwaveFlash + 109702
    2   ...dia.FlashPlayer-10.6.plugin          0x1392de9e 0x136e9000 + 2379422
    3   ...dia.FlashPlayer-10.6.plugin          0x1387061c 0x136e9000 + 1603100
    4   ...dia.FlashPlayer-10.6.plugin          0x13870a08 0x136e9000 + 1604104
    5   ...dia.FlashPlayer-10.6.plugin          0x138730f1 0x136e9000 + 1614065
    6   ...dia.FlashPlayer-10.6.plugin          0x1387348b 0x136e9000 + 1614987
    7   ...dia.FlashPlayer-10.6.plugin          0x13b483fe unregister_ShockwaveFlash + 47470
    8   ...dia.FlashPlayer-10.6.plugin          0x13b48535 unregister_ShockwaveFlash + 47781
    9   libSystem.B.dylib                       0x932b6259 _pthread_start + 345
    10  libSystem.B.dylib                       0x932b60de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x93288afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x93289267 mach_msg + 68
    2   com.apple.framework.IOKit               0x90541465 io_connect_method + 574
    3   com.apple.framework.IOKit               0x904f1bee IOConnectCallMethod + 318
    4   com.apple.audio.CoreAudio               0x95b290cb IOA_HWDevice::SetIsRunning(unsigned int, bool) + 169
    5   com.apple.audio.CoreAudio               0x95b28fb8 IOA_HWDevice::SetIsRunning(bool) + 72
    6   com.apple.audio.CoreAudio               0x95b28eca IOA_SingleDevice::StartHardware() + 46
    7   com.apple.audio.CoreAudio               0x95b28e82 IOA_Device::StartIOEngine() + 30
    8   com.apple.audio.CoreAudio               0x95b27688 HP_Device::ExecuteCommand(HP_Command*) + 108
    9   com.apple.audio.CoreAudio               0x95b27f9d HP_HardwarePlugIn_DeviceStart(AudioHardwarePlugInInterface**, unsigned long, long (*)(unsigned long, AudioTimeStamp const*, AudioBufferList const*, AudioTimeStamp const*, AudioBufferList*, AudioTimeStamp const*, void*)) + 147
    10  com.apple.audio.CoreAudio               0x95b27ed2 HALPlugIn::DeviceStartIOProc(HALObject const&, long (*)(unsigned long, AudioTimeStamp const*, AudioBufferList const*, AudioTimeStamp const*, AudioBufferList*, AudioTimeStamp const*, void*)) + 52
    11  com.apple.audio.CoreAudio               0x95b27e9b HALDevice::StartIOProc(long (*)(unsigned long, AudioTimeStamp const*, AudioBufferList const*, AudioTimeStamp const*, AudioBufferList*, AudioTimeStamp const*, void*)) + 35
    12  com.apple.audio.CoreAudio               0x95b27e37 AudioDeviceStart + 206
    13  ...pple.audio.units.Components          0x7000b3d9 AUGenericOutputEntry + 4600
    14  ...pple.audio.units.Components          0x7000d2f6 AUGenericOutputEntry + 12565
    15  ...pple.audio.units.Components          0x7000fd1c AUHALEntry + 3873
    16  ...ple.CoreServices.CarbonCore          0x9924a51f CallComponentDispatch + 29
    17  ...apple.audio.units.AudioUnit          0x927c638f AudioOutputUnitStart + 37
    18  ...dia.FlashPlayer-10.6.plugin          0x13b6fdbb unregister_ShockwaveFlash + 209707
    19  ...dia.FlashPlayer-10.6.plugin          0x1387c930 0x136e9000 + 1653040
    20  ...dia.FlashPlayer-10.6.plugin          0x1387cbde 0x136e9000 + 1653726
    21  ...dia.FlashPlayer-10.6.plugin          0x1387cfea 0x136e9000 + 1654762
    22  ...dia.FlashPlayer-10.6.plugin          0x13b483fe unregister_ShockwaveFlash + 47470
    23  ...dia.FlashPlayer-10.6.plugin          0x13b48535 unregister_ShockwaveFlash + 47781
    24  libSystem.B.dylib                       0x932b6259 _pthread_start + 345
    25  libSystem.B.dylib                       0x932b60de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x93288afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x93289267 mach_msg + 68
    2   com.apple.CoreFoundation                0x99d9530f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x99d943f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x99d9a334 CFRunLoopRun + 84
    5   ...le.QuickTimeUSBVDCDigitizer          0x14e83332 0x14e82000 + 4914
    6   libSystem.B.dylib                       0x932b6259 _pthread_start + 345
    7   libSystem.B.dylib                       0x932b60de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x93288afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x93289267 mach_msg + 68
    2   com.apple.CoreFoundation                0x99d9530f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x99d943f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x99d9a334 CFRunLoopRun + 84
    5   ...le.QuickTimeUSBVDCDigitizer          0x14e83332 0x14e82000 + 4914
    6   libSystem.B.dylib                       0x932b6259 _pthread_start + 345
    7   libSystem.B.dylib                       0x932b60de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x93288b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x932b66e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x932e55a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.audio.CoreAudio               0x95b293ab CAGuard::WaitFor(unsigned long long) + 219
    4   com.apple.audio.CoreAudio               0x95b2c3dd CAGuard::WaitUntil(unsigned long long) + 289
    5   com.apple.audio.CoreAudio               0x95b29cda HP_IOThread::WorkLoop() + 1892
    6   com.apple.audio.CoreAudio               0x95b29571 HP_IOThread::ThreadEntry(HP_IOThread*) + 17
    7   com.apple.audio.CoreAudio               0x95b29488 CAPThread::Entry(CAPThread*) + 140
    8   libSystem.B.dylib                       0x932b6259 _pthread_start + 345
    9   libSystem.B.dylib                       0x932b60de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x94d5d9d7  ecx: 0x14ea0852  edx: 0x008fcfd0
      edi: 0x00000001  esi: 0x00000000  ebp: 0x00000001  esp: 0xbfffddc0
       ss: 0x0000001f  efl: 0x00010246  eip: 0x94d5de2f   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0xfffffead
    Binary Images:
       0xcc000 -    0xcfff2 +com.macromedia.Flash Player.plugin 10.3.181.34 (10.3.181.34) <927169A2-6DE7-54AF-C248-94DAF44F4904> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
      0x76d000 -   0x771ff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
      0x776000 -   0x77cff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f13) <76BC9284-582A-EF9A-960D-5CD0801B1917> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
      0x781000 -   0x7a5fe7  GLRendererFloat ??? (???) <AD081A9B-1424-1F17-3C68-9803EBA37E8D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
      0x7dd000 -   0x7e0ff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x136e9000 - 0x14164fd3 +com.macromedia.FlashPlayer-10.6.plugin 10.3.181.34 (10.3.181.34) <26406C56-2E6E-09E6-C582-90763471471E> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.6.plugin/Contents/MacOS/FlashPlay er-10.6
    0x143fa000 - 0x1444ffdf +com.DivXInc.DivXDecoder 6.8.3.5 (6.8.3.5) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1447d000 - 0x145f6ff7  GLEngine ??? (???) <64C74F67-44B5-7DEF-CCA6-C8A9FF9BB60A> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x14628000 - 0x14a2dfe7  libclh.dylib 3.1.1 C  (3.1.1) <15AD52DD-FC3F-305E-5C31-699329E8FDE1> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x14cf6000 - 0x14d00ff7  com.apple.IOFWDVComponents 1.9.9 (1.9.9) <5B4E7BD7-EF5A-2F5C-DF8E-3D4A7B59F779> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x14e08000 - 0x14e44fe3  com.apple.QuickTimeFireWireDV.component 7.6.6 (1783) <9D242689-A430-BD2D-3CF0-3AC6F6CCD1D9> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x14e50000 - 0x14e7affb  com.apple.QuickTimeIIDCDigitizer 7.6.6 (1783) <8608D7B6-2D9C-5DEF-DDC8-FE630A598888> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x14e82000 - 0x14ed2ff3  com.apple.QuickTimeUSBVDCDigitizer 2.7.0 (2.7.0) <54EC6923-7CC6-3E35-92E3-8549393EFF3D> /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x14fa2000 - 0x14faaff7  com.apple.iokit.IOUSBLib 4.1.5 (4.1.5) <C52EA3E8-3C02-4D2F-C688-A50722261D35> /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
    0x17506000 - 0x17514fe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <07211458-FD06-9FEF-3DF4-2E5F0304D4BC> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x17518000 - 0x1752aff7  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <8D606435-1A3C-FE0B-824A-1386809FFFF5> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x237d1000 - 0x237ecfe7  com.apple.WebKit.PluginHost 6533.20 (6533.20.20) <C1FEC29E-6726-4743-A1D0-9DC739040F93> /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS /WebKitPluginHost
    0x237f4000 - 0x237f4ff7  WebKitPluginHostShim.dylib ??? (???) <B8BA43D3-CD90-DBB7-3447-BBC409D25A97> /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS /WebKitPluginHostShim.dylib
    0x70000000 - 0x700cbfff  com.apple.audio.units.Components 1.6.5 (1.6.5) <E50D0989-0609-EAF7-3B3B-B10D7847BAA5> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8f0c6000 - 0x8f811fff  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <3BB341B6-11A7-38AD-10A3-F89506FD40D4> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <39AC3185-E633-68AA-7CD6-1230E7F1CEF4> /usr/lib/dyld
    0x90003000 - 0x90011ff7  com.apple.opengl 1.6.13 (1.6.13) <025A905D-C1A3-B24A-1585-37C328D77148> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90012000 - 0x90016ff7  IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90017000 - 0x90017ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90018000 - 0x90018ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x901f6000 - 0x90233ff7  com.apple.CoreMedia 0.484.52 (484.52) <62B0C876-A931-372F-8947-7CBA0379F427> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x90234000 - 0x90244ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x90245000 - 0x902fefe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x90347000 - 0x90359ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9035a000 - 0x904dcfe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x904ed000 - 0x9054aff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90655000 - 0x90757fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x907b9000 - 0x90813fe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x90814000 - 0x90814ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x90815000 - 0x90846ff7  libGLImage.dylib ??? (???) <0EE86397-A867-0BBA-E5B1-B800E43FC5CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90847000 - 0x90890fe7  libTIFF.dylib ??? (???) <10F7E21B-EC59-6594-004F-798DA3F37789> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90891000 - 0x908a2ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x908a3000 - 0x90935fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90988000 - 0x909ccff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x909cd000 - 0x909cdff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x909ce000 - 0x909d3ff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x909d4000 - 0x90e09ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x90e0a000 - 0x90e12ff7  com.apple.DisplayServicesFW 2.3.3 (289) <828084B0-9197-14DD-F66A-D634250A212E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x90e54000 - 0x90e5dff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90e5e000 - 0x91040fff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x911da000 - 0x9122dff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9122e000 - 0x91239ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9123a000 - 0x91256fe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x912d5000 - 0x91312ff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91313000 - 0x91414fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x914c8000 - 0x914fbff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9154a000 - 0x9158dff7  libGLU.dylib ??? (???) <FB26DD53-03F4-A7D7-8804-EBC5B3B37FA3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91593000 - 0x91c0eff7  com.apple.CoreAUC 6.11.03 (6.11.03) <42B31B0F-18F9-29D2-A67C-7B81A47F6D67> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x91c0f000 - 0x91c13ff7  libGFXShared.dylib ??? (???) <801B2C2C-1692-475A-BAD6-99F85B6E7C25> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x91d3b000 - 0x91d3bff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91d3c000 - 0x91d60ff7  libJPEG.dylib ??? (???) <0C406884-DAAF-0409-2659-9D1602D752D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91d61000 - 0x91daefeb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x91daf000 - 0x920d3fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x920d4000 - 0x92118fe7  com.apple.Metadata 10.6.3 (507.15) <460BEF23-B89F-6F4C-4940-45556C0671B5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x92119000 - 0x92140ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x921f8000 - 0x92335fe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <2D31CC6F-32CC-72FF-34EC-AB40CEE496A7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x923ae000 - 0x923afff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x923fe000 - 0x92454ff7  com.apple.MeshKitRuntime 1.1 (49.2) <CB9F38B1-E107-EA62-EDFF-02EE79F6D1A5> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x9245c000 - 0x92568ff7  libGLProgrammability.dylib ??? (???) <04D7E5C3-B0C3-054B-DF49-3B333DCDEE22> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x92574000 - 0x92772ff3  com.apple.JavaScriptCore 6533.20 (6533.20.20) <C97A479C-FDF9-3F19-2EE0-80288257C477> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92789000 - 0x927b9ff7  com.apple.MeshKit 1.1 (49.2) <5A74D1A4-4B97-FE39-4F4D-E0B80F0ADD87> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x927ba000 - 0x927c4ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x927c5000 - 0x927c6ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <838E1760-F7D9-3239-B3A8-20E25EFD1379> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x927e6000 - 0x927f3ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x927ff000 - 0x92817ff7  com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x92818000 - 0x9281cff7  libGIF.dylib ??? (???) <B7BA65AF-681C-F18B-A434-CBEC76A45646> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9281d000 - 0x92824ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <C43D8F35-D0DB-37F3-5058-A8308A377303> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x92825000 - 0x92a8bff7  com.apple.security 6.1.2 (55002) <64A20CEB-E614-D35F-7B9F-246BCB25BA23> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92a8c000 - 0x92a8fff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x92a90000 - 0x92b38ffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92b5b000 - 0x92f71ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92f72000 - 0x931e3fef  com.apple.Foundation 6.6.7 (751.62) <5C995C7F-2EA9-50DC-9F2A-30237CDB31B1> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x93210000 - 0x93253ff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93254000 - 0x93287fff  libTrueTypeScaler.dylib ??? (???) <0F04DAC3-829A-FA1B-E9D0-1E9505713C5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x93288000 - 0x9342fff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x9370d000 - 0x93710fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x93719000 - 0x9371bff7  com.apple.securityhi 4.0 (36638) <E7D83480-77BB-72F9-72F3-AEE198CE589F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9371c000 - 0x937e7fef  com.apple.CoreServices.OSServices 359 (359) <EC340F74-8192-C9DD-40B3-AE4E519A38D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x937e8000 - 0x9384cffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9384d000 - 0x9386efe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x938a8000 - 0x938ceffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x938cf000 - 0x938d5fff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93d28000 - 0x93e6bfef  com.apple.QTKit 7.7 (1783) <0C6814E2-98C2-74F4-770F-BA355CA86F0F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x93e6f000 - 0x93eb4ff7  com.apple.ImageCaptureCore 1.1 (1.1) <F54F284F-0B81-0AFA-CE47-FF797A6E05B0> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x93f1b000 - 0x93f25fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93f26000 - 0x93f26ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x93f27000 - 0x93fa0ff7  com.apple.PDFKit 2.5.1 (2.5.1) <A068BF37-03E0-A231-2791-561C60C3ED2B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x93fad000 - 0x93fefff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x93ff0000 - 0x940a0fe3  com.apple.QuickTimeImporters.component 7.6.6 (1783) <E0BF3843-1044-F371-AB6F-423C5E9E417B> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x940a1000 - 0x940f9fe7  com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x940fa000 - 0x9504cff7  com.apple.QuickTimeComponents.component 7.6.6 (1783) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9504d000 - 0x953b8ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x953b9000 - 0x956b3fef  com.apple.QuickTime 7.6.6 (1783) <1EC8DC5E-12E3-1DB8-1F7D-44C6EF193C58> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x956b4000 - 0x956b4ff7  com.apple.Carbon 150 (152) <2539A94A-34D9-45CB-8F3E-AD53149E0BD5> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x956b5000 - 0x95737ffb  SecurityFoundation ??? (???) <A8D248DE-8670-970D-39E3-A9738CFDBEE1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95848000 - 0x958e0fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95ac6000 - 0x95ac9ff7  libCoreVMClient.dylib ??? (???) <F58BDFC1-7408-53C8-0B08-48BA2F25CA43> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x95aca000 - 0x95ad5ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x95b09000 - 0x95b83fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x95b84000 - 0x95b98ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x95bc0000 - 0x95bfaff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <038731B1-CC44-3943-E3DE-4BAAA203EB72> /usr/lib/libcups.2.dylib
    0x95bfb000 - 0x95c98fe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x95c99000 - 0x95cb8ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95cb9000 - 0x95d28ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x95d67000 - 0x95dadff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x95dae000 - 0x95e1cff7  com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x95e1d000 - 0x95e1fff7  libRadiance.dylib ??? (???) <47E300B5-DBEF-86C4-29BD-86DBEDD2FBB5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x95e23000 - 0x95e5efeb  libFontRegistry.dylib ??? (???) <AD45365E-A3EA-62B8-A288-1E13DBA22B1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x95e5f000 - 0x95e6fff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x95eed000 - 0x95f9afe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x95f9b000 - 0x95fc3ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <315D97C2-4E1F-A95F-A759-4A3FA5639E75> /usr/lib/libxslt.1.dylib
    0x95fc4000 - 0x9607cfeb  libFontParser.dylib ??? (???) <D57D3834-9395-FD58-092A-49B3708E8C89> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x960ce000 - 0x960ceff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x960cf000 - 0x969b2ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x969b3000 - 0x971a2557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x971aa000 - 0x972d7ffb  com.apple.MediaToolbox 0.484.52 (484.52) <C9035045-D1B4-1B1F-7354-B00D1094D804> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9732f000 - 0x97399fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x97dee000 - 0x97e89fe7  com.apple.ApplicationServices.ATS 275.16 (???) <873C8B8A-B563-50F7-7628-524EE9E8DF0F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x98225000 - 0x982fffff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x98300000 - 0x983acfe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x983e4000 - 0x985a6feb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <20E90968-E04B-7B68-DBA2-92C729A8243F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x985a7000 - 0x985c2ff7  libPng.dylib ??? (???) <4C105512-6FA8-2AE0-D058-6A8AA00F9DA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x985c3000 - 0x98643feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9864c000 - 0x9866efef  com.apple.DirectoryService.Framework 3.6 (621.11) <CA979EAC-9537-43B6-CD69-C144ACB75E09> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x98877000 - 0x9887eff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9897c000 - 0x98ba7ff3  com.apple.QuartzComposer 4.2 ({156.30}) <2C88F8C3-7181-6B1D-B278-E0EE3F33A2AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x98c86000 - 0x98cd6ff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x98cd7000 - 0x99192ff7  com.apple.VideoToolbox 0.484.52 (484.52) <F7CF9485-A932-1305-9AA6-3F7AC38B8B15> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x99193000 - 0x9919fff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x991e3000 - 0x99503ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x99504000 - 0x9950afe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x9950b000 - 0x9954cff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x996c1000 - 0x996ffff7  com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9973a000 - 0x9973dffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9973e000 - 0x99752fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x997a5000 - 0x99885fe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x99886000 - 0x998cdffb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x99a23000 - 0x99ad1ff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x99ad2000 - 0x99ae7fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x99ae8000 - 0x99ae8ff7  com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x99ae9000 - 0x99c17fe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x99c18000 - 0x99c79fe7  com.apple.CoreText 151.10 (???) <5C2DEFBE-D54B-4DC7-D456-9ED02880BE98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x99c7a000 - 0x99d36fff  com.apple.ColorSync 4.6.6 (4.6.6) <7CD8B191-039A-02C3-EA5E-4194EC59995B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x99d37000 - 0x99d57fe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <BF7FF2F6-5FD3-D78F-77BC-9E2CB2A5E309> /usr/lib/libresolv.9.dylib
    0x99d58000 - 0x99ed3fe7  com.apple.CoreFoundation 6.6.5 (550.43) <10B8470A-88B7-FC74-1C2F-E5CBD966C051> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x99ed4000 - 0x99fd6fef  com.apple.MeshKitIO 1.1 (49.2) <D0401AC5-1F92-2BBB-EBAB-58EDD3BA61B9> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x99fd7000 - 0x9a052fff  com.apple.AppleVAFramework 4.10.26 (4.10.26) <B293EC46-9F71-F448-F0E7-2960DC6DAEF7> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9a053000 - 0x9a054ff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x9a055000 - 0x9a063fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0xba900000 - 0xba916ff7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <B339B85B-1B6D-81D8-1281-7B8C8A517329> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <EF3E3210-927F-DB9F-4CD4-4039A2AE2F84> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,4, BootROM MBP53.00AC.B03, 2 processors, Intel Core 2 Duo, 2.53 GHz, 8 GB, SMC 1.49f2
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST95005620AS, 465.76 GB
    Serial ATA Device: MATSHITADVD-R   UJ-868
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24400000 / 2
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0x04600000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06110000 / 3
    Any help would be great! thanks everyone

    Sorry, I know nothing about Macs, but I'll try to give you a suggestion anyway.
    Does the crash also occur when you go to http://www.adobe.com/software/flash/about/ or http://kb2.adobe.com/cps/155/tn_15507.html http://forums.adobe.com/thread/891337?
    If not, can you try to disable Hardware Acceleration (http://forums.adobe.com/thread/891337) ?

  • My adobe flash player keeps crashing. Why?

    I use Mozilla Firefox exclusively as my browser. When I am connected to Facebook and playing their casino games, the Adobe Flash player keeps randomly crashing. When it crashes, it locks up the computer and I have to shut down and reopen the browser. Recently, an information box has been opening up in the upper left corner of the screen called the Adobe Flash Player action box or something like that. The context is filled with lots of computer jargon I don't understand. At the bottom of the box there are 2 options to pick from, either dismiss or continue. Most of the time the screen freezes up before I've had the chance to pick one. After I go to the Windows task manager and shut down the boxes that were open, I get the normal gray "Adobe Flash Player has crashed" screen. The really odd thing is that there is no prompt allowing me to send a crash report to Mozilla. I have uninstalled and completely reinstalled the latest version of Mozilla Firefox. Just in case these might be a problem, I have the following 3 "add-ons" loaded in to the browser: Quick Time Plug-in 7.7.6 7.7.6.0, Shockwave Flash 16.0.0.305, and Shockwave for Director 12.1.7.157. As well, in case they might be the problem, I have the following 2 programs installed into my computer are: Adobe Flash Player 16 NPAPI and Adobe Shockwave Player 12.1. FYI: I am running Windows 8.1 64 bit. Hopefully I have given you enough information to make an assessment. If you need anything from me, please let me know. Thank you in advance for your time and assistance.

    Crashes or other problems with certain multimedia content in Firefox (such as YouTube videos and Flash animations or games) can often be resolved by performing the steps in these Knowledge Base articles:
    * [[Flash Plugin - Keep it up to date and troubleshoot problems]]
    * [[Adobe Flash plugin has crashed - Prevent it from happening again]]
    <!--Please also note that html5 may need to be enabled to view some videos on youtube [https://www.youtube.com/html5]-->
    Please tell us if this helped!

  • Adobe Flash Player Update crash

    "Adobe Flash Player Update Service 11.3 r300 has encountered a problem ..."
    I'm trying to answer this question, but don't know how to do it. So I'm starting new discussion.
    I’ve had this problem for over a month and have reinstalled adobe flash player multiple times.
    But now, I think I finally have the answer.
    My tech downloaded the adobe flash player “installer” today.
    But I think the key is to
    1) start / run,
    2) enter “services.msc,
    3) go to adobe flash player update services
    4) right click to get to properties 
    5) change startup type to ‘Automatic” and service status to “Stopped”.

    I stumbled upon something that worked although I don't know why the two items are related. I was resetting FireFox in another attempt to get the latest Flash player to work and noticed that my Java Console was disabled. I don't remember ever disabling it but I turned it back on and suddenly, the Flash player stopped crashing.
    Maybe this will help someone else.

Maybe you are looking for

  • Third Party Order Processing

    Dear All, 1.Can anyone explain me the term 'Statistical GR' in Third Party Scenario & also why & how we do it (also the Config settings required for the same). 2. In third Party Scenario we have order acknowledgement & confirmations so how we do this

  • Adobe CMM Black Point Compensation

    Hello list members, I have been trying out the Adobe CMM in combination with Adobe Photoshop. By testing the Black Point Compensation (BPC) preferences, I get strange results on my PowerMac. This is not happening on an IntelMac for me. The discussion

  • After new update app store says 2 apps are installed but they don't appear on screen

    Phone issues required restore and sych and update of new phone - when completed 2 apps were missing from the screen.  I found them thru 'search' and can use them on the phone that way.  After checking to see if I could reinstall from App Store they w

  • Cannot open RAW for Samsung NX20

    Cannot open RAW for Samsung NX20. Any solution?

  • Does wIPS mode Access point utilize more Bandwidth?

    Hi all, I have around six number of Cisco 1252 Access Points on HReap mode and wIPS submode in one particular location. This was implemented more than six months and it was working fine. Suddenly, I faced Network conjestion and more bandwidth utiliza