How do I enable tabs in safari5.0.5

The tab bar shows the page I am viewing. However the previous tabs have disappeared. I have tabs "enabled' in preferences and "show tab bar" in view.
The only recourse is to back arrow to the previous page. Any help is appreciated.

From your Safari menu bar click Help then click Safari Help.
Type in    tabs      in the search field top right corner of the window.
Select: Browsing in tabs
Results should give you a better idea of how tabbed browsing works in Safari.
If you click on a tab that is already open and it disappears, go to your Safari menu bar, click Safari / Empty Cache. Quit then relaunch Safari to test. Emptying the cache may help,
If not, quit Safari. Open a Finder window. Select your Home Folder in the Sidebar on the left. It has a small house icon. Then open the Library folder then the Preferences folder. Move the com.apple.Safari.plist file from the Preferences folder to the Desktop. Now launch Safari. If tabs function as they should, move the .plist file to the Trash. If not, move it back to the Preferences folder.

Similar Messages

  • I have a Verizon IPhone 4 and i can't figure out how to get my ringtones from an app to my iTunes account, it doesn't have a tab for Ringtones! I have tried unplugging it and checking if would show up but it didn't, how do you enable the ringtone folder?

    I have a verizon IPhone and i can't figure out how to get my ringtones from the app to iTunes, my account doesn't have a ringtone section in the liRingtone Folder?brary, how do you enable the ringtone folder?

    Edit > Preferences.  Select the check box for Ringtones, this will add them to the listing in iTunes. 
    Not sure that really answers your question though.

  • I am trying to save a mp3 file but firefox does not allow me to save it...it allows me to play the file but not download and asave it to my computer. How do I enable it to save mp3 files on my computer?

    I am trying to save a mp3 file but firefox does not allow me to save it...it allows me to play the file but not download and asave it to my computer. How do I enable Firefox to save mp3 files on my computer?

    Go to Options>Applications tab > search MPEG Layer 3 audio(audio/mpeg) > use "Save File" option on drop down menu.

  • How to get "tones" tab  in drop down menu

    how to get "tones" tab  in drop down menu

    I assume that you are referring to the categories on your iTunes library (?), if you are then go into Edit > Preferences and on the General tab make sure that Tones is ticked
    You can also enable the left-hand sidebar on iTunes 11 on a PC via control-S, which then allows you to view the sections of your library (those enabled in Preferences) via that sidebar, and if you have iOS devices they will also show on that sidebar when connected.

  • How to disable CHARGES tab in Find Sevice Requests(CSXSRISR.fmb / CSXSRISV)

    could any one please let me know how to disable CHARGES tab in Find Sevice Requests ( CSXSRISR.fmb, but funtion registered is CSXSRISV).
    Actually when i access the "Create Service Requests" menu option, the form comes up with a the three TABS (Charges , Work Orders & Maint Req) visible but disabled. But when i access the same from "Find Service Request" menu option, i get the Charges TAB enabled but not the other two... so i would need to visibilly disable the CHARGES TAB like the other two tabs.
    I checked the subfunctions but i could not find any.... i could only find Update Charge and Create Charge options but not the Visible option.

    Hi...
    The Charge Tab in SR form gets enabled only after SR No. Generation.
    So initially when you open the Service Request form the Charges Tab will be visible but disabled, & once the SR number is generated the same gets enabled.

  • How to disable CHARGES tab in Find Sevice Request ( CSXSRISR.fmb ).

    could any one please let me know how to disable CHARGES tab in Find Sevice Requests ( CSXSRISR.fmb, but funtion registered is CSXSRISV).
    Actually when i access the "Create Service Requests" menu option, the form comes up with a the three TABS (Charges , Work Orders & Maint Req) visible but disabled. But when i access the same from "Find Service Request" menu option, i get the Charges TAB enabled but not the other two... so i would need to visibilly disable the CHARGES TAB like the other two tabs.
    I checked the subfunctions but i could not find any.... i could only find Update Charge and Create Charge options but not the Visible option.

    Hi...
    The Charge Tab in SR form gets enabled only after SR No. Generation.
    So initially when you open the Service Request form the Charges Tab will be visible but disabled, & once the SR number is generated the same gets enabled.

  • How do I enable the Java Accessibilty Stuff?

    Hi. I'm trying to make my application accessible via a screen reader to impaired users. Unfortunately, I'm not having any success whatsoever. If I didnt know Java had accessibility stuff built-in, I would assume that it was just not compatible at all with screen reader technology.
    How do I enable the Java accessibility stuff so that UI components are accessible to a screen reader; they can be iterated over and get sensible names and/or descriptions of them?
    I wrote a simple application, attached below, which just makes a demo UI from which I can start learning the basics of the accessibility stuff. Out of the box, the UI is completely opaque to a screen reader (I'm using the VoiceOver utility bundled with Mac OS X, which does ok with normal applications).
    I tried setting things focusable to no avail, voice over cant cycle through the UI component using the normal keyboard short cuts, and nothing is spoken when I tab between components, despite some things having natural labels, like a menu, and some things, like the button, where i've set the accessible name and description on the accessible context of the component.
    Obviously, I'm doing something wrong or I just don't understand how the accessibility stuff works.
    Could someone please shed some light on this so that I can make my application accessible to a screen reader?
    Thanks.
        private static void try508Example() {
            JFrame aFrame = new JFrame();
            JMenuBar aMenuBar = new JMenuBar();
            JMenu aMenu = new JMenu("Test");
            aMenu.setMnemonic(KeyEvent.VK_T);
            JMenuItem aItem1 = new JMenuItem("Test Item 1");
            aItem1.setFocusable(true);
            aItem1.getAccessibleContext().setAccessibleName("Test Item 1");
            aItem1.getAccessibleContext().setAccessibleDescription("Test Item 1 Description");
            JMenuItem aItem2 = new JMenuItem("Test Item 2");
            JMenuItem aItem3 = new JMenuItem("Test Item 3");
            aMenu.add(aItem1);
            aMenu.add(aItem2);
            aMenu.add(aItem3);
            aMenuBar.add(aMenu);
            aFrame.setJMenuBar(aMenuBar);
            JTabbedPane aTabPanel = new JTabbedPane();
            aTabPanel.setFocusable(true);
            JTextArea aTab1Comp = new JTextArea();
            JScrollPane aTab2Comp = new JScrollPane(new JTree());
            aTabPanel.addTab("Tab1", aTab1Comp);
            aTabPanel.addTab("Tab2", aTab2Comp);
            JTree aTree = new JTree();
            aTree.setFocusable(true);
            JLabel aLabel = new JLabel("some label");
            aLabel.setLabelFor(aTree);
            aLabel.setFocusable(true);
            JScrollPane aScrollList = new JScrollPane(new JList());
            aScrollList.setFocusable(true);
            JButton aBtn = new JButton("Button");
            aBtn.setFocusable(true);
            aBtn.getAccessibleContext().setAccessibleName("Button Name");
            aBtn.getAccessibleContext().setAccessibleDescription("Button Description");
            JPanel aContent = new JPanel(new BorderLayout());
            aContent.add(aTabPanel);
            aContent.add(aBtn, BorderLayout.NORTH);
            aContent.add(aScrollList, BorderLayout.EAST);
            aContent.add(aTree, BorderLayout.WEST);
            aContent.add(aLabel, BorderLayout.SOUTH);
            aFrame.setContentPane(aContent);
            aFrame.setSize(640, 480);
            aFrame.setVisible(true);
            aFrame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        }

    Ok, so a very curious issue. If I comment out adding the menu bar to the window, ie comment out this line:
    aFrame.setJMenuBar(aMenuBar);
    The screen reader reads me back everything just like I would expect. I comment the line back in, and nothing, the application is completely invisible to the screen reader.
    Anyone have any idea what this is about?

  • How can I enable Tor in Firefox 5?

    How can I enable T0r in Firefox 5?

    How can I enable Tor in Firefox 5?
    1) Install "Stable Vidalia Bundle works with Windows 7, Vista, XP, [https://www.torproject.org/dist/vidalia-bundles/vidalia-bundle-0.2.1.30-0.2.12.exe Download Stable] (sig)
    2)In Firefox 5 '''"Tools" menu > "Advanced" toolbar > "Network" Tab > "Settings" button''''', follow the 1st image (Manual proxy configuration:) then the 2nd image (Auto-detect proxy setting for this network:) and then "Ok".
    3) Be sure that "Tor" network is connected. Now you can install the "Torbutton" by selecting
    Install Stable: [[Click to install from this website|https://www.torproject.org/dist/torbutton/torbutton-current.xpi]].
    Welcome to Tor in Firefox 5 :)

  • How do I enable already installed adobe flash?

    My computer is equipped with adobe flash, but I am directed to download adobe when I try to play games; such as zynga poker. How can I enable the program?

    I hope it is ok I jumped onto this thread of the original poster.
    I have confirmed that I have the latest Adobe Flash Player 11.9.900.117
    Computer is an approx. 9 month old corei7, quadcore, Intel with Norton....
    My recent observations and actions in order of occurance:
    1).  Some sites would play ok and other sites would not since: 8.1 update & Toshiba updates related to 8.1 installed.
    Example: previously played videos but does not now in IE11:
    http://www.cbc.ca/player/
    Example still plays ok: http://www.ctv.ca/DrOz.aspx?vp=140274
    2).  I removed Adobe Flash Player. Restarted computer. Tried IE11 and the sites that would play video before do not play now.
    3).  Downloaded and installed FireFox. Restarted computer.
    4).  Downloaded & installed Adobe Flash Player. Restarted computer.
    5).  IE11 same results as 1).
    6).  Firefox plays same sites as in 1). plus some sites that IE11 would not but not all.
    -  at a specific site such as http://www.cbc.ca/player/    some videos play and other will not. Before 8.1 all played ok.
    -  will play:  http://www.cbc.ca/player/Shows/ID/2414463492/
    -  will not play:  http://www.cbc.ca/player/Shows/ID/2414212635/
    7).   While typing this and flipping between 3 tabs in Firefox and with a video playing Firefox locked up. The mouse produced no results anywhere on the screen within the Firefox window (could not: minimze page, select a tab, right click...). I could still hear the video playing. After about 5 minutes I restarted the computer. And continue here.
    8).  While watching, via Firefox, a tv video at approximately the 10 minute mark the video screen goes black in colour but the sound contiues.
    I refreshed the site and all is ok now with this specific video.
    IKan

  • On a Mac, how do I close tabs or windows where dialogs have popped up trying to download malware and you cannot close them?

    On a Mac, how do I close tabs or windows where dialogs have popped up trying to download malware and you cannot close them? I think it's Ctrl+F4 on a PC. I would like to close just these tabs or windows instead of having to quit the whole firefox program.

    The equivalent of Control+F4 is Command+W, I have not tried it but you may still get the alert boxes when closing a tab using this method.
    The AlertCheck add-on can be used to block the infinite loops such as this - https://addons.mozilla.org/firefox/addon/alertcheck - This functionality is built into Firefox 4.
    An alternative method in Firefox 3.6.* is to temporarily turn off JavaScript. Open the Firefox preferences window, go to the Content panel and de-select the setting "Enable JavaScript" then click OK. You will then be able to close the tab, and can then re-enable JavaScript.

  • HT204389 How do I enable SIRI in Mexico?

    Apple website says SIRI can be enabled in any country. I bought a 4S in Mexico and live here. How do I enable SIRI to work here? It does not show up in the Settings, General tab. I assume it will work only in English and that is fine. Thanks.

    As a result of this issue I did a lot of investigation and discovered that my phone is a 4, not a 4S as I thought. Essentially, I was defrauded by an employee of  the company, which has agreed to replace my phone and make it right. Thanks to everybody.

  • How do I enable the flip/flop image button in the geometry room?

    How do I enable the flip/flop buttons in the geometry room. A noob question to be sure, but I just can't figure it out. The buttons are grey, and won't respond when I click on them.
    I shot on the HVX using the brevis adaptor, so the footage is all upside down. In FCP I corrected this, but upon importing the project into Color, the images were upside down again. Do I need to re-flip them in color for the final output? Or will they automatically be subject to the effects already in my time line when I export back to FCP? Either way I'd like to temporarily flip them in Color so I don't have to stand on my head while color correcting.
    Anyone out there who can clue me in?

    Use FCP... the geometry in COLOR was never meant to be more than a convenience, sort of... Final Touch always ignored everything in the Motion tab until recently, with ambiguous results. Now one doesn't really know where the flips flops and flies are coming from unless you've done them yourself but I do notice that keyframed geometry-composed camera moves rarely import or export correctly, and interlace is poison.
    jPo

  • What Is "Silent Boot" And How Do I Enable It?

    Hey,
    I was wondering, My friend has an MSI MOBO, and when he turns his computer on, insead of listing all of that technical crap, it says in a full screen, MSI -- Link To The Future  he has an AMI Bios.
    I want my motherboard to say that too,  , so i was wondering how do you enable it....he has to press tab when he turns the computer on, but i tried that.  I have Phoenix Bios, maybe thats why  
    PLease help, ive also heard of it being called Silent Boot, but nothing in my users manual OR bios say that  
    HELP

    Crap, not in Advanced Chipset Features (It Says "Features" Phoenix  )
    Well, Thanks Anyway...
    Anyone Else Know?

  • HT1692 I do not have the invitee option when creating calendar events. How do I enable?

    I do not have the ability to invite others to a calendar event. I use Yahoo mail but not the Yahoo calendar. How can I enable the invitee tab?
    thanks,

    Are you running iOS 7?
    Apple has removed it in iOS7

  • How do i enable the spacebar?

    how do i enable the spacebar on my keypad for imac??
    and also..the tab key is not working.

    imac"27.brand new. starteditupyesterday...with an apple keypad.
    version10.9.2

Maybe you are looking for