Why does the scroll down menus don't work on my laptop at home but work when I'm on my laptop at work?

It's really weird. When I'm on my laptop at home, the scroll down menu appears but disappears in less than a second. When I bring my laptop to work and use the scroll down menus there, they appear and they don't disappear? It's very annoying that I can't use the menus at home, can someone help me?

The two things to try first are renewing your network lease, forgetting the network and if that doesn't work to reset all networks. You might have tried one of these but I'll repeat the steps just to make sure.
Settings > Wi-Fi > tap the blue arrow to the right of your network name > Renew Lease
If that doesn't work then
Settings > Wi-Fi > tap the blue arrow to the right of your network name > Forget this Network
If that doesn't work
Settings > General > Networks > Reset All Networks > then reset your iPhone by
Press and hold the Home and Sleep buttons simultaneously ignoring the red slider until the Apple logo appears. Let go of the buttons and let the device restart.
I hope one of these will help.

Similar Messages

  • Why does the export to word from adobe conversion tel me everytime their is a problem when I attempt

    Why does the new export from PDF to Word programme tell me evrytime that thier is a problem with the export?

    Hi Tony,
    Have you tried submitting your documents via the ExportPDF web interface: http://exportpdf.acrobat.com/signin.html ?
    Could you also open one of these files in Adobe Reader and choose File > Properties.  What does it say next to 'Application' and 'PDF Producer'?
    -David

  • Why does the scroll wheel stop working since version 3.6

    Ever since the installation of version 4.0 there has been an issue with the scroll wheel not working properly. For the most part it works but occasionally the wheel stops working and no longer scrolls the pages up and down. At this point I need to close out the browser and reopen.

    Thanks for the reply, I have checked my driver and shows it is up to date. I manually updated the driver again but as it was unzipping the files all the existing files were being replaced with files with the same build date so I'm pretty sure the mouse driver is up to date.
    Is IE Tab an addon for firefox? If so then I don't have it installed.

  • Why does the scroll sometimes not work?

    I know this question has been posted before, but my problem is slightly different. I have synpatics touchpad with my laptop. Sometimes, the touchpad scrolling does not work, but my actual wireless mouse scrolling works. Sometimes my wireless mouse scrolling does not work, but my touchpad scrolling works. Why does this happen? The problem itself is not consistent.
    The scrolling usually stops suddenly. Scrolling works perfectly fine for a webpage, but then it stops working during the middle of my scrolling. This problem started to bug me.
    The problem still exists with Firefox reinstalled and without add-ons.

    Does this happen on another browser? (eg. Chrome, IE)

  • Why does the scroll mouse freez when opening a pdf file in the browser?

    My scroll mouse is freezing each time I opened a pdf file in different tab in the browser. When I close the tab (that open a pdf file), the scroll mouse back to normal.
    I use foxit to read a pdf file. I dont know if the problem occur when you use adobe product.

    Kaliber wrote:
    Before proceeding you must first launch Adobe Acrobat and accept the Enduser license agreement.
    And, did you do that?  The message will no longer occur once you opened Adobe Reader & accept the EULA.

  • Why does the scroll disapear?

    Hello,
    The initial state of this program is what I want.
    But after I press on the "expand" / "collapse" the horizontal scroll disapears.
    If I do manual resizing the scroll shows up.
    What is wrong?
    import javax.swing.*;
    import javax.swing.table.AbstractTableModel;
    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    public class FixedColumnExample extends JFrame {
        Object[][] data;
        JTable[] tables = new JTable[3];
        JPanel panel = new JPanel() {
            public Dimension getPreferredSize() {
                //Dimension dimension = super.getPreferredSize();
                double height=0;
                double width=0;
                for (int i =0; i < getComponentCount(); i++){
                    height += getComponent(i).getPreferredSize().getHeight();
                    width = Math.max(width, getComponent(i).getPreferredSize().getWidth());
                return new Dimension((int)width, (int)height);
        public FixedColumnExample() {
            super("Fixed Column Example");
            setSize(400, 200);
            data = new Object[][]{{"1", "11", "A", "1", "1", "1", "1", "1"},
                    {"2", "22", "2", "B", "2", "2", "2", "2"},
                    {"3", "33", "3", "3", "C", "3", "3", "3"},
                    {"4", "44", "4", "4", "4", "D", "4", "4"},
                    {"5", "55", "5", "5", "5", "5", "E", "5"},
                    {"6", "66", "6", "6", "6", "6", "6", "F"}};
            panel.setLayout(new BoxLayout(panel, BoxLayout.PAGE_AXIS));
            for (int i = tables.length - 1; i >= 0; i--) {
                addTable(i);
            adjustTablesWidth();
            getContentPane().add(panel);
            pack();
        public void pack() {
            super.pack();    //To change body of overridden methods use File | Settings | File Templates.
            setSize(500, (int) getSize().getHeight());
        private void addTable(final int currTable) {
            AbstractTableModel fixedModel = new AbstractTableModel() {
                public int getColumnCount() {
                    return 2;
                public int getRowCount() {
                    return data.length - currTable;
                public Object getValueAt(int row, int col) {
                    return data[row][col];
            AbstractTableModel model = new AbstractTableModel() {
                public int getColumnCount() {
                    return data[0].length - 2 - currTable;
                public int getRowCount() {
                    return data.length - currTable;
                public Object getValueAt(int row, int col) {
                    return data[row][col + 2];
                public void setValueAt(Object obj, int row, int col) {
                    data[row][col + 2] = obj;
                public boolean CellEditable(int row, int col) {
                    return true;
            tables[currTable] = new JTable(model) {
                public Dimension getPreferredScrollableViewportSize() {
                    Dimension dimension = super.getPreferredSize();
                    //System.out.println("table - " + dimension.getWidth());
                    return dimension;
            tables[currTable].setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
            tables[currTable].setTableHeader(null);
            JScrollPane scroll = new JScrollPane(tables[currTable]) {
                public Dimension getPreferredSize() {
                    Dimension dimension = super.getPreferredSize();
                    dimension.setSize(dimension.getWidth(), dimension.getHeight() + getHorizontalScrollBar().getPreferredSize().getHeight());
                    //System.out.println("scroll - " + dimension.getWidth());
                    return dimension;
            JViewport viewport = new JViewport();
            JTable fixedTable = new JTable(fixedModel);
            fixedTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
            viewport.setView(fixedTable);
            viewport.setPreferredSize(fixedTable.getPreferredSize());
            scroll.setRowHeaderView(viewport);
            JPanel content = new JPanel();
            content.setLayout(new BoxLayout(content, BoxLayout.PAGE_AXIS));
            content.add(scroll);
            panel.add(new CollapsiblePanel(content, this));
        private void adjustTablesWidth() {
            int result = getMaxTableWidth();
            for (int i = 0; i < tables.length; i++)
                if (result != (int) tables.getPreferredSize().getWidth())
    tables[i].setPreferredSize(new Dimension(result, (int) tables[i].getPreferredSize().getHeight()));
    private int getMaxTableWidth() {
    int result = 0;
    for (int i = 0; i < tables.length; i++) {
    result = Math.max(result, (int) tables[i].getPreferredSize().getWidth());
    return result;
    public static void main(String[] args) {
    FixedColumnExample frame = new FixedColumnExample();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    frame.setVisible(true);
    public class CollapseButton extends JButton implements ActionListener {
    private Collapsible _collapsible;
    public CollapseButton(Collapsible collapsible, int orientation) {
    super();
    _collapsible = collapsible;
    setRolloverEnabled(true);
    setFocusPainted(false);
    setDefaultCapable(false);
    setBorder(null);
    setBorderPainted(false);
    setMargin(new Insets(0, 0, 0, 0));
    setToolTipText("Collapses/Expands Panel");
    if (orientation == SwingConstants.VERTICAL) {
    setText("collapse ");
    } else {
    setText("expand ");
    addActionListener(this);
    public void actionPerformed(ActionEvent evt) {
    if (_collapsible.isCollapsed())
    _collapsible.expand();
    else
    _collapsible.collapse();
    public class CollapsiblePanel extends JPanel implements Collapsible {
    private boolean _collapsed = false;
    private JPanel _content;
    private JFrame containingFrame;
    private CollapseButton _collapseHorizontalButton;
    private CollapseButton _collapseVerticalButton;
    public CollapsiblePanel(JPanel content, JFrame containingFrame) {
    _content = content;
    this.containingFrame = containingFrame;
    // Set layout direction
    setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
    setBackground(Color.red);
    _collapseHorizontalButton = new CollapseButton(this, SwingConstants.HORIZONTAL);
    _collapseVerticalButton = new CollapseButton(this, SwingConstants.VERTICAL);
    expand();
    public boolean isCollapsed() {
    return _collapsed;
    public boolean isCollapsible() {
    return collapsible;
    * Collapses the panel.
    public void collapse() {
    setVisible(false);
    removeAll();
    add(_collapseHorizontalButton);
    _collapsed = true;
    revalidate();
    containingFrame.pack();
    setVisible(true);
    * Uncollapses the panel.
    public void expand() {
    setVisible(false);
    removeAll();
    add(_collapseVerticalButton);
    add(_content);
    _collapsed = false;
    revalidate();
    containingFrame.pack();
    setVisible(true);
    public Dimension getPreferredSize() {
    Dimension dimension = super.getPreferredSize();
    if (isCollapsed()) {
    dimension.setSize(containingFrame.getSize().getWidth(), dimension.getHeight());
    } else {
    return dimension;

    I do my set size because I want a fixed width and variable height.
    Sorry for not including the Collapsible, this is the full program.
    import javax.swing.*;
    import javax.swing.table.AbstractTableModel;
    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    public class FixedColumnExample extends JFrame {
        Object[][] data;
        JTable[] tables = new JTable[3];
        JPanel panel = new JPanel() {
            public Dimension getPreferredSize() {
                //Dimension dimension = super.getPreferredSize();
                double height = 0;
                double width = 0;
                for (int i = 0; i < getComponentCount(); i++) {
                    height += getComponent(i).getPreferredSize().getHeight();
                    width = Math.max(width, getComponent(i).getPreferredSize().getWidth());
                return new Dimension((int) width, (int) height);
        public FixedColumnExample() {
            super("Fixed Column Example");
            setSize(500, 200);
            data = new Object[][]{{"1", "11", "A", "1", "1", "1", "1", "1"},
                    {"2", "22", "2", "B", "2", "2", "2", "2"},
                    {"3", "33", "3", "3", "C", "3", "3", "3"},
                    {"4", "44", "4", "4", "4", "D", "4", "4"},
                    {"5", "55", "5", "5", "5", "5", "E", "5"},
                    {"6", "66", "6", "6", "6", "6", "6", "F"}};
            panel.setLayout(new BoxLayout(panel, BoxLayout.PAGE_AXIS));
            for (int i = tables.length - 1; i >= 0; i--) {
                addTable(i);
            adjustTablesWidth();
            getContentPane().add(panel);
            pack();
        public void pack() {
            super.pack();    //To change body of overridden methods use File | Settings | File Templates.
            setSize(500, (int) getSize().getHeight());
        private void addTable(final int currTable) {
            AbstractTableModel fixedModel = new AbstractTableModel() {
                public int getColumnCount() {
                    return 2;
                public int getRowCount() {
                    return data.length - currTable;
                public Object getValueAt(int row, int col) {
                    return data[row][col];
            AbstractTableModel model = new AbstractTableModel() {
                public int getColumnCount() {
                    return data[0].length - 2 - currTable;
                public int getRowCount() {
                    return data.length - currTable;
                public Object getValueAt(int row, int col) {
                    return data[row][col + 2];
                public void setValueAt(Object obj, int row, int col) {
                    data[row][col + 2] = obj;
                public boolean CellEditable(int row, int col) {
                    return true;
            tables[currTable] = new JTable(model) {
                public Dimension getPreferredScrollableViewportSize() {
                    Dimension dimension = super.getPreferredSize();
                    //System.out.println("table - " + dimension.getWidth());
                    return dimension;
            tables[currTable].setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
            tables[currTable].setTableHeader(null);
            JScrollPane scroll = new JScrollPane(tables[currTable]) {
                public Dimension getPreferredSize() {
                    Dimension dimension = super.getPreferredSize();
                    dimension.setSize(dimension.getWidth(), dimension.getHeight() + getHorizontalScrollBar().getPreferredSize().getHeight());
                    //System.out.println("scroll - " + dimension.getWidth());
                    return dimension;
            JViewport viewport = new JViewport();
            JTable fixedTable = new JTable(fixedModel);
            fixedTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
            viewport.setView(fixedTable);
            viewport.setPreferredSize(fixedTable.getPreferredSize());
            scroll.setRowHeaderView(viewport);
            JPanel content = new JPanel();
            content.setLayout(new BoxLayout(content, BoxLayout.PAGE_AXIS));
            content.add(scroll);
            panel.add(new CollapsiblePanel(content, this));
        private void adjustTablesWidth() {
            int result = getMaxTableWidth();
            for (int i = 0; i < tables.length; i++)
                if (result != (int) tables.getPreferredSize().getWidth())
    tables[i].setPreferredSize(new Dimension(result, (int) tables[i].getPreferredSize().getHeight()));
    private int getMaxTableWidth() {
    int result = 0;
    for (int i = 0; i < tables.length; i++) {
    result = Math.max(result, (int) tables[i].getPreferredSize().getWidth());
    return result;
    public static void main(String[] args) {
    FixedColumnExample frame = new FixedColumnExample();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    /*frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    frame.setVisible(true);
    public class CollapseButton extends JButton implements ActionListener {
    private Collapsible _collapsible;
    public CollapseButton(Collapsible collapsible, int orientation) {
    super();
    _collapsible = collapsible;
    setRolloverEnabled(true);
    setFocusPainted(false);
    setDefaultCapable(false);
    setBorder(null);
    setBorderPainted(false);
    setMargin(new Insets(0, 0, 0, 0));
    setToolTipText("Collapses/Expands Panel");
    if (orientation == SwingConstants.VERTICAL) {
    setText("collapse ");
    } else {
    setText("expand ");
    addActionListener(this);
    public void actionPerformed(ActionEvent evt) {
    if (_collapsible.isCollapsed())
    _collapsible.expand();
    else
    _collapsible.collapse();
    public class CollapsiblePanel extends JPanel implements Collapsible {
    private boolean _collapsed = false;
    private JPanel _content;
    private JFrame containingFrame;
    private CollapseButton _collapseHorizontalButton;
    private CollapseButton _collapseVerticalButton;
    public CollapsiblePanel(JPanel content, JFrame containingFrame) {
    _content = content;
    this.containingFrame = containingFrame;
    // Set layout direction
    setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
    setBackground(Color.red);
    _collapseHorizontalButton = new CollapseButton(this, SwingConstants.HORIZONTAL);
    _collapseVerticalButton = new CollapseButton(this, SwingConstants.VERTICAL);
    expand();
    public boolean isCollapsed() {
    return _collapsed;
    public boolean isCollapsible() {
    return collapsible;
    * Collapses the panel.
    public void collapse() {
    setVisible(false);
    removeAll();
    add(_collapseHorizontalButton);
    _collapsed = true;
    revalidate();
    containingFrame.pack();
    setVisible(true);
    * Uncollapses the panel.
    public void expand() {
    setVisible(false);
    removeAll();
    add(_collapseVerticalButton);
    add(_content);
    _collapsed = false;
    revalidate();
    containingFrame.pack();
    setVisible(true);
    public Dimension getPreferredSize() {
    Dimension dimension = super.getPreferredSize();
    if (isCollapsed()) {
    dimension.setSize(containingFrame.getSize().getWidth(), dimension.getHeight());
    } else {
    return dimension;
    public interface Collapsible {
    final boolean collapsible = true;
    public void collapse();
    public void expand();
    public boolean isCollapsible();
    public boolean isCollapsed();

  • Why does the song i downloaded keep asking me to authorize it for my computer, and when i do it plays a differant song

    I downloaded Fast AS You from I-Tunes. When I click on it to play it a pop up box says I have to authorize the song for my computer and asks for my password. When I enter my pass word it plays 6th Avenue Heartache. Over and over, even after a reboot it does the same thing. Any ideas?
    Thanks, Don

    Delete and redownload it if doing so is free in your country.
    (102451)

  • Why does the shut down box pop up?

    this is a new problem and seems unrelated to software running. if i don't see the box pop up and the machine begins to shut down on its own-i will come back to a blue screen and have to do a hard shut down. what I've done. unplugged everything and plugged back in. performed a hardware test-it's ok.
    booted in safe mode. repaired permissions. one thing I have not been able to do and that's boot up from the install disc or the tech tool disc. right now, I'm creating a bootable backup on an external drive using synk standard
    any suggestions?

    it happens with the keyboard disconnected. I was surprised it booted up without going through the user screen so I didn't have to enter my password.
    and on another note, I'm sure it's obvious, but how do I boot up from my external drive with my imac? the other day when I was having serious issues while trying to fix this problem, I was unable to boot from my install disc
    thanks so much for your time

  • Why does the menu look grayed out? ("File, Edit, View, History" etc) It makes them look like they are not going to work. They don't turn black if I click on them either.

    Normally, at least in most Windows programs, and I think other OSes too, items that can be used are black, and items in gray are inactive so that they are not available. It's disconcerting to see the menu in gray, even though they work.

    Hi Melaniefromnorth saanich,
    Take a look at the Photos User Manual below.  Is it possible you were deleting photos from an album and not from your library?
    Delete photos and video - Photos Help
    https://help.apple.com/photos/mac/1.0/index.html#/pht3bfab2f96
    Delete photos and videos
    Do one of the following:
    Delete a photo from an album, but not from your library: Select the items you want to delete, then press Delete.
    Delete a photo from a moment (placing it in the Recently Deleted album): Select the items you want to delete, press Delete, then click Delete.
    Delete a photo from a moment or album (placing it in the Recently Deleted album): Select the items you want to delete, then press Command-Delete.
    Deleted photos and video aren’t immediately removed from your library; they’re placed in the Recently Deleted album, where they remain for the number of days shown, and then are deleted. You can recover the items before that period of time (see the next task). If you have iCloud Photo Library turned on, the photos may remain in iCloud up to 40 days and then are removed from all your devices that use iCloud Photo Library. If you’re not using iCloud Photo Library, your deleted photos are removed from your Mac only.
    Restore recently deleted items
    Deleted items remain in the Recently Deleted album for the number of days shown, and then are deleted permanently. You can view recently deleted items and restore them back into your Photos library.
    Choose File > Show Recently Deleted.
    Select the photos you want to restore.
    Click Recover.
    To delete recently deleted items immediately, select the items, then click Delete.
    If you use Time Machine to back up your computer, you may be able to recover items after they are deleted permanently from your Mac or iCloud.
    For more information on using Time Machine, see Restore a Photos library from a Time Machine backup.
    Hope that helps,
    - Judy

  • Pull Down Menus Don't Work Since New Muse update

    I have only just updated adobe Muse and the pull down menus don't work on my website anymore!
    Can someone help me?

    Hi
    Please share the site url , also if you have made any changes to menu before publish/update the site then please revert back the changes and then check.
    Make sure the menu type is all pages.
    Thanks,
    Sanjit

  • Why does the ringer volume display frequently on 3gs

    Why does the ringer volume keep displaying on my 3gs? Seems it may do this when the phone is picked up or shaken.

    This just happened to me today. The ringer volume display just remains on screen. Tried hard rese, nothing. It happened right after I dropped my 3GS - of which I've done many times but had not affected it because of the silicone case taking the brunt of the shock. Hope someone has a solution to this.

  • Why is "erase junk mail" de-highlighted in the drop down menus.  I'm not able to delete my junk mail box without doing each one individually.  Simple, but please someone help with an answer.  Thanks.

    why is "erase junk mail" de-highlighted in the drop down menus.  I'm not able to delete my junk mail box without doing each one individually.  Simple, but please someone help with an answer.  Thanks.

    My daughter has had her Razr for about 9 months now.  About two weeks ago she picked up her phone in the morning on her way to school when she noticed two cracks, both starting at the camera lens. One goes completely to the bottom and the other goes sharply to the side. She has never dropped it and me and my husband went over it with a fine tooth comb. We looked under a magnifying glass and could no find any reason for the glass to crack. Not one ding, scratch or bang. Our daughter really takes good care of her stuff, but we still wanted to make sure before we sent it in for repairs. Well we did and we got a reply from Motorola with a picture of the cracks saying this was customer abuse and that it is not covered under warranty. Even though they did not find any physical damage to back it up. Well I e-mailed them back and told them I did a little research and found pages of people having the same problems. Well I did not hear from them until I received a notice from Fed Ex that they were sending the phone back. NOT FIXED!!! I went to look up why and guess what there is no case open any more for the phone. It has been wiped clean. I put in the RMA # it comes back not found, I put in the ID #, the SN# and all comes back not found. Yet a day earlier all the info was there. I know there is a lot more people like me and all of you, but they just don't want to be bothered so they pay to have it fix, just to have it do it again. Unless they have found the problem and only fixing it on a customer pay only set up. I am furious and will not be recommending this phone to anyone. And to think I was considering this phone for my next up grade! NOT!!!!

  • Why does the swiping not work to scroll down the screen

    why does the swiping not work to scroll down the screen or swipe from side to side

    Thank you for the reply. But can you tell me what this configuration is about and how I should do this?

  • Why does the down arrow button scroll content up?

    The new logic/behavior with swiping up/down is now: "you are moving the content, not the scrollbar"
    I can accept this as a somewhat good logic. It makes sense..
    But should'nt the arrow keys behave the same way to make this behavior/logic consistent?
    The arrow key down still scrolls the content up (if you think like that)
    Or does the arrow keys scroll the scroller down.. Well which is it?

    That would change the trackpad behavior, which is not what I'm looking for, but thank you
    I'm just asking about the arrow keys and the logic behind the new natural navigation

  • Why does the tab bar on my iPad 2 disappear when I swipe down? How can I lock it in place?

    Why does the tab bar on my iPad 2 using IO8 disappear when I swip down? Its annoying. I have to tap the top of the screen to view my open tabs.
    why did Apple switch the position of the bookmarks icon and the favorites icon. Now I tap the wrong one.

    There isn't a setting to stop the tab bar automatically hiding (or I haven't found one), and as to why the icons were moved I don't think that Apple have said. If you want to leave feedback for Apple then you can do so here : http://www.apple.com/feedback/ipad.html

Maybe you are looking for

  • I tried to update my iTunes but it failed to complete, now I keep getting an error message MSCVR80.dll is missing

    I tried to update my iTunes as prompted but it failed to complete. I tried downloading again and although it says it is complete, when I try to open iTunes I get an error message saying that the program can't start because MSVCR80.dll is missing. Doe

  • 4.1.2 speed

    I am rendering some HD video in a 1920x1080 format 30fps 4.5gb an hour.   I have an Imac i7 3.4 with 28GB of ram and a macpro 2.9 i7 with 8gb With both of them rendering a video it takes almost two days to complete a one hour video.  Is this a normal

  • Date related Issue...

    Hi, i have a drop down which shows month and year like Jan07,Feb07,Mar07,Apr07...Dec07. in the backing bean using the item seleted i want to create a date. for example if May07 is selected i want to get it as 1-may-07 in java.util.Date format. Help m

  • Adding Device support/definitions in Ciscoworks LMS 3.2

    Hi All I am having some issues adding updated definitions for Cisco C3750X-48PS switches. We have ciscoworks LMS 3.2 and I need to update the definition/device support for these switches. We are conducting a network refresh and are having some issues

  • Bug - User Account - Tied to PC Settings "App"

    Accounts, or at least the main administrator account, are tied to the PC Settings App Upon removing the PC Settings Application, there are certain commands that still require the app rather than running in the Windows GUI. This results in a silent fa