Error Flash9b and Flash8d - ICQ, Games

Hi all,
sorry for my English.
I had problem with Flash9b.ocx and Flash Games on Internet.
Sometimes fall down. I changed Flash9b and in this time i have
Flash8d. Games are ok, but ICQ5.1 do same error encountered in
flash8d.ocx. Do you know, what shall I do?
Many thanks,
Tomas

I forgot to add that I did uninstall, reboot and reinstall
9d. The web sites recognize the control as being installed, but it
no longer appears in the Uninstall or Change a Program List.
Thx.

Similar Messages

  • Error message and black scrren when I try to load new game.

    Hi
    Recently I purchased Restaurant Empire 2 for my pc and I downloaded and installed the game but everytime I try to play it, the first screen loads then a black screen comes up with error message " error opening file SHADER/shadowmi/cubemap+shadow.pso." 
    I have sims 3 installed on my computer and runs with no problem so I assumed this game should be able to run too.  Please help.

    It would help us to know the model of your computer and the OS.
    Did you install the patches for the game?
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • HT204370 I have purchased movie hunger games but unable to download on my iPad 2. All of sudden it show error sigh and says not enough place?

    2 days back I purchased movie hunger games on my iPad 2 32g  and I paid and got the reciept ,when I tried to tap to download it shows error sign and says 'delete pictures and videos ... To start I barely have much stored still I took my pictures and deleted some serials which I had purchased . Still it doesn't work .
    iTunes shud pay and refund money o me or fix the problem . Last year it happened with movie ' Jane ayre which I purchased could never download .

    How much free space do you have on your iPad : Settings > General > About > Available ? If you've bought the HD version then (if I'm looking at the correct version of the film) it appears to be 5.2 gig that you will need, if it's SD then you will need 2.13 gig.

  • Error "8008" and "error 9006"

    Hello,
    Error 8008 while transferring downloaded games from the iTunes Store Error 9006 and other applications where low, what do I do?

    -50 is a general communications error which I guess could take place anywhere alsong the line.  I have references to it happening with FAT formatted drives, iDisk, user having two drives with identical names.  Are you trying to download to an external drive?  Whatever, I suggest you try to keep the system as simple as possible to try to narrow down possibilities.  I don't know if anything at Apple's end (or the Internet's) would give the same error message.
    Here's one where the ISP had an issue.
    HD downloads are Broken with a #50 error - https://discussions.apple.com/thread/3663076 - ISP had inadequate equipment for large download.

  • Errors 5006 and 1084

    hey, I'm getting errors 5006 and 1084 for my script, currently I'm making a game of brick breaker and can't figure out why I'm getting these errors. I get the 1084 error when auto formatting, and I get the 5006 error when exporting to a SWF
    my code is:
    package
              import flash.display.MovieClip;
              import flash.events.KeyboardEvent;
              import flash.ui.Keyboard;
              import flash.events.*;
              public class Main extends MovieClip
                        var player:paddle;
                        var ball:ball;
                        var home:startscreen;
                        var vx1:Number = 0;
                        var vx2:Number = 0;
                        ball = new aBall(5,5);
                        ball.x = 200;
                        ball.y = 50;
                        addChild(ball);
                        stage.addEventListener(KeyboardEvent.KEY_DOWN,onkeyDown);
                        stage.addEventListener(KeyboardEvent.KEY_UP, onkeyUp);
                        addEventListener(Event.ENTER_FRAME, Loop);
              public function onkeyDown(event:KeyboardEvent):void
                        //player controls
                        if (event.keyCode == Keyboard.DOWN)
                                  vx1 = -10;
                        else if (event.keyCode == Keyboard.LEFT)
                                  vx1 = 10;
              function onkeyUp(event:KeyboardEvent):void
                        // stop player one
                        if (event.keyCode == Keyboard.LEFT || event.keyCode == Keyboard.DOWN)
                                  vx1 = 0;
                        else if (event.keyCode == 87 || event.keyCode == 83)
                                  vx2 = 0;
              function onEdge(paddle)
                        if (paddle.x - (paddle.width/2) < 0)
                                  paddle.x = 0 + paddle.width / 2;
                        else if (paddle.x + (paddle.width/2) > stage.stageWidth)
                                  paddle.x = stage.stageWidth - paddle.width / 2;
              function Loop(event:Event):void
                        player1.y +=  vy1;
                        onEdge(player);
                        if (ball.hitTestObject(player))

    Which line is line 69?  If it happens to be at or after....  if (ball.hitTestObject(player))  that line appears to be missing an opening brace { at the end, as in...
    if (ball.hitTestObject(player)) {
    As for the  5006, the problem appears to be that you need to have all your functions defined within the class definition (Main).  Yours is attempting to have two items defined public at the same class level of the file.  So you need to take what I show in red below and nest it within the public class Main section as I attempt to show below.  The blue stuff I show may or may not lead to further problems since that would be more likely to appear in an init() function within the class (I am not an expert in class matters, nor many others for that matter)
    package
        import flash.display.MovieClip;
        import flash.events.KeyboardEvent;
        import flash.ui.Keyboard;
        import flash.events.*;
         public class Main extends MovieClip
               var player:paddle;
               var ball:ball;
               var home:startscreen;
               var vx1:Number = 0;
               var vx2:Number = 0;
               ball = new aBall(5,5);
               ball.x = 200;
               ball.y = 50;
               addChild(ball);
              stage.addEventListener(KeyboardEvent.KEY_DOWN,onkeyDown);
              stage.addEventListener(KeyboardEvent.KEY_UP, onkeyUp);
              addEventListener(Event.ENTER_FRAME, Loop);
              public function onkeyDown(event:KeyboardEvent):void
                        //player controls
                        if (event.keyCode == Keyboard.DOWN)
                                  vx1 = -10;
                        else if (event.keyCode == Keyboard.LEFT)
                                  vx1 = 10;
              function onkeyUp(event:KeyboardEvent):void
                        // stop player one
                        if (event.keyCode == Keyboard.LEFT || event.keyCode == Keyboard.DOWN)
                                  vx1 = 0;
                        else if (event.keyCode == 87 || event.keyCode == 83)
                                  vx2 = 0;
              function onEdge(paddle)
                        if (paddle.x - (paddle.width/2) < 0)
                                  paddle.x = 0 + paddle.width / 2;
                        else if (paddle.x + (paddle.width/2) > stage.stageWidth)
                                  paddle.x = stage.stageWidth - paddle.width / 2;
              function Loop(event:Event):void
                        player1.y +=  vy1;
                        onEdge(player);
                        if (ball.hitTestObject(player))

  • High Pings and lag in games.

    The problem I have is with gaming early in a morning and towards lunch time are usually fine and late a night into the early hours are usually ok aswell but as soon as peak times roll in my online play is impossible due to high pings and very bad lag, any idea what could be causing my problem please?
    Steps I have taken to date, contact BT and was passed onto tier 2 tech support who then ran a noise check which last 24 hours on my line, which seems to have left my line with a higher noise value than before.
    Tried a different ethernet cable, different micro filter, unplugged everything from the socket except for my Homehub 2, turned off my firewall and virus checker, reset my computer, closed all unused programs. Tried a friends Homehub 2, tried a laptop, all have the same result with high pings and lag in games.
    Also BT quote my line speed should be an estimated 17MB.
    ADSL line status
    Line state
    Connected
    Connection time
    4 days, 22:09:10
    Downstream
    8,128 Kbps
    Upstream
    445 Kbps
    ADSL settings
    VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    ITU-T G.992.5
    Latency type
    Interleaved
    Noise margin (Down/Up)
    15.6 dB / 30.2 dB
    Line attenuation (Down/Up)
    24.0 dB / 14.1 dB
    Output power (Down/Up)
    0.0 dBm / 10.9 dBm
    Loss of Framing (Local)
    0
    Loss of Signal (Local)
    0
    Loss of Power (Local)
    0
    FEC Errors (Down/Up)
    0 / 0
    CRC Errors (Down/Up)
    3334 / N/A
    HEC Errors (Down/Up)
    N/A / 0
    Error Seconds (Local)
    2211

    Test1 comprises of two tests
    1. Best Effort Test: -provides background information.
    Download  Speed
    6592 Kbps
    0 Kbps
    7150 Kbps
    Max Achievable Speed
     Download speedachieved during the test was - 6592 Kbps
     For your connection, the acceptable range of speeds is 2000-7150 Kbps.
     Additional Information:
     Your DSL Connection Rate :8128 Kbps(DOWN-STREAM), 445 Kbps(UP-STREAM)
     IP Profile for your line is - 7170 Kbps
    2. Upstream Test: -provides background information.
    Upload Speed
    363 Kbps
    0 Kbps
    445 Kbps
    Max Achievable Speed
    >Upload speed achieved during the test was - 363 Kbps
     Additional Information:
     Upstream Rate IP profile on your line is - 445 Kbps

  • I set up family sharing wrong, so i left family sharing and joined the right way agin but an error occurred and now it tells me I'll have to wait 364 days to rejoin again! How can I reset my account so I can use it again?

    WWhen I set up family sharing i did it with me as family organizer, but as my spouse is the organizer I had to leave the "family" I created and join his. But while setting it up an error occurred, and the screen went blank. Now I tried to join his family sharing again, and my phone keeps telling me I can't because accounts can only join families twice a year.
    I Don't really want to wait 364 days from now, is there a way in which I can reset my accoint so I can join family sharing again?
    Apple support doesn't have a solution for me yet!
    KInd regards

    This morning I looked at my family sharing account again an IT WORKS NOW! Think Apple has done a reset to my account, though I'm not exactly sure why! So I hope it works for you guys as well!

  • My ipod touch is not list as a device on itunes.  When I tried do update itunes, I get a ox8007054f error code and the update will not complete.

    My ipod touch is not listed as a device when connected to my computer.  As suggested I attempted to download the latest of itunes.  I got an
    ox8007054f error code and the down load will not complete.  I have also tried to restore my computer to an earlier setting, but it will
    not accept the change.

    Have you looked at this completed previos discussion. It discusses 0x8007054F.
    Re: Error message when trying to install iTunes

  • 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.

  • I have just bought an iPhone 5 and it won't sync to iTunes.  It says it needs  iTunes 10.7, which I have downloaded and installed.  I still get the error message and looking at "about iTunes" it says 10.6.3.  What do I do??

    I have just bought an iPhone 5 and it won't sync to iTunes.  It says it needs  iTunes 10.7, which I have downloaded and installed.  I still get the error message and looking at "about iTunes" it says 10.6.3.  What do I do??

    Perhaps check to see if you're accidentally running two different versions of iTunes. There's some information on troubleshooting that in the Opening iTunes section of the following document:
    Troubleshooting iTunes installation on Mac OS X

  • HT4972 i cant update my iphone 3gs to a more newer ios? it says here error! and the phone flashes some connect to itunes.. an if i connct nothing happens.. help me.. the ipgone wont open . and work pls help me thank you!

    i cant update my iphone 3gs to a more newer ios? it says here error! and the phone flashes some connect to itunes.. an if i connct nothing happens.. help me.. the ipgone wont open . and work pls help me thank you!

    Hello AlexCornejo,
    Thanks for using Apple Support Communities.
    The screen you're seeing on your iPhone indicates it is in recovery mode.  Now since the device is not appearing in iTunes on your PC, first follow the steps in this article:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    After following those steps, you should be able to restore your iPhone.
    Take care,
    Alex H.

  • Photoshop Elements 10 will not open.  I get Error message that says "Runtime Error!" and closes.  What do I do?

    Help.  Photoshop Elements 10 will not open.  I get Error message that says "Runtime Error!" and closes. What do I do?  What does it mean?  I bought Elements 10 at a retail store.  It did work for a while.

    Hi,
    Can you post back with the following.
    1.  The full Model No. and Product No. of the notebook ( from the service tag underneath your notebook ) - see Here for a further explanation.
    2.  The full version of the operating system you are using ( ie Windows 7 32bit ).
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • So I download photoshop cc (2014) and when I go to open the program, it gives me an error message and shuts the program down. It says," A problem cause the program to stop working correctly. Windows will close the program." Can someone help me please?

    So I download photoshop cc (2014) and when I go to open the program, it gives me an error message and shuts the program down. It says," A problem cause the program to stop working correctly. Windows will close the program." Can someone help me please?

    I've got the same issue and it affects all my adobe software.  You are not alone as I have seen several postings looking for the answer to this help request.

  • When I download and install iTunes it looks it does it, but then it never starts, instead gives an error report and says iTunes encountered some problem and has to close

    When I download and install iTunes it looks it does it, but then it never starts, instead gives an error report and says iTunes encountered some problem and has to close

    i don't know how they solved it, i'm having the same problem on Windows XP
    EventType : BEX
    P1 : iTunes.exe
    P2 : 10.7.0.21
    P3 : 504d85d9
    P4 : unknown
    P5 : 0.0.0.0
    P6 : 00000000
    P7 : 08920740
    P8 : c0000005
    P9 : 00000008

  • ITunes will not open (no error message and not running Norton 2005)

    I have recently upgraded to iTunes 7 and I now cannot get it to open after clicking on the icon. The iTunes.exe process comes up in the task manager briefly then disappears. There is NO accompanying error message and I am NOT running Norton Antivirus 2005. I have already tried reinstalling the standalone version of quicktime and I have used msconfig so that I essentially have only the necessary iTunes/quicktime processes running (no antivirus/antispyware/anti-popup software is running in the background). I have Windows 2000 and I have never had a problem with iTunes until now. Somebody please help me out here.

    wapierce,
    It looks like we have covered all the bases here. Unfortunatly it looks like The computer cannot run iTunes or the OS has an issue that may require a reeinstall.
    Lets verify the Hardware and OS one more time. Click Start> right click My Computer> Properties(you can also open My Computer then click view system information on the left side of the window.) What does the processor and Memory say here? Also what is it saying aout Windows.
    Make sure there are no upadtes available for the computer.
    When you installed iTunes did you make any registry changes? It sounds like the next step would be doing a restore or re-install of Windows on the computer.
    Jason

Maybe you are looking for