While playing facebook games,  it keep getting the error SHOCKWAVE FLASH NOT RESPONGING  how do fix?

while playing facebook games,  it keep getting the error SHOCKWAVE FLASH NOT RESPONsING  how do fix this?  this happens oftern then it crashes

Did you read any of the other recent threads here before posting? You asked your question on the wrong forum - try one for the Flash Player

Similar Messages

  • Unable to sync or backup my iPad2 with the new iTunes. I keep getting the error ""iTunes could not back up the iPad because the backup was corrupt or not compatible with the iPad.". I've deleted all the old backups but still get this.

    I'm totally frustrated by iTunes and don't know how to solve my problem. Like a lot of people on here I'm not able to sync or back up my iPad2 with my iTunes (version 10.4.1.10). I'm running Win 7 Ultimate 64 bit. My iTunes worked just fine until the 10.4.xx updates came out and since June I've not been able to back up or sync the iPad2.
    When I connect and try to sync I get the error message, “iTunes could not back up the iPad because the backup was corrupt or not compatible with the iPad.”
    I've deleted all the old backups so there are none on my system. I've deleted iTunes and re-installed the 64bit version several times but it has not made any difference. I've read and followed several suggestions on these boards about how to remove and reinstall everything but none have worked yet. I'm stumped here.

    I had the exact same thing with my shuffle - same error message saying that it was corrupt so I restored it (wiping everything in the process) and the same message came up as soon as it reloaded. Thank god I didn't try it with my iPod or iPhone first. So many issues with this new version of iTunes!!!!!!!!

  • On my facebook games.. i get the error message Blocked Plug In... i updated my version of flash and still nothing

    on face book games... i get the message blocked plug in... i updated flash and still block...

    This problem is going to be solved in the next 24 hours by adobe

  • I keep getting the error:  "lightroom could not import this catalog because of an unknown error" when trying to import from a catalog?

    I have around 400,000 photos of 15 years so given the high number, I organized all my photos into 6 catalogs to avoid potential problems. All the photos and the catalogs are in a 4TB Seagate external hard drive. I use Adobe Lightroom 5 and I use a PC with the latest Windows Office 2013.
    I wanted to have a NEW Catalog of all my rated 1 Star+ photos of all the years in a single Catalog. So I created what I called Star+ Catalog and I was told the best option is to import a Catalog at a time and given that there is no means to filter importing only Stared photos, I would import all the photos and then delete all the UnStared photos. I did that for Catalog Year 2014 but at the end gave me the message: "lightroom could not import this catalog because of an unknown error". It actually had imported around 40k photos from about 50k total. I tried again and again and every time I end up with the same thing. I created another new Catalog and stared from scratch and the same ting happened: the ONLY EXACT 40k or so photos were imported and the rest were not!! When I imported Catalog Year 2013 of around 45k photos, it worked perfectly. But when I imported Catalog Year 2012 of 35k photos, the same thing happened!! 
    I then tried exporting the needed photos to a new Catalog and that worked.  But then when I try to import them again from my Master *+ Catalog I get the same error again!!
    I also tried creating a new Master *+ Catalog and tried to import the Catalogs of each year into it and the same error happened again!!!
    Any advice: 1) on how to solve this? and 2) if there is a better and easier way to create this Master Catalog of All Stared Photos of All my Catalogs?

    This is a duplicate thread - see here

  • I keep getting the error "zotero could not be installed because firefox cannot modify the needed file". Any suggestions on how to fix this?

    After downloading Zotero (a plug in that is in theory custom-designed for firefox), I get an error message that says "zotero could not be installed because firefox could not modify the needed file". That's all the detail I have.

    You get this error if you install an extension that needs to be unpacked in order to work properly, but this isn't happening. The default is to copy the file to the extensions folder and rename the file part to the ID of the extension.
    *https://developer.mozilla.org/En/Updating_extensions_for_Firefox_4.0#XPI_unpacking
    You can try to set the extensions.alwaysUnpack pref(s) on the <b>about:config</b> page to true.
    It is possible that there is a problem with the file(s) that store the extensions registry.
    Delete the extensions.* files (e.g. extensions.sqlite, extensions.ini) and compatibility.ini in the Firefox profile folder to reset the extensions registry.
    *https://support.mozilla.org/kb/Profiles
    New files will be created when required.
    See "Corrupt extension files":
    *http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    *https://support.mozilla.org/kb/Unable+to+install+add-ons
    If you see disabled or not compatible extensions in "Firefox/Tools > Add-ons > Extensions" then click the Tools button at the left end side of the Search Bar to check if there is a compatibility update available.
    If this hasn't helped then also delete the addons.sqlite file if present.

  • I keep getting the error message "could not open a scratch file because the file is locked" even after resetting my preferences. I have to use Ctrl, Alt, Shift to start photoshop every time

    I'm unable to start Photoshop without holding down Ctrl, Alt, Shift each time I open it. Also Lightroom is now unable to open photos in Photoshop. I'm at a loss as to how to fix this.

    Hi there! Because the forum you originally posted in is for beginners trying to learn the basics of Photoshop, I moved your question to the Photoshop General Discussion forum, where you'll get more specialized help.
    To help others help you, please read through this article and provide any additional relevant details.

  • I am getting an error report and not sure how to fix the script. Please help... 3

    So now Im getting a new error report. I named the instance of the button in the properties panel btn_ccbil.
    Here is the code I have now:
    import flash.net.URLRequest;
    var url:String = 'http://www.lexiefyfe.com/ccbill9001/index.htm';
    btn_ccbil.addEventListener(MouseEvent.CLICK, onOrderClick);
    function onOrderClick():void
          var request:URLRequest = new URLRequest(url);
          try {
                navigateToURL(request, '_blank');
          } catch (e:Error) {
                trace('An error occurred');
    Here is the error report:
    Scene=photogallery, layer=buttons, frame=1, Line 7 A type identifier is expected after the ':'.
    Scene=photogallery, layer=buttons, frame=1, Line 9 The class or interface 'flash.net.URLRequest' could not be loaded.
    This is the original code for the billing from ccbill I am trying to get to work with flash:
    <A HREF="http://www.lexiefyfe.com/ccbill9001/index.htm"><img src="ccbutton.jpg"></A>
    Is this just something that flash can't do? If so will someone please let me know. I am running in circles at this point and very frustrated... I'm new to as3 but I thought it could work.
    Thank you to all for the help and consideration,
    Thomas

    You appear to be using AS3 code in an AS2 setting.  Go into your Publish Settings and change the actionscript version to AS3 in the Flash section.
    Other matters...
    You do not need to import the URLRequest class while coding in the Flash IDE.
    You need to put an argument in the function definition due to the listeners throwing one when it is triggered...
    function onOrderClick(evt:MouseEvent):void

  • I am getting an error report and not sure how to fix the script. Please help...

    I am using action script 3. I have html codes from ccbill that I am trying to make work with flash. Here is the script I am trying to use:
    import flash.net.URLRequest;
    var url:String = 'http://www.lexiefyfe.com/ccbill9001/index.htm';
    myButton.addEventListener(MouseEvent.CLICK, onOrderClick);
    function onOrderClick():void
          var request:URLRequest = new URLRequest(url);
          try {
                navigateToURL(request, '_blank');
          } catch (e:Error) {
                trace('An error occurred');
    Here is the code from ccbill:
    <A HREF="http://www.lexiefyfe.com/ccbill9001/index.htm"><img src="ccbutton.jpg"></A>
    This is the error report I am getting:
    Scene=photogallery, layer=buttons, frame=1, Line 1 Statement must appear within on handler
    Scene=photogallery, layer=buttons, frame=1, Line 3 Statement must appear within on handler
    Scene=photogallery, layer=buttons, frame=1, Line 5 Statement must appear within on handler
    Scene=photogallery, layer=buttons, frame=1, Line 7 A type identifier is expected after the ':'.
    Scene=photogallery, layer=buttons, frame=1, Line 9 The class or interface 'flash.net.URLRequest' could not be loaded.
    Scene=photogallery, layer=buttons, frame=1, Line 7 Statement must appear within on handler
    If anyone can help me with this issue I would be most grateful.
    Thank you for any consideration,
    Thomas

    You have a mixture of things going on... AS3 code in an AS2 setting.  Those are all AS2 error messages, and they are indicating you have placed the code on the buttons.  To use that code, it must be placed on the timeline, and your Flash Publish Settings need to have AS3 specified instead of AS2.  AS3 does not allow code to be placed on objects like AS2 does.

  • Whenever I plug in my iPhone 5 into my Windows 7 PC, I keep getting the error "iTunes could not connect to the iPhone because the pairing record is missing."  The other things I've read are pretty old and are written for iPods, not iPhones.

    Any ideas?

    I had this same problem with my new MBP 15", but only with the USB port on the left side. The USB port on the right side worked fine. Perhaps the ports on the left don't have enough signal energy for the iPhone.
    Anyway, try using a different USB port, and if that doesn't work, perhaps you could try a powered USB hub.

  • Firefox gets Stuck while Playing Facebook Games and Working in Another Tab

    Firefox gets stuck while playing facebook games (restaurant city) and side by side working in another tab or window of firefox. Switching between tabs takes time and on facebook scrolling doesn't remain smooth it gets stuck again and again while scrolling the page.
    Also, in earlier versions it was a great feature that when once a game is loaded then when i open it second time it was loaded immediately without any complete loading but now every time you play the same game it will load completely which happens generally when we reinstall firefox so that our saved cookies gets destroyed.
    ON THE OTHER HAND OPERA 10.6 LOADS FACEBOOK GAMES SMOOTHLY NO HANGS NO STUCKS NO FREEZES EVEN DOING OTHER WORK AND THE GAME ALSO LOADS IMMEDIATELY THE NEXT TIME WHEN IT IS OPENED.
    == This happened ==
    Every time Firefox opened
    == The 3.6 versions came up

    same things happen to me also the cache system is so slow it even download the flash player game after 3 or 4 days completely and hang is always the error when ever i use the fire fox also there is one more thing some time computer is not opening any site what ever u type mozilla is disconnected from IP what ever he issue is but if u close the firefox and start again it is working for a while after some time it may happen again time is not counted over this matter so i m sure this is the trouble from fire fox coz other browsers are working in the same time while mozila sucks

  • How can I get my ES2 loops to play correctly? I keep getting the message that the audio is not found when I drag the loops from my audio browser even though they play fine in the preview.

    How can I get my ES2 loops to play correctly? I keep getting the message that the audio is not found when I drag the loops from my audio browser even though they play fine in the preview.

    It's exactly as I stated. Whenever I try to drag these kinds of loops (ESX24 / software instrument loops? the ones marked in green with the white music note next to them) from the loop browser into the timeline a message comes up saying Audio Not Found for that loop.  And a new track is created automatically when loops are dragged into the timeline, so I'm not creating some other random / synth instrument track so I'm not sure  what the deal is... But perhaps I'll try creating a software instrument track first and then drag the loop into that track and see what happens - maybe there's something with the default settings that automatically creates audio tracks whenever loops are imported?

  • While playing a game my iphone went completely frozen, it does not respond to any input, not even to holding down the on/off hey. Any ideas?

    While playing a game my iphone went completely frozen, it does not respond to any input, not even to holding down the on/off hey. Any ideas?

    Try a reset. That is holding the sleep/wake and home button together until you see the Apple logo and release. That will reset the iPhone, but will not affect your data.
    Thanks! It worked just fine!
    MRP66

  • HT1176 My airport TM will not backup and i keep getting the error msg "Time Machine couldn't complete the backup...An error occurred while copying files. The problem may be temporary. If the problem persists, use Disk Utility to repair your backup disk."

    My Airport TM will not backup and i keep getting the error msg "Time Machine couldn’t complete the backup...An error occurred while copying files. The problem may be temporary. If the problem persists, use Disk Utility to repair your backup disk."

    My Airport TM will not backup and i keep getting the error msg "Time Machine couldn’t complete the backup...An error occurred while copying files. The problem may be temporary. If the problem persists, use Disk Utility to repair your backup disk."

  • I can't access Facebook. I keep getting the "Firefox has detected that the server is redirecting the request for this address in a way that will never complete". I have cleared cache, cookies, history, offline storage. Nothing has worked.

    can't access Facebook. I keep getting the "Firefox has detected that the server is redirecting the request for this address in a way that will never complete". I have cleared cache, cookies, history, offline storage. Nothing has worked.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • I'm trying to install a cd application and I keep getting the message 'you do not have permission to use the application FSP OS X'  Even after selecting always allow and entering my login details it still won't accept it.  Help!!..

    I'm trying to install a cd application and I keep getting the message 'you do not have permission to use the application FSP OS X'  Even after selecting always allow and entering my login details it still won't accept it.  Help!!..

    Please repost in the Final Cut Pro forum. Have you considered upgrading your machine, if you are still running Leopard your machine may be as old as 5 years old. While this should not matter you probably won't get the performance you want out of a demanding app like FCP.
    Best of luck.

Maybe you are looking for

  • IPod touch 4g will not sync with iTunes after ios6

    I upgraded my iPod touch 4g to ios6, and I have iTunes 10.7.0.21 my iPod touch will not sync my music.  When it starts I receive an error about a song, different each time I've tried it. It gets stuck most times (Step 5 of 5) Waiting for changes to b

  • Mpd won't resume in the middle of a track

    When I stop mpd (/etc/rc.d/mpd stop) the state file (~/.mpd/mpd.state) is created/updated and the contents look to be correct. However, when I start mpd (/etc/rc.d/mpd start) mpd won't start at the same place within the track that is indicated by the

  • How to register an ipad bought on ebay

    i just bought an ipad 2 on ebay, it only has a picture of a usb and an itunes icon and won't do anything else. how do i get this thing started? came w/out manual

  • Sd-project exposure

    dear sapgurus iam putting up 2.5 yrs of experience with a break up of 11 months in implementation and rest in support side. for a short period iam including change of request.As per my friends guidance iam including "<b>change of request</b>". what i

  • SQL variable in jdbc

    I'd like to retrieve one result but I have to use @variable in sqls like below. 1) select @variable := b_id from cp_contents_test where contentid = "8593B9B13A2105B5E252FB11F1FF0822"; 2) select cp_contents_test.b_id,cap_member.mem_name,cap_member.mem