I am trying to open a web site called shark Groove and he always tells me that I have no ' adobe flash', but I do. I tried to open it in 'Internet Explorer' and it works? Do you have any idea how to solve this problem?

I have version 3.6.13 Firefox and Windows XP. I don't know if I had something off or not? I put Firfox in safe mode to see if it would run faster, and since I'm now getting this message?

There are 2 versions of Adobe Flash:

  • the version of the Plugin for Firefox and most other browsers
  • the only ActiveX for IE version (see: ActiveX)
  • Updated, you need to update as well

You do not have the Plugin version installed for Firefox. Search for "Shockwave Flash" in tools > Modules > Plugins

  1. Install the Flash plugin to the latest version.

    • Download and SAVE to your desktop, so you can find the Setup program later
    • If you do not have the current version, click on the "Player Download Center" link on the 'download and information' or 'Download manual installers' below
    • Once the download is complete, exit Firefox
    • Click on the installer, you just download and install
      • Windows 7 and Vista: will need to right click on the installer and choose 'run as administrator '.
    • Launch Firefox and recheck your version or up to the download link below to test the installation
    • Download and information: http://www.adobe.com/software/flash/about/
      • Use Firefox to go to the site above to update the Firefox plugin (will also install the plugin for most other browsers, except IE)
      • Use IE to go to the site above to update the ActiveX to IE
    • Download manual installers.

Tags: Firefox

Similar Questions

  • Do you have any idea how to solve this problem.

    Hello

    I created a very simple game that plays music. It loads and plays automatically when you go to the game scene. The problem is when the game is over and you play again, the music starts again, not at the beginning, but layered, once on top of the other.

    I would that be better with ActionScript that I am. I hope someone is able to help me solve this problem. I need to stop going around in circles with this.

    Thank you!

    Michelle

    keeps track of the score
    var score: number = 0;

    determines the first time that the fire button is pushed
    to start the timer
    var flag: Number = 1;

    create a new timer
    var myTimer:Timer = new Timer (1000);


    Variable that contains the name of the
    music file to download.
    var soundReq:URLRequest = new URLRequest ("music.mp3");

    Create an object of class Sound.
    This will allow you to use methods
    to manipulate the music.
    var sound: Sound = new Sound();

    Create an object of the SoundChannel class.
    This will allow you to control the audio playback.
    var soundControl:SoundChannel = new SoundChannel();

    Create a new object to control the volume
    var volumeControl:SoundTransform = new SoundTransform();

    Mark to keep track of the music (whether he plays or not).
    0, the music does not play.
    var flag2:Number = 1;

    set the initial note in the text box
    count_txt. Text = "0";

    Adds a listener to the timer
    myTimer.addEventListener ("timer", timedFunction);

    make the button invisible insect in the beginning
    insect_btn. Visible = false;

    set the initial time in the text box
    timer_txt. Text = "20";

    makes the insect disappear when the user draws on it
    function disappear(e:MouseEvent):void
    {
    If the timer reaches 0
    If (timer_txt.text is "0")
    {
    make the fire buttons and inactive insects
    launch_btn. RemoveEventListener (MouseEvent.CLICK, target);
    insect_btn. RemoveEventListener (MouseEvent.Click, disappear);
    }
    on the other
    {
    remove the button from the insect
    insect_btn. Visible = false;

    increase the score
    count_txt. Text = String(++score);

    }
    }

    makes the insect appear when the user
    Click on the view button and begins
    the timer if this is the beginning of the game
    function target(e:MouseEvent):void
    {
    If this is the beginning of the game
    Start the timer as soon as the user
    Click on the view button
    if(flag==1)
    {
    myTimer.start ();
    flag = 0;
    }

    Position the insect on stage
    insect_btn.x = Math.random () * 625;
    insect_btn.y = Math.random () * 475;

    make the visible insect
    insect_btn. Visible = true;
    }

    Displays the number of times and
    When the timer reaches 0
    makes the insect and inactive launch button
    function timedFunction(e:TimerEvent)
    {
    the timer between 1 and more
    Subtract 20 to create a timer that decreases the value
    var tc: int = 20 - myTimer.currentCount;

    display the clock in the text box
    timer_txt. Text = tc.toString ();

    If the number of timer 0
    If (myTimer.currentCount > 19)
    {
    make the fire button and the inactive button bug
    insect_btn. RemoveEventListener (MouseEvent.Click, disappear);
    launch_btn. RemoveEventListener (MouseEvent.CLICK, target);

    stop the clock
    MyEventArgs;

    move image where is the button 'replay '?
    gotoAndPlay ("done_frame");

    }
    }
    function playAgain(evt:MouseEvent):void
    {
    gotoAndPlay ("play_frame");
    }


    Load method applied to the sound object
    who will be our music.
    Sound.load() (soundReq);

    Play method applied to the sound object
    starting to play our music.
    soundControl = sound.play().


    When you click on the btn_play, this function
    will be called and it will play music
    function playSound(event:MouseEvent):void
    {
    Check the indicator.
    If the flag is 0, then the music is not playing.
    If (Flag2 == 0)
    {
    soundControl = sound.play().

    Reset indicator 1, to indicate that
    Subsequently the music plays.
    Flag2 = 1;
    }

    }

    When you click on the btn_stop, this function
    will be called and it stops the music
    function stopSound(event:MouseEvent):void
    {
    soundControl.stop ();

    Reset the indicator to 0, to indicate that
    Subsequently the music does not play.
    flag = 0;
    }


    When btn_up is enabled, the function is called
    function increaseVolume(event:MouseEvent):void
    {
    Adjust the volume by adding a unites.5
    the current volume
    volumeControl.volume +=. 5;

    Change the volume of the background music
    soundControl.soundTransform = volumeControl;
    }

    When btn_down is enabled, the function is called
    function decreaseVolume(event:MouseEvent):void
    {
    The volume in soustrayant.5 units
    volumeControl.volume-=. 5;

    If the volume is not less than zero
    change the volume
    otherwise to give volume to zero
    If (volumeControl.volume > = 0)
    soundControl.soundTransform = volumeControl;
    on the other
    volumeControl.volume = 0;

    }


    set up event listeners
    insect_btn.addEventListener (MouseEvent.Click, disappear);
    launch_btn.addEventListener (MouseEvent.CLICK, target);


    Add listeners to the play and stop buttons
    btn_play.addEventListener (MouseEvent.CLICK, playSound);
    btn_stop.addEventListener (MouseEvent.CLICK, stopSound);

    Add listeners to events for the up/down buttons
    btn_up.addEventListener (MouseEvent.CLICK, increaseVolume);
    btn_down.addEventListener (MouseEvent.CLICK, decreaseVolume);

    These two lines are already in your code:

    Sound.load() (soundReq);

    soundControl = sound.play().

    Find them and replace them with

    {if(!bool)}

    bool = true;

    Sound.load() (soundReq);

    soundControl = sound.play().

    }

    and place

    var bool:Boolean at the top of your code.

  • I have updated to ios 9.3.1 now I have no sound for text messages alerts and alert sounds no calendar! I just missed a meeting disaster. Any ideas how to solve this problem, all the settings are correct.

    I have updated to ios 9.3.1 now I have no sound for text messages alerts and alert sounds no calendar! I just missed a meeting disaster. Any ideas how to solve this problem, all the settings are correct.

    Try a reset...

    Force restart your iPhone: tap on and hold the Home and Sleep/Wake buttons for at least ten seconds, until you see the Apple logo.

    If this does not help, tap settings > general > reset > reset all settings

  • you just bought LR6 as I tried to install Adobe says that the installation is not possible because I am running Vista, even if I run Win7 Home Premium on my computer. Any ideas how to solve this problem?

    you just bought LR6 DVD that I tried to install Adobe says that the installation is not possible because I am running Vista, even if I run Win7 Home Premium on my computer. Any ideas how to solve this problem?

    Right click on the file Setup.exe and choose Properties option.

    Then click on the Compatibility tab.

    The value of the Windows 7 operating system and check.

    See the link below:

    trying to install lightroom 6 on windows 7 continues to receive operating requirement not met windows vista not supported

  • When I close a window, it closes like a window shade. Any ideas how to solve this problem?

    It's on a Windows XP count.  Demension Dell Dim 4700.

    Pentium 4 CPU 280 GHz

    2.79 GHz, 504 MB ram.

    It's on a Windows XP count.  Demension Dell Dim 4700.

    Pentium 4 CPU 280 GHz

    2.79 GHz, 504 MB ram.

    ========================================
    Perhaps the Visual effects settings could be changed:

    Right-click the icon of your workstation and then...

    Properties / Advanced tab / section Performance / Settings button / tab Visual effects

    Now, you can experiment...

    Personally, I choose 'Adjust for best results' / apply / OK...
    This setting disables all effects.

  • The toolbar with Firefox parameters (0ptions, etc.) have disappeared. How to solve this problem?

    Maybe it's a virus problem. Firefox no longer displays its toolbar, even after I download a new version. Only a black space appears where it used to be. I can't change the security or history or other settings. Any ideas how to solve this problem?

    • In versions of Firefox 3.6 on Windows and Firefox 4 on Windows and Linux, it is possible to hide the "menu bar" by "view > toolbars" or via the context menu of a toolbar.
    • Press F10 or press and hold the Alt key to bring up the 'Menu Bar' temporarily.
    • Go on "view > toolbars" or right-click the 'menu bar', or press Alt + V T to select the toolbars to show or hide (click on an entry to switch from the State).

    See also:

  • Windows Media Player opens when I type any key. This started 2 days ago and did the computer virtually unusable. The mouse is however immune to this phenomenon, so I can still use it. No idea how to solve this problem?

    Windows Media Player opens when I type any key. This started 2 days ago and did the computer virtually unusable. The mouse is however immune to this phenomenon, so I can still use it.

    No idea how to solve this problem?

    Ideas:

    • You have problems with programs
    • Error messages
    • Recent changes to your computer
    • What you have already tried to solve the problem

    Do a system restore. Choose at least 3 days ago when you did not have this problem as your restore point.

    Start button > Search box, type system restore > press the Enter key > uac prompt > click on choose a different restore point > next > select dates as your restore point, until the click > next > finish
    To sit and wait. The machine restarts when it's done.

    For the benefits of others looking for answers, please mark as answer suggestion if it solves your problem.

  • I have an Iphone 6 and can't send or receive text messages to Iphone users not.  I can send the Imessages blue very well, but it is impossible to send green messages any idea how to solve this

    I have an Iphone 6 and can't send or receive text messages to Iphone users not.  I can send the Imessages blue very well, but it is impossible to send green messages any idea how to solve this

    SMS or text messages, are a specific function of the carrier. You must have an addition of text on your cell phone plan. If you can not send SMS, you must contact your operator to solve the problems.

  • I use iphone videos and still images in a project.  When I drag the videos in the timeline, they work fine, but when I drag still images, I have only a small part of the original photo.  No idea how to solve this problem?

    I use iphone videos and still images in a project of first Pro CC.  When I drag the videos in the timeline, they work fine, but when I drag still images, I have only a small part of the original photo.  No idea how to solve this problem?

    Right click on the photo in sequence and "ladder to the chassis '. Can also be set in the preferences and affect imports after the change

    Thank you

    Jeff

  • I have Pandora Radio and he plays only a song and must then be restarted. He has not done this before. No idea how to solve this problem?

    I have Pandora Radio and he plays only a song and must then be restarted.  He has not done this before. No idea how to solve this problem?

    Hi Howard,

    -What version of Windows you are using on the computer?

    The question you posted would be better suited in Pandora Radio support Forums. Contact them for assistance. Please see the link below.

    www.Pandora.com/contact

    www.Help.Pandora.com

    It will be useful. Back to us for any problem related to Windows. We will be happy to help you.

  • My email is not working, no idea how to solve this problem?

    I have two addresses - email [email protected] that does not work and the [email protected] who works there. I have no warnings or error messages, but I have not received emails for a week and it will not send emails. No idea how to solve this problem? Ildi

    OK let see VAT present one bit at a time.

    You should send messages using the tassiemoments server no bigpond. I think I might even be a technical violation of their service life... The provider is used to cover their bets as we ISP block port 25 connections home. I can attest to Telstra/Bigpond do not do that my mail server has worked well until the server has exploded at Christmas.

    There are significant problems with the server and especially e-mail with no records among other things a DNS server. See here the page is slow to load because it tests the configuration of the server to tassiemoments.

    The technical contact for the domain is JOANNE SMITH, WUNDOWIE, WA perhaps that is where you should direct your questions.

  • Firefox said I have Adobe Flash Player v11, but Adobe (and Internet Explorer) I have v16. How to solve this problem?

    According to the Firefox Add-ons Manager and the page control plug-in, I use the 11.6.602.180 Shockwave Flash version, so I went to the Adobe site to download the latest version (16.0.0.296). Adobe says that I already use the most recent version; the fact the Manager of Add-ons in Internet Explorer. What should I do?

    You can uninstall versions of Flash player current and (re) install the latest version of Flash.

    See this on uninstalling Flash drives:

    Note that this will remove all installed Flash drives.

    You can find the latest versions of Flash player for Firefox on this page:

  • My SD card reader stop working, no idea how to solve this problem.

    SD card reader worked fine until I tried a new high speed one.  Now computer will not read any SD cards.  I closed the computer and restarted which did not solve the problem.  I have a Pavilion g7-1227 nr notebook PC

    You don't mention which operating system you have. Download and reinstall the driver for him and we'll see if that fixes it.

    Windows 7 (64-bit), you can download it here

    Windows 8 (64-bit), you can download it here

    Windows 8 (32-bit), you can download it here

    Please let me know if this can help,

  • 4 - 1106TU envy: Please help. I have this error and no idea how to solve this problem

    Vman19 wrote:
    No guarantee. Can you tell where I can buy one online. The exact hard drive for my laptop. Bunch for your help thank you

    This will depend on where your locate in? If the United States then look at Newegg for a replacement HARD drive, but I would like to ask did you a defined HP recovery disk? If this isn't the case, then you must order these discs at HP and then use them to format and restore the software from the factory to the laptop to make it work. But instead of recovering the HARD drive I would say than to invest in a SSD which will make more efforts to improve the use of your computer. Assuming you want an SSD.

  • I just downloaded Windows Live Essentials, and now I can't send emails. Error ID 0x8ccc003 keeps coming, no idea how to solve this problem?

    I receive emails fine but could not be sent due to the error id: ox8ccc0003. This happened only after I downloaded windows live essentials

    The problem disappeared, I don't know why.

    Hi John Whisman,.

    Since you are facing problems after downloading Windows Live Essentials download, you can view the query in the Windows Live Forum for assistance:

    http://windowslivehelp.com/product.aspx?ProductID=12

    http://windowslivehelp.com/searchresults.aspx?query=0x8ccc003%20sending%20mails&ProductID=12

Maybe you are looking for

  • Via the command script / Sudoers question

    Hello MacGeniuses. After trying to understand the solution for my part, I only managed to come up with a partial solution. Main question: I want to use an alias of office to shut down the computer. The reason is that I wish to first run another comma

  • Tecra A10 with Intel WiFi 5100 running Vista 32 bit fails to connect WiFi

    Hello a whole new Tecra A10 with buildin Intel 5100 WiFi fails to connect to the Wlan router, using the pre-installled Vista Business 32-bit. Vista has always said: wrong password. Yes, Wifi hardware is enabled, of course. And Tecra WiFi OK MAC is st

  • Problem with the help of WITH Toshiba Bluetooth Stack with Winamp

    I want to control winamp using Sony Ericsson HBH-DS970.But I have Toshiba Bluetooth Stack on my computer, and in the options, it is only possible to control Windows media player and as far I discovered using regedit - HKEY_CURRENT_USER\Software\Toshi

  • LENOVO S 60 - how can I move messages deleted from the Inbox?

    How can I move messages deleted from the Inbox?

  • SQL help

    Hi guys,.Please can you help with this query CREATE TABLE test (id NUMBER, code NUMBER, prefer VARCHAR2(1), status VARCHAR2(1), email VARCHAR2(50));                     INSERT INTO test VALUES (123, 2,'N','A','test');           INSERT INTO test VALUE