Why does my screensaver not kick in when I am using Firefox?

I have a new pc, a pavilion using windows 7. I have set my screensaver to engage after 2 minutes and it does when I am using explorer, but it does not when I use firefox. Is there something in browser settings that I need to change? If so, how do I do that?

Hard to say.. But...
Try This...
Close All Open Apps...  Perform a Reset... Try again...
Reset  ( No Data will be Lost )
Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
http://support.apple.com/kb/ht1430
If no joy...
Connect to iTunes on the computer you usually Sync with and “ Restore “...
http://support.apple.com/kb/HT1414

Similar Messages

  • Why does the page not move smothe when i scroll?

    Why does the page not move smothe when i scroll?
    Sometimes it even move slower then i Scroll?
    I use a Mac and i have tried to reinstall the program.

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    In Firefox 4 [http://kb.mozillazine.org/Safe_mode Safe mode] disables extensions and disables hardware acceleration.
    * Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    See:
    * [[Troubleshooting extensions and themes]]

  • Why does my printer not warn me when my ink is low?

    Why  does my printer not warn  me when my ink is low?
    Before when I used HP control Center it warned me my ink was getting low. Since I instaled HP Conected I no longer get that message."My printer is a HP Deskjet 3050A J611series" 

    are you used original ink from hp ? 

  • Why does my iMac not shut down when I try to shut it down?

    Wh does my iMac not shut down, or restart when I try to do either.  It just sits there with the little loading circle continuously moving.  The only way I can shut it down is if I hold down the power button to shut it down.  Can anyone tell me why this is?
    Thanks!

    Open your Activity Monitor and check to see what is running?
    If there is some important Process running, then it is better to wait until it has finished instead of cutting the power and corrupting who knows what?
    If there is nothing important running, then follow the instructions in the link below for resetting the SMC.
    Intel-based Macs: Resetting the System Management Controller (SMC)

  • Why does my function not return anything when I create as a schema object

    I have user ABC who owns several tables some of which have foreign key constraints.
    I have user XYZ that has been granted access to all tables owned by user ABC.
    When I create a function as user XYZ using following I get no return when I issue:
    select XYZ.ztm_tables_depended_on('ABC', 'A_TABLE_OWNED_BY_ABC') from dual :
    Please see after function definition.
    CREATE OR REPLACE FUNCTION ZTM_TABLES_DEPENDED_ON(p_Owner VARCHAR2, p_Table_Name VARCHAR2) RETURN VARCHAR2 IS
      CURSOR C1 IS
      SELECT OWNER, CONSTRAINT_NAME, R_OWNER, R_CONSTRAINT_NAME
      FROM   ALL_CONSTRAINTS
      WHERE  OWNER           = p_Owner
      AND    TABLE_NAME      = p_Table_Name
      AND    CONSTRAINT_TYPE = 'R'
      ORDER  BY OWNER, CONSTRAINT_NAME, R_OWNER, R_CONSTRAINT_NAME;
      v_Referenced_Owner       VARCHAR2(31);
      v_Ret_Val                VARCHAR2(4000);
      FUNCTION CONSTRAINT_TABLE_NAME(p_Owner VARCHAR2, p_Constraint_Name VARCHAR2) RETURN VARCHAR2 IS
        CURSOR C1 IS
        SELECT TABLE_NAME
        FROM   ALL_CONSTRAINTS
        WHERE  OWNER           = p_Owner
        AND    CONSTRAINT_NAME = p_Constraint_Name;
        v_Ret_Val ALL_CONSTRAINTS.TABLE_NAME%TYPE;
      BEGIN
        OPEN  C1;
        FETCH C1 INTO v_Ret_Val;
        CLOSE C1;
        RETURN v_Ret_Val;
      END;
    BEGIN
      FOR R IN C1 LOOP
        IF (R.OWNER <> R.R_OWNER) THEN v_Referenced_Owner := R.R_OWNER || '.';
        ELSE                           v_Referenced_Owner := NULL;
        END IF;
        v_Ret_Val := v_Ret_Val || ', ' || v_Referenced_Owner || CONSTRAINT_TABLE_NAME (R.R_OWNER, R.R_CONSTRAINT_NAME);
      END LOOP;
      RETURN LTRIM(v_Ret_Val, ', ');
    END;
    But, if I embed the function within an anonymous block as follows, I get results:
    DECLARE
      CURSOR C1 IS
      select owner, table_name
      FROM   all_tables where owner = 'ABC';
      FUNCTION ZTM_TABLES_DEPENDED_ON(p_Owner VARCHAR2, p_Table_Name VARCHAR2) RETURN VARCHAR2 IS
        CURSOR C1 IS
        SELECT OWNER, CONSTRAINT_NAME, R_OWNER, R_CONSTRAINT_NAME
        FROM   ALL_CONSTRAINTS
        WHERE  OWNER           = p_Owner
        AND    TABLE_NAME      = p_Table_Name
        AND    CONSTRAINT_TYPE = 'R'
        ORDER  BY OWNER, CONSTRAINT_NAME, R_OWNER, R_CONSTRAINT_NAME;
        v_Referenced_Owner       VARCHAR2(31);
        v_Ret_Val                VARCHAR2(4000);
        FUNCTION CONSTRAINT_TABLE_NAME(p_Owner VARCHAR2, p_Constraint_Name VARCHAR2) RETURN VARCHAR2 IS
          CURSOR C1 IS
          SELECT TABLE_NAME
          FROM   ALL_CONSTRAINTS
          WHERE  OWNER           = p_Owner
          AND    CONSTRAINT_NAME = p_Constraint_Name;
          v_Ret_Val ALL_CONSTRAINTS.TABLE_NAME%TYPE;
        BEGIN
          OPEN  C1;
          FETCH C1 INTO v_Ret_Val;
          CLOSE C1;
          RETURN v_Ret_Val;
        END;
      BEGIN
        FOR R IN C1 LOOP
          IF (R.OWNER <> R.R_OWNER) THEN v_Referenced_Owner := R.R_OWNER || '.';
          ELSE                           v_Referenced_Owner := NULL;
          END IF;
          v_Ret_Val := v_Ret_Val || ', ' || v_Referenced_Owner || CONSTRAINT_TABLE_NAME (R.R_OWNER, R.R_CONSTRAINT_NAME);
        END LOOP;
        RETURN LTRIM(v_Ret_Val, ', ');
      END;
    BEGIN
      FOR R IN C1 LOOP
        DBMS_OUTPUT.PUT_LINE(ztm_tables_depended_on(R.Owner, R.Table_Name));
      END LOOP;
    END;
    Any ideas what is happening here?

    Any ideas what is happening here?
    Justin explained the probable reason.
    See the 'How Roles Work in PL/SQL Blocks' section of the database security doc for the details
    http://docs.oracle.com/cd/E25054_01/network.1111/e16543/authorization.htm#i1007304
    How Roles Work in PL/SQL Blocks
    The use of roles in a PL/SQL block depends on whether it is an anonymous block or a named block (stored procedure, function, or trigger), and whether it executes with definer's rights or invoker's rights.
    Roles Used in Named Blocks with Definer's Rights
    All roles are disabled in any named PL/SQL block (stored procedure, function, or trigger) that executes with definer's rights. Roles are not used for privilege checking and you cannot set roles within a definer's rights procedure.
    The SESSION_ROLES view shows all roles that are currently enabled. If a named PL/SQL block that executes with definer's rights queries SESSION_ROLES, then the query does not return any rows.
    Roles Used in Named Blocks with Invoker's Rights and Anonymous PL/SQL Blocks
    Named PL/SQL blocks that execute with invoker's rights and anonymous PL/SQL blocks are executed based on privileges granted through enabled roles. Current roles are used for privilege checking within an invoker's rights PL/SQL block. You can use dynamic SQL to set a role in the session.
    See that line starting with 'All roles are disables in any named PL/SQL block'?

  • Why does my blog not refresh itself when I open a new browser page?

    I add a new post to my blog. Sometimes it shows up in the browser. I close the browser, maybe....Today it has been about five days since I wrote a post. It still does not show up when I open my browser in Firefox. How do I refresh the browser? What should I do?

    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Firefox > Preferences > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Firefox > Preferences > Privacy > Cookies: "Show Cookies"

  • Why does Local Folders not show up when I install Thunderbird on certain computers?

    I've installed Thunderbird on my computer and it looks normal with "Local Folders" showing up in the left pane. I didn't add an email account, I just installed Thunderbird and an add-on called ImportExport tool and left it with only Local Folders. But when I try to do the same thing and install it on someone else's computer to help them import an .mbox file, when I install Thunderbird on their computer, "Local Folders" is not there. The left pane is just completely blank. And it looks like I can't import an .mbox file without it being there. I tried installing it on another laptop too and the same thing happened with no Local Folders. Why is "Local Folders" not showing up for these other two computers?

    I circumvented the problem by copying the c:\users\username\appdata\local\thunderbird folder and the c:\users\username\appdata\roaming\thunderbird folder from my working PC to the nonworking computers, and Local Folders appeared in Thunderbird on those computers. It seems like these files aren't being generated properly on installation.
    I tried uninstalling Thunderbird from my working PC and reinstalling it again to see what would happen (after also deleting those two appdata folders so that fresh ones would be created), and this time Local Folders did not appear on my PC as well. I don't think I did anything different during installation either. So I'm not sure why the Local Folders are no longer being generated at installation.

  • Why can't i log into youtube when i'm using firefox?

    I used to be able to log into my youtube account using firefox. Now I cannot. When I click on youtube's signin button it says loading for a moment and then returns to the page, I never get to the signin page. Oh, and yes I have a google+ acct.

    Reload the webpage while bypassing the cache
    *Hold down the ''Shift'' key and click the ''Reload'' button with a left click.
    *Press ''Ctrl'' + ''F5'' or ''Ctrl'' + ''Shift'' + ''R'' (Windows and Linux)
    *Press ''Command'' + ''Shift'' + ''R'' (Mac)
    Clear the cache and the cookies from sites that cause problems.
    '''Clear the Cache''': Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    '''Remove Cookies''' from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    The issue may be because of your corrupted cookie file (cookies.sqlite)
    Rename (or delete) cookies.sqlite (cookies.sqlite.old) and delete other present cookie files like cookies.sqlite-journal in the Firefox profile folder in case the file cookies.sqlite got corrupted.
    *http://kb.mozillazine.org/Cookies
    *https://support.mozilla.org/kb/Deleting+cookies
    You can also check if DOM Storage is enabled.
    *http://kb.mozillazine.org/dom.storage.enabled

  • Why does the circuit not simulate correctly when i put two circuits in the same design.

    Hi,
    I have two circuits that i can simulate in their own designs and they work correctly but when i put the two circuits within the same design, one circuit does not work. I don't understand why this is happening. Could someone please explain why this is happening and how to solve it please?
    Below is the circuit i'm attempting to simulate. Each little circuit is what i've made previously in their own designs.
    When i simulate each circuit in it's own design i get the following waveforms.
    When i simulate both of the circuits together i get the following waveforms. The yellow and red signals have been attached to the right hand side of the 10nF caps. The signals have also been offset.
    Thanks for any help.

    By the Multisim circuit file do you mean the .ms12 file? If so, i've attached a copy of it here.
    Attachments:
    NchPch togther.ms12 ‏185 KB

  • Why does my ipad not work properly when charging

    when my ipad is plugged to charger it does not work properly  goes crazy

    Not sure what 'goes crazy' means but it most likely should not do that.  Try a reset... press the home and sleep/lock buttons until you see the Apple logo, ignoring the slider. Takes about 5-15 secs of button holding and you won't lose any data or settings.
    Also try it plugged into another outlet (on another circuit) and/or try another charger.

  • Why does my iPhone5s not show up when I connect it with iTunes on Window 8?

    I am trying to sync my iPhone5s with my iTunes on my windows 8 laptop and it does not recognize it.
    It does recognise it on a windows 7 laptop?
    where can I find the right insturctions on how to sync it?

    both my ipod touch 4th gen and my iPad Air is not detected., i have tried checking the USB cables,. and the Apple Mobile Device (Stop/Start Service from Computer MAnagement) in Windows 8.1 iTunes 11.1.5 is not detecting the devices,., i have check already for all updates,. nothing happens.,., but WIndows does detect the devices only itunes does not

  • Why does the App Store open randomly when I'm using Safari?

    It simply opens the apps store to some game unprompted. It does it without me touching links. It happens without touching anything.
    And yes I have hard reset it and deleted cookies etc. I am not a fool.
    I have seen this question come up a lot and Apple have failed to acknowledge it. It's certainly common enough to be a known problem, so why are they ignoring it?

    This is happening because of bad ads on a site that you are visiting. These ads are designed to randomly redirect mobile device users to other sites or the App Store if the link is to an App. It has nothing to do with your iPad. The random nature of the re-directs is intended to confuse the user and keep this garbage below the radar.
    Turning OFF Javascript bypasses this problem because the mechanism implementing the redirects uses Javascript. This is not really a solution, however, because turning Off Javascript affects all sites and will certainly cause problems.
    Complain to the web site to get these ads removed. They may be unaware of the problem.
    There is no problem with your iPad.

  • Why does mac mini power shut down when trying to use external harddrive as boot drive?

    I connected a OWC Mercy Elite Pro external hard drive that has it's own power source to my mac mini. It's connected by firewire and I'm trying to use it as an external boot drive. The problem is when I have the power turned on the OWC before I turn the power on the mac mini, the mac powers up but then shuts down after about 30 seconds. However, if I wait to turn on the OWC power after the mac boots up there is no issue. Of course this defeats the purpose of using the OWC as a boot drive because it needs to be on before the mac boots up. I don't have any issues using another external hard drive as a boot drive that doesn't have a power source.

    Hmmm, very strange, could there be a ground loop where the OWC drive is plugged in?
    If you hold alt or option key at bootup, without the OWC drive, once the boot manager shows up connect the OWC drive, wait, does the OWC drive show up eventually as a boot choice, or what happens?

  • Why does my iPhone 5 get hot when I am using facetime?

    I notice that after I have been using facetime for calls for about 5 minutes, my phone gets really hot. Anyone notice this issue? Should I replace my device?

    you could set up a genius bar appointment, but this may happen, are you using wifi or 3g/lte? is it plugged in while you FaceTime?

  • Why does my ipod randomly colse apps when im still using them???

    Can anyone help?

    Apps crashing
    See:
    iOS: Troubleshooting applications purchased from the App Store
    Contact the developer/go to their support site if only one app.
    Restore from backup. See:
    iOS: How to back up              
    Restore to factory settings/new iPod

Maybe you are looking for

  • Hp scanjet 2200c driver issue

    I  have updated my OS to Windows 8.1, and in the new operating system, the scanjet 2200c is not working. I do not know , how to solve the issue. It is the responsibility of the manufacturer to update the drivers for the new version of windows. It is

  • Iphone hangingng after missed call

    My iphone sometimes after missed call in lock screen what is the solution knowing I wasn't face this problem in IOS 6

  • Code for singleton design pattern

    Hi, This is kalyan. Can u provide code for Singleton design pattern. Thanks in Advance

  • Cannot view PDFs with Reader (11.0.06) on Safari

    Hi there, For some reason I can't view PDFs in Safari. I just updated my Adobe Reader to version 11 because I went to look at a file on a website and got this screen (below) instead of the actual file. I've already tried moving and trashing the plug-

  • Oracle's BC4J

    Has any body looked at oracle's BC4J framework for J2EE development included in JDeveloper?? One major thing in this framework is that entity EJBs are totally eliminated and replaced by light weight objects because of the overhead associated with ent