Doing two things at once

Can anyone tell me how to get FF 14.1 on Windows 7 machine to play a video and scroll or type in another tab at the same time

All versions of Firefox are free.
I'm not sure RealPlayer is the only add-on that conflicts with the Flash 11.3 Protected Mode feature. I suggest disabling it to see whether that makes any difference.
In case it is related to settings or extensions, you could try the Reset feature. This duplicates certain key data from your active settings folder into a new one, bypassing some add-ons and custom settings. Your plugins will still be active, but could be disabled manually if you like.
More information in this article: [[Reset Firefox – easily fix most problems]].
If the new settings folder has the same problem, you can switch back if you like using Firefox's Profile Manager. (This article describes how to start Firefox in the profile manager. I do not recommend removing anything until you are 110% certain that you will never need any of that profile's data in the future. [[Use the Profile Manager to create and remove Firefox profiles]])
Does it make any difference?

Similar Messages

  • Need help with doing two things at once

    hey all!
    i'm trying to write a program where the user has twenty seconds to guess the houshold item. every five seconds the pc gives a clue, if the user manages to guess it in time, they win! else...
    anyway, my compiler comes up with nothing but when i execute it and press "go" to start the process, the program does what it is meant to exept for at the end where it always displays "you lose" regardless of anything that has happened.i'm not sure what i'm doing wrong.
    here's the code:
    import java.util.Random;
    import javax.swing.event.DocumentListener;
    import javax.swing.event.DocumentEvent;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.FlowLayout;
    import static java.lang.System.out;
    import java.util.Timer;
    import java.util.TimerTask;
    class Quiz extends JFrame implements ActionListener, ItemListener{
         public static void main(String args[]){
              new Quiz();
         String qp;
         int duh = 1;
         int funnum = 0;
         Timer othertime = new Timer();
         JLabel ql1 = new JLabel();
         JLabel ql2 = new JLabel();
         JLabel ql3 = new JLabel();
         JLabel ql4 = new JLabel();
         JLabel ql5 = new JLabel();
         JLabel ql6 = new JLabel();
         JLabel timelabel = new JLabel();
        JButton qlb1 = new JButton("go");
        JComboBox box = new JComboBox();
         public Quiz(){
         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         setLayout(new FlowLayout());
         add(ql1);
         ql1.setVisible(false);
         add(ql2);
         ql2.setVisible(false);
         add(ql3);
         ql3.setVisible(false);
         add(ql4);
         ql4.setVisible(false);
         add(ql5);
         ql5.setVisible(false);
         add(ql6);
         add(timelabel);
         add(qlb1);
         qlb1.addActionListener(this);
         add(box);
         box.addItem("");
         box.addItem("shower");
         box.addItem("bed");
         box.addItem("spade");
         box.addItem("knife");
         box.addItem("book");
         box.addItem("rake");
         box.addItem("bookshelf");
         box.addItem("sink");
         box.addItem("bedside lamp");
         box.addItem("wooden spoon");
         box.addItem("'quiet' sign");
         box.addItem("baking tray");
         box.addItem("desk");
         box.addItem("toilet");
         box.addItem("compost");
         box.addItem("pillow");
         box.addItem("blanket");
         box.addItem("pan");
         box.addItem("study computer");
         box.addItem("tap");
         box.addItem("bookworms");
         box.addItem("duvey");
         box.addItem("bath");
         box.addItem("plants");
         box.addItem("cooker");
         box.addItem("trampoline");
         box.addItemListener(this);
         box.setEnabled(false);
         pack();
         setVisible(true);     
         public void actionPerformed(ActionEvent e){
         qlb1.setEnabled(false);
         int rndmnm = new Random().nextInt(10)+1;
         final int getnum = rndmnm;
         switch(getnum){
         case 1:
         ql1.setText("this is a kitchen item");
         ql2.setText("it is used for cooking");
         ql3.setText("it requires heat");
         ql4.setText("it needs greasy paper");
         qp = "baking tray";
         break;
         case 2:
             ql1.setText("this is a kitchen item");
             ql2.setText("this item has no food put into it to cook");
             ql3.setText("this item does not require heat");
             ql4.setText("it is used for mixing ingredients");
             qp = "wooden spoon";
            break;
           case 3:
             ql1.setText("this is a bathroom item");
             ql2.setText("it is used when washing");
             ql3.setText("it does not create foam");
             ql4.setText("it can be relaxing");
             qp = "bath";
                break;
                case 4:
                ql1.setText("this is a bathroom item");
                ql2.setText("it squirts water");
                ql3.setText("it is stationary");
                ql4.setText("temperature does not matter");
                qp = "toilet";
                break;
                case 5:
                ql1.setText("this is a bedroom item");
                ql2.setText("it is slept on top of");
                ql3.setText("all except the head sleeps on top of it");
                ql4.setText("it is not hard");
                qp = "duvey";
                break;
                case 6:
                ql1.setText("this is a bedroom item");
                ql2.setText("it is not hard");
                ql3.setText("legs generally never lie on top of it");
                ql4.setText("it is nearly as long as the duve");
                qp = "blanket";
                break;
                case 7:
                ql1.setText("this is a library item");
                ql2.setText("it is of great use");
                ql3.setText("it is material");
                ql4.setText("it stores much data");
                qp = "bookshelf";
                break;
                case 8:
                ql1.setText("this is a library item");
                ql2.setText("it is simple to use");
                ql3.setText("you do not nead to search much to find it");
                ql4.setText("it is not made of wood or other carpentry material");
                qp = "'quiet' sign";
                break;
                case 9:
                ql1.setText("this is a garden item");
                ql2.setText("it covers area");
                ql3.setText("it can crush plants...");
                ql4.setText("...but is also very useful to them");
                qp = "compost";
                break;
                default:
                ql1.setText("this is a garden item");
                ql2.setText("it requires heavy work to do");
                ql3.setText("and good looking after");
                ql4.setText("the outcome is surprisingly delicate");
                qp = "plants";
                break;
         othertime.scheduleAtFixedRate(new TimerTask() {
                   int otherval = 0;
                   public void run() {
                        switch (otherval)
                             case 1:
                             timelabel.setText("20");
                                  ql5.setText(qp);
                                  ql1.setVisible(true);
                                  box.setEnabled(true);
                                  break;
                             case 2:
                                 timelabel.setText("19");
                                 break;
                                      case 3:
                                 timelabel.setText("18");
                                 break;
                                      case 4:
                                 timelabel.setText("17");
                                 break;
                             case 5:
                                  timelabel.setText("16");
                                  ql2.setVisible(true);
                                  break;
                                       case 6:
                                 timelabel.setText("15");
                                 break;
                                      case 7:
                                 timelabel.setText("14");
                                 break;
                                      case 8:
                                 timelabel.setText("13");
                                 break;
                                      case 9:
                                 timelabel.setText("12");
                                 break;
                             case 10:
                                 timelabel.setText("11");
                                  ql3.setVisible(true);
                                  break;
                                       case 11:
                                 timelabel.setText("10");
                                 break;
                                      case 12:
                                 timelabel.setText("9");
                                 break;
                                      case 13:
                                 timelabel.setText("8");
                                 break;
                                      case 14:
                                 timelabel.setText("7");
                                 break;
                             case 15:
                             timelabel.setText("6");
                                  ql4.setVisible(true);
                                  break;
                                       case 16:
                                 timelabel.setText("5");
                                 break;
                                      case 17:
                                 timelabel.setText("4");
                                 break;
                                      case 18:
                                 timelabel.setText("3");
                                 break;
                                      case 19:
                                 timelabel.setText("2");
                                 break;
                             case 20:
                                 timelabel.setText("1");
                                 break;
                             case 21:
                                 timelabel.setText("");
                                 duh --;
                             if(duh == 1){
                             ql6.setText("you win!!!");     
                             } else {
                             ql6.setText("you lose");
                                  break;
                        otherval++;
                   } }, 1000, 1000);
           public void itemStateChanged(ItemEvent e){
                        box.setEnabled(false);
                        if(box.getSelectedItem() == ql5.getText()){
                        duh ++;
                        } else {
                      funnum ++;
      }as i say, the ending will always be "you lose".
    anyhoo, for those of you who want a question its "what am i doing wrong that prevents the user from winning?"
    thankyou for your help (if you do help).

    the point of the decremation is that duh is incremented if you get the answer right,
    public void itemStateChanged(ItemEvent e){
                        box.setEnabled(false);
                        if(box.getSelectedItem() == ql5.getText()){
                        duh ++;
                        } else {
                      funnum ++;
                   } and then duh is decremented, like so:
         case 21:
                                 timelabel.setText("");
                                 duh --;
                             if(duh == 1){
                             ql6.setText("you win!!!");     
                             } else {
                             ql6.setText("you lose");
                                  break;the point is that if the user gets it right, duh should be incremented, then in the switch statements decrements the value of duh. so if the user got it right, duh should equal 1. else duh will be decreased to zero
    hope that makes it more clear (i'm not very good with explaining stuff)

  • ASObjC: Do Two Things at Once

    Hi, All.
    I've got an AppleScript Objective C program that I'd like to have do two things at once. For example, when a button is clicked, speak a sentence, and do some math (example below). The easiest thing would be to just give it two sent actions, the handlers that I want it to run, but nope, can't do that.
    I tried using one handler within another, but it still waits for the first to finish before moving on to the second, like this:
    on secondTask()
    set x to 1
    repeat 5
    set x to x + 1
    end repeat
    end secondTask
    on btnClicked_(sender)
    secondTask()
    say "Hello, you've just clicked a button. We're doing some math right now."
    end butnClicked_
    When I use this, the tasks get done, but one at a time.
    Is there any way to get it to do two things in parallel?
    Thanks!
    -Nate

    Hello
    If I understand it correctly, something like the following snippet would work :
    --SNIPPET
    (* not tested *)
    tell current application's class "NSSpeechSynthesizer"
    set synth to its alloc()'s initWithVoice_(missing value) -- default voice
    end tell
    synth's startSpeakingString_("Humpty Dumpty sat on a wall,
    Humpty Dumpty had a great fall.
    All the king's horses and all the king's men
    Couldn't put Humpty together again.")
    tell current application to display dialog "Now speaking..." buttons {"Stop"}
    --if synth's isSpeaking() then synth's stopSpeaking()
    synth's stopSpeaking()
    synth's release()
    --END OF SNIPPET
    And if the above works, actual script in ASObjC would look something like this :
    --SCRIPT (outline)
    (* not tested *)
    property NSSpeechSynthesizer : class "NSSpeechSynthesizer"
    script myAppDelegate
    property parent : class "NSObject"
    property myButton : missing value
    property synth : {}
    on buttonClicked_(sender)
    synth's startSpeakingString_("Hello")
    end buttonClicked_
    on awakeFromNib()
    set synth to NSSpeechSynthesizer's alloc()'s initWithVoice_(missing value) -- default voice
    end awakeFromNib
    on applicationWillFinishLaunching_(aNotification)
    end applicationWillFinishLaunching_
    on applicationShouldTerminate_(sender)
    --synth's stopSpeaking() -- not sure this is necessary
    synth's release()
    return current application's NSTerminateNow
    end applicationShouldTerminate_
    end script
    --END OF SCRIPT
    *When you alloc() something, make sure you release() it.
    Regards,
    H

  • Sound in my headphones switches to speakers when I try to play two things at once. How do I fix that?

    I've had this problem since I downloaded the latest version of iTunes a few days ago. If I'm listening to music with my headphones on and I try to play a video on youtube or something, the music switches to my computer's speakers while the video plays in my headphones. It even does it when the sound plays automatically on a website. One of those "Congratulations, you won!" messages played when I went to a site and the music started playing on my computers speakers while the message played in my headphones. I doubt this is a problem with my headphones because I tried it with a pair of Apple earbuds included with the iPhone I bought for my mom. Both the headphones and the earbuds were purchased within the past two weeks, so they're brand new. Can anyone tell me how to fix this?

    http://support.apple.com/kb/TS2972

  • Can Airport Express do two things at once

    I've used my Airport Express for music up to now, and it seems to work fine. After a fairly length remodeling project, I'm starting to plan on reconnecting all my new components and devices. My question is can I use the Airport Express to connect to both my stereo through the audio output AND my new network capable blu ray player through the ethernet port at the same time?
    I've read the docs and it talk about several different things, but it doesn't talk about doing them at the same time. Just trying to see if I need to buy the overpriced dongle for the blu ray player or I can use a device I already have. Thanks in advance.

    The ethernet port may already be active since that is the default setup.
    Plug in a laptop using an ethernet cable, turn off the wireless on the computer and see if you can get an Internet connection.
    If not, open AirPort Utility - click Manual Setup
    Click the Wireless tab located just below the row of icons
    Enter a check mark next to "Allow Ethernet Clients"
    Update to save changes

  • How do I do two things at once; ie listen to Jango, and read emails

    When I am in my email page and want to listen to Jango
    as well, the email page disappears. How can I see two pages
    at the same time?

    And if you're using Lion as the OS, make sure you have upgraded to 8GB RAM. In spite of what Apple says, running the 64-bit OS + applications on just 4GB is an exercise in patience. Video decoding and streaming at HDMI resolutions is not exactly easy work.

  • Unable to do two things at once online

    Hi
    I've recently bought a Mac Book Pro and via Airport it detected my existing wireless connection and connected to my Belkin router without a problem.
    I've noticed however that if, for example, I'm uploading a video to YouTube, or some photos online, I can't then connect to anything else on the internet either via a new tab or a new internet window. When I try to do so it searches for a while (and this happens on both Safari and Firefox) and then comes up with a "Server not found" error message. It feels as though the uploading is closing any other access to the internet.
    I didn't have any problems doing simultaneous internet access when I was using the same router/wireless set up with my PC, so I think it must be something I haven't done with the Mac?
    Any help really gratefully received!
    Neil

    Hi
    I've got a pre-N belkin wireless/router. I've checked via the router's homepage and it says there isn't any new firmware available.
    I ran the trace as suggested, I'm afraid that I don't know what "long hop times" means, but here's a printout of what I got from the www.youtube.com trace:
    Traceroute has started ...
    traceroute: Warning: www.youtube.com has multiple addresses; using 208.65.153.238
    traceroute to www.youtube.com (208.65.153.238), 64 hops max, 40 byte packets
    1 192.168.2.1 (192.168.2.1) 10.972 ms 0.602 ms 0.554 ms
    2 87.237.21.169 (87.237.21.169) 9.235 ms 8.721 ms 9.217 ms
    3 10.192.0.101 (10.192.0.101) 10.797 ms 10.293 ms 9.640 ms
    4 * * *
    5 194.35.183.93 (194.35.183.93) 15.419 ms 15.973 ms 16.042 ms
    6 ae0-192.loncr5.London.opentransit.net (193.251.252.193) 15.062 ms 15.763 ms 15.912 ms
    7 level3-1.GW.opentransit.net (193.251.254.98) 23.198 ms 23.207 ms 23.614 ms
    8 ae-31-51.ebr1.London1.Level3.net (4.68.116.30) 39.788 ms ae-31-53.ebr1.London1.Level3.net (4.68.116.94) 31.416 ms ae-31-55.ebr1.London1.Level3.net (4.68.116.158) 32.418 ms
    9 ae-1-100.ebr2.London1.Level3.net (4.69.132.118) 32.397 ms 29.148 ms 35.280 ms
    10 ae-4.ebr1.NewYork1.Level3.net (4.69.132.109) 96.005 ms 85.803 ms 88.939 ms
    11 ae-81-81.csw3.NewYork1.Level3.net (4.69.134.74) 95.509 ms 92.848 ms 90.528 ms
    12 ae-34-89.car4.NewYork1.Level3.net (4.68.16.134) 86.905 ms 87.293 ms 87.031 ms
    13 GOOGLE-INC.car4.NewYork1.Level3.net (4.78.166.246) 90.074 ms 90.920 ms 95.273 ms
    14 * * *
    15 * * *
    16 * * *
    17 * * *
    18 * * *
    19 208.65.153.238 (208.65.153.238) 163.016 ms 161.628 ms 160.119 ms
    It took about 45 seconds in total to complete.
    I changed the MTU to 1492 (it was 1432) but still getting the "server not found" message.

  • Doing two things on 1 click of a Button

    Hey Guys..
    Is this possible??
    I have a button
    <mx:Button label="Testing" id="test" click="currentState='State2'" top="10" horizontalCenter="64"/>
    Now what I want to happen is.. When the button "Testing" is clicked
    1) Call the state 'state2' (which is happening)
    AND
    2) do the following
    cleardata();
    Both should happen at the same time. Is it possible to put both in the same syntax??
    Thanks

    Sure:
    <mx:Button label="Testing" id="test" click="currentState='State2';cleardata();" top="10" horizontalCenter="64"/>

  • HT201317 I've noticed two things that my ipad no longer does, if save an image from graphic art on the internet, it used to save them to photostream, it no longer does, and with all the settings on my photos no longer shared between ipad and pc, like it u

    I've noticed two things my Ipad no longer does, If I save an image from an internet graphic file - facebook or whatever, the photo used to be saved to photostream... it no longer saves it to anywhere. Also having made sure all the boxes are ticked with photostream and ICloud and not knowingly changed anything, photos take with Ipad/photostream no longer end up in icloud and available to other machines eg. windows pc. Anyone got any suggestions?

    Try here:
    iPod touch: Hardware troubleshooting
    iOS: Not responding or does not turn on
    To get the calender and contacts back if you can't get the iPod working is to restore the new iPod from the backup of the old one.

  • PS gallery linked to Dreamweaver does not show up once on pub. server

    i created a photoshop gallery and linked it to my website (Dreamweaver) under construction (as im learning); it shows up fine when i preview it on browser from my computer location, however, it does not show up once on the public server. any help as to the direct problem with this link/file/coding, etc... would be greatly appreciated....
    site >>>> http://paulrosal.com/ >>>>> CLICK ON "ART"
    ******************************CHECK OUT CODING RIGHT HERE******************************
    <!-- saved from url=(0013)about:internet -->
    <html lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>gallery</title>
    <style>
    body,html {
    margin-top:0;
    margin-left:0;
    margin-right:0;
    margin-bottom:0;
    height: 100%;
    width: 100%;
    </style>
    <!-- Active Content Workaround Support File -->
    <script src="resources/AC_RunActiveContent.js" language="javascript"></script>
    <script language="JavaScript" type="text/javascript">
    function getQueryVariable(variable) {
      var query = window.location.search.substring(1);
      var vars = query.split("&");
      for (var i=0;i<vars.length;i++) {
        var pair = vars[i].split("=");
        if (pair[0] == variable) {
          return pair[1];
      return -1;
    </script>
    <script language="JavaScript" type="text/javascript">
      var startImg = getQueryVariable("startImg");
      //alert(startImg);
    </script>
    <!-- Flash Detection Script Block -->
    <script language="JavaScript" type="text/javascript">
    <!--
    // Globals
    // Major version of Flash required
    var requiredMajorVersion = 8;
    // Minor version of Flash required
    var requiredMinorVersion = 0;
    // Minor version of Flash required
    var requiredRevision = 0;
    // the version of javascript supported
    var jsVersion = 1.0;
    // -->
    </script>
    <script language="VBScript" type="text/vbscript">
    <!-- // Visual basic helper required to detect Flash Player ActiveX control version information
    Function VBGetSwfVer(i)
      on error resume next
      Dim swControl, swVersion
      swVersion = 0
      set swControl = CreateObject("ShockwaveFlash.ShockwaveFlash." + CStr(i))
      if (IsObject(swControl)) then
        swVersion = swControl.GetVariable("$version")
      end if
      VBGetSwfVer = swVersion
    End Function
    // -->
    </script>
    <script language="JavaScript1.1" type="text/javascript">
    <!-- // Detect Client Browser type
    var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
    var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
    var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
    jsVersion = 1.1;
    // JavaScript helper required to detect Flash Player PlugIn version information
    function JSGetSwfVer(i){
    // NS/Opera version >= 3 check for Flash plugin in plugin array
    if (navigator.plugins != null && navigator.plugins.length > 0) {
    if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
    var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
                    var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
    descArray = flashDescription.split(" ");
    tempArrayMajor = descArray[2].split(".");
    versionMajor = tempArrayMajor[0];
    versionMinor = tempArrayMajor[1];
    if ( descArray[3] != "" ) {
    tempArrayMinor = descArray[3].split("r");
    } else {
    tempArrayMinor = descArray[4].split("r");
                    versionRevision = tempArrayMinor[1] > 0 ? tempArrayMinor[1] : 0;
                flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
               } else {
    flashVer = -1;
    // MSN/WebTV 2.6 supports Flash 4
    else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
    // WebTV 2.5 supports Flash 3
    else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
    // older WebTV supports Flash 2
    else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
    // Can't detect in all other cases
    else {
    flashVer = -1;
    return flashVer;
    // When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
          reqVer = parseFloat(reqMajorVer + "." + reqRevision);
            // loop backwards through the versions until we find the newest version    
    for (i=25;i>0;i--) {    
    if (isIE && isWin && !isOpera) {
    versionStr = VBGetSwfVer(i);
    } else {
    versionStr = JSGetSwfVer(i);         
    if (versionStr == -1 ) {
    return false;
    } else if (versionStr != 0) {
    if(isIE && isWin && !isOpera) {
    tempArray         = versionStr.split(" ");
    tempString        = tempArray[1];
    versionArray      = tempString .split(",");                   
    } else {
    versionArray      = versionStr.split(".");
    versionMajor      = versionArray[0];
    versionMinor      = versionArray[1];
    versionRevision   = versionArray[2];
    versionString     = versionMajor + "." + versionRevision;   // 7.0r24 == 7.24
    versionNum        = parseFloat(versionString);
                 // is the major.revision >= requested major.revision AND the minor version >= requested minor
    if ( (versionMajor > reqMajorVer) && (versionNum >= reqVer) ) {
    return true;
    } else {
    return ((versionNum >= reqVer && versionMinor >= reqMinorVer) ? true : false );    
    // -->
    </script>
    </head>
    <body><div align="center" style="width:100%; height:100%">
    <script language="JavaScript" type="text/javascript">
    <!--
    // Version check for the Flash Player that has the ability to start Player Product Install (6.0r65)
    var hasProductInstall = DetectFlashVer(6, 0, 65);
    // Version check based upon the values entered above in "Globals"
    var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
    // Location visited after installation is complete if installation is required
    var MMredirectURL = window.location;
    // Stored value of document title used by the installation process to close the window that started the installation process
    // This is necessary to remove browser windows that will still be utilizing the older version of the player after installation is complete
    // DO NOT MODIFY THE FOLLOWING TWO LINES
    //document.title = document.title.slice(0, 47) + " - Flash Player Installation";
    document.title = document.title.slice(0, 47);
    var MMdoctitle = document.title;
    // Check to see if a player with Flash Product Install is available and the version does not meet the requirements for playback
    if ( hasProductInstall && !hasReqestedVersion ) {
        var productInstallOETags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
        + 'width="550" height="200"'
        + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
        + '<param name="movie" value="resources/playerProductInstall.swf?MMredirectURL='+MMredirectURL+'&MMplayerType=Ac tiveX&MMdoctitle='+MMdoctitle+'" />'
        + '<param name="quality" value="best" /><param name="bgcolor" value="#3A6EA5" />'
        + '<embed src="resources/playerProductInstall.swf?MMredirectURL='+MMredirectURL+'&MMplayerType=Plug In" quality="high" bgcolor="#3A6EA5" '
        + 'width="550" height="300" name="detectiontest" align="middle"'
        + 'play="true"'
        + 'loop="false"'
        + 'quality="best"'
        + 'wmode="opaque"'
        + 'allowScriptAccess="sameDomain"'
        + 'type="application/x-shockwave-flash"'
        + 'pluginspage="http://www.adobe.com/go/getflashplayer">'
        + '<\/embed>'
        + '<\/object>';
        document.write(productInstallOETags);   // embed the Flash Product Installation SWF
    } else if (hasReqestedVersion) {  // if we've detected an acceptable version
        AC_FL_RunContent(
    'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
    'flashvars','baseRefUrl=resources/&groupxml=group.xml&stylexml=style.xml&localText=localT ext.xml&livePreview=false&startImg='+startImg,
    'width', '100%',
    'height', '100%',
    'src', 'resources/gallery',
    'quality', 'high',
    'pluginspage', 'http://www.adobe.com/go/getflashplayer',
    'align', 'middle',
    'play', 'true',
    'loop', 'true',
    'scale', 'showall',
    'wmode', 'opaque',
    'devicefont', 'false',
    'id', 'gallery',
    'bgcolor', '#f7f7f7',
    'name', 'gallery',
    'menu', 'true',
    'allowScriptAccess','sameDomain',
    'movie', 'resources/gallery',
    'salign', ''
      } else {  // flash is too old or we can't detect the plugin
        var alternateContent = 'This photo gallery requires the Adobe Flash Player.'
            + '<a href=http://www.adobe.com/go/getflash/>Get the free Flash Player here</a>';
        document.write(alternateContent);  // insert non-flash content
    // -->
    </script>
    <noscript>
    // Provide alternate content for browsers that do not support scripting
    // or for those that have scripting disabled.
           Sorry, this photo gallery requires that scripting be enabled on your web browser and that the Adobe Flash Player be installed.
      <a href="http://www.adobe.com/go/getflash/">Download the Adobe Flash Player</a>
    </noscript>
    </div>
    </body>
    </html>

    Are you sure you have uploaded everything in the gallery folder to the correct location. It can't find the index.html page.

  • My dad has a brand new iMac. If he quits an app, this window closes, but the app won't finish shutting down, Force quitting does not work.  Once another app is opened, it will not close either.  Now none of the apps are responding. Any ideas?

    My dad has a brand new iMac. If he quits an app, this window closes, but the app won't finish shutting down, Force quitting does not work.  Once another app is opened, it will not close either.  Now none of the apps on the dock are responding. I asked him to click on the apple, and drop down to "About this Mac", but that wouldn't open either. Any ideas?  If I was at his house, I would call Apple Care in a heartbeat, but am home with my sick daughter,,,  Thanks!

    For starters, have him open Disk Utility in Applications>Utilities, select the volume (the indented listing) and Verify Disk. If it reports any problems, have him try a Safe Boot by holding the Shift key at startup. This boot will take much longer than usual. It's checking and trying to repair the drive directory, if possible. Once in Safe Boot, have him repair Permissions.
    For other Disk repair remedies see
    http://support.apple.com/kb/TS1417
    Also, have him try a PRAM Reset. At the startup chime, hold down CMD-Option-P-R together, listen for two more chimes, total three, then let go to finish booting.
    Also, is he running any AV? If so, have him uninstall it. It might be responsible for this behavior. (There are no viruses for OS X.)

  • When Will these two things be released?

    Hello there. I have an iPod Touch 16GB. I was wondering if anybody knew what the release date was for these two things(if they are released).
    1.iPhone & iPod Touch SDK for Windows
    2.iPod Touch 2.0 Upgrade
    If anybody Knows the release date(s), Please tell me.
    Thanks,
    Christian

    "In fact-if I knew anything about coding I would go out and develop it myself just to prove you wrong. :P"
    But you don't!
    And even if you did, it would be in the same camp as the jailbreakers as Apple, from what I understand, requires you to go through them to get apps distributed, and I am more than sure that they will pull up the whole quality issue when they tell you that your app developed on your homebrew SDK app will not be distributed. Kind of ironic from a company that has the history of Apple, eh?
    "I generally avoid claiming something will never occur in the entire length of human existence."
    Oh, I see where you are going with this. The cat is neither alive nor dead. It does not exist as it has not been observed. Unless the cat in question lives in a black bag aboard a ship in the Colonial Fleet. That one was dead even when it was in scene, apparently.

  • Two Things - Links and Text

    So there are two things that drive me crazy when using Muse, both of which are a huge inconvenience to the site builder and the customer:
    1 - All text is automatically turned into image when lived.
    2 - You can't link text directly in a paragraph. You have to leave an empty space and then try to line up an individual menu link with the text.
    I really hope the newer versions of MUSE fix this. Or is there a way to avoid these problems that I'm not aware of?

    Hello HWheeler,
    I posted this information on your idea as well, but I will address it here so others can see it.
    Likely if the text is being turned into an image, you are using a non-websafe font. Muse does this to ensure that all users will see it the same, regardless of whether or not the user has that font installed. Using web-safe fonts (on the web-safe font list) allow you to export the item as text, which can be selected, copy/pasted, etc.
    Likely, this issue stems from the first. Using a websafe font, you can select the text you want to turn into a link, and then in the control strip (just above the page) use the Hyperlink box to link the text to an URL or page you'd like.
    Regards,

  • Two things came with my Firefox when I downloaded it. Speed Dial and Xmarks. When I start the program it locks up and I have to just shut it down. How can I delete them? I only want the Firefox.

    When I downloaded Firefox I had two things download with it. Speed Dial and Xmarks. I don't know about either and don't want them. I cannot delete them alone it seems. When it all loads it locks my computer up totally. I cannot x out of anything. Just kind of "thunks" with a dead sound. My facebook applications runs better on Firefox but I can't seem to get it downloaded alone. What am I doing wrong? I do not want the speed dial for sure. Don't know about the Xmarks.

    Where did you download Firefox from?
    The official Firefox download doesn't come with either of those addons.
    http://www.mozilla.com/en-US/firefox/
    or
    http://www.mozilla.com/en-US/firefox/all.html

  • TS1538 ipad does not come on once its unpluged from power source,it enters recovery mode when both power and home botton are pressed with usb on powersource but does not come up at all when connected to computer or out of power source

    ipad does not come on once its unpluged from power source,it enters recovery mode when both power and home botton are pressed with usb on powersource but does not come up at all when connected to computer or out of power source

    What model iPad do you have? If it's an iPad 1, the battery may have expired and needs replacement.
     Cheers, Tom

Maybe you are looking for