Safari is now opening with multiple windows. Not sure what changed in my settings. I prefer Safari to open with a single homepage, which I've always set to Yahoo. Any help?

Safari is has begun opening with multiple windows. Not sure how this change happened. I prefer Safari to open with a single homepage, which I've always set to Yahoo. Any suggestions?

Quit the application. Force quit if necessary.
Relaunch it by holding down the shift key and clicking its icon in the Dock. From the menu bar, select
Safari ▹ Preferences... ▹ General ▹ New windows open with: Homepage

Similar Messages

  • Slow Preformance on HyperV VM's with IIS. Not sure what to change.

    Slow Preformance on HyperV VM's with IIS. Not sure what to change. Doesnt apear to be a Disc I/O issue. Seams to really on happen on VM's that are hosting a mostly static Intranet page. Also same thing happens on another VM that hosts an Apache site. both
    are not very large and VM's run on a Local storage space seperate from the OS and good I/O speed. Host Server gets good network speeds. I have the Host and the VM fully updated.
    Host Server is Windows 2012 and Hosts are Windows 2008r2
    I've gone thur the Hyper V Preformace Blogs and tried to apply all the hot fixes. but most I downloaded said it did not apply to our machine. So Not sure what the issue is.
    Bizquick

    Hi Bizquick,
    >> I did that and Step 4 if thats the case just a few minutes ago on one of the Host's I think I started to see an improvement. But not sure yet. Going to need more testing.
    Has the problem has been solved by disable offloads ?
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • EMail on my iPhone 4s is no longer synching right with my Mac. Things I delete on my Mac are still on my iPhone. HELP!  Deleting in both places is so time consuming. It has worked until recently...not sure what changed!

    Things I delete on my Mac are still on my iPhone. HELP!  Deleting in both places is so time consuming. It has worked until recently...not sure what changed!

    Your email provider may have changed certain settings to do with deleting from server when deleting from client so that it no longer works. Are you using pop or imap? If pop then recreate the account using imap.

  • I have CS6 and need to be able to utilize the open GL option but not sure what I need to do to make

    I have CS6 and need to be able to utilize the open GL option but not sure what I need to do to make this work...trying to bring a 3D pdf into photpshop for animation. Screen simply reads "enable 3D view'.

    my goal is to bring 3d solidworks drawing files into photoshop and animate. one export option is a 3d pdf file which opens and rotates well in Acrobat pro...but when trying to bring it into photoshop. It looks like the attached pic."enable 3d view"

  • Trouble with while loop, not sure what to put in it in my project

    I'm making a class to a simple command line craps game. I must use a while loop to implement craps rules. The rules that i was given are:
    if your first roll is a 4, 5, 6, 8, 9, or 10, you roll again until either you get a 7 (you lose) or you get the number from your first roll. (i thought 7 or 11 wins, like in the next example)
    yeah, thats right, not very good directions. The first directions i had for a different way of doing it using if and else statements were:
    The player rolls the two dice.
    If the sum of the resulting die values is 7 or 11, the player wins.
    If the sum is 2, 3, or 12, the player loses.
    If something else is rolled, the player has to roll again to determine the outcome.
    If the sum of the second roll is the same as what the player rolled the first time, the player wins. Otherwise the player loses.
    (You might get a pair of dice and play a few rounds to try it.)
    here's my code that i have so far for my craps class, in the middle section, i have previous code that i used for if else statements, that is what im trying to replace: package games;public class Craps {
    private Dice dice1;
    private Dice dice2;
    private int gamesPlayed;
    private int gamesWon;
    private boolean lastGameWon;
    private boolean gameOver;
    private int firstRoll;
    private int secondRoll;
    public Craps() {
    dice1 = new Dice(6);
    dice2 = new Dice(6);
    gamesPlayed = 0;
    gamesWon = 0;
    lastGameWon = false;
    firstRoll = 1;
    secondRoll = 2;
         //returns firstroll
    public int getFirstRoll(){
    return firstRoll;
         //returns secondroll
    public int getSecondRoll(){
    return secondRoll;
    public int getGamesPlayed(){
    return gamesPlayed;
    public int getGamesWon(){
    return gamesWon;
    public boolean lastGameWon(){
    return lastGameWon;
         public int nextSum()
         dice1.roll();
         dice2.roll();
         return dice1.getSideUp() + dice2.getSideUp();
    public void play()
              firstRoll = nextSum();
    if (firstRoll == 7 || firstRoll == 11)
              gameOver = true;
              gamesWon++;
              if (firstRoll == 2 || firstRoll == 3 || firstRoll == 12)
              gameOver = true;
                   else{
                   gameOver = false;
              while (gameOver == false)
              secondRoll++;
    public String toString()
    return "games - " + gamesPlayed + ", won - " + gamesWon + ", last game won - " + lastGameWon + " First Roll - " + firstRoll +
    ", Second Roll - " + secondRoll;
    i'm really confused on how to get the while loop will keep starting the game over if it is false, am i using the right approach? Also i have to use a while loop, its for a school project.
    thanks.

    The code you asked for could be:
    package games;
    public class Craps {
        private Dice dice1;
        private Dice dice2;
        private int gamesPlayed;
        private int gamesWon;
        private boolean lastGameWon;
        private boolean gameOver;
        private int firstRoll;
        private int secondRoll;
        public Craps()
            dice1 = new Dice(6);
            dice2 = new Dice(6);
            gamesPlayed = 0;
            gamesWon = 0;
            lastGameWon = false;
            firstRoll = 1;
            secondRoll = 2;
         //returns firstroll
        public int getFirstRoll(){
            return firstRoll;
         //returns secondroll
        public int getSecondRoll(){
            return secondRoll;
        public int getGamesPlayed(){
            return gamesPlayed;
        public int getGamesWon(){
            return gamesWon;
        public boolean lastGameWon(){
            return lastGameWon;
        public int nextSum()
            dice1.roll();
            dice2.roll();
            return dice1.getSideUp() + dice2.getSideUp();
        public void play() {
            gamesPlayed++;
            firstRoll = nextSum();
            if (firstRoll == 7 || firstRoll == 11)
                gamesWon++;
                lastGameWon = true;
            else if (firstRoll == 2 || firstRoll == 3 || firstRoll == 12)
                lastGameWon = false;
            else
               secondRoll = nextSum();
               if (firstRoll == secondRoll)
                  gamesWon++;
                  lastGameWon = true;
               else
                  lastGameWon = false;
        public String toString()
            return "games - " + gamesPlayed + ", won - " + gamesWon + ", last game won - " + lastGameWon + " First Roll - " + firstRoll +
                    ", Second Roll - " + secondRoll;
    }I'm not sure of craps rules, the code above makes a first roll and if game isn't won or lose at once (7 and 11 wins, 2,3 or 12 lose) a second roll is done. If the second roll is equals to the first made then the game is won else the game is lose. Is it right?

  • I was messing with the computer, not sure what i hit but now all my toolbars at the top of the screen are gone? (file, edit, history, tools and my forward and back button). Please help me get these settings back to the way they were?

    My file, edit, view, history, bookmarks, tools, and help buttons at the top of the screen are gone, along with my forward and back button.

    For details of how to restore it, see https://support.mozilla.com/kb/menu+bar+is+missing
    Once the menu bar is restored, you can use the Toolbars entry in the View menu to restore other toolbars such as the navigation toolbar.

  • Having problems with File IO, not sure what im doing or lack thereof.

    This is my code, basically I create a class which reads data from a .dat file which contains names and salarys, based on a question i found on a forum online, anyways I first created the .dat, now I need to create a class which takes the .dat file and writes it to a .txt file...he is my code I keep getting an EOFException which I have read in the docs is caused by an unexpected stop in reading of the data from file. Any assistance with regards to this problem would be much appriciated. Here is my code:
    import java.io.*;
    public class EmployeeRead implements Serializable{
         public static void main(String[] args){
         String inFile = null;
         String outFile = null;
         if (args.length<2) {
         System.out.println("You must specify two input files and one output file.");
         try {
         InputStreamReader reader = new InputStreamReader(System.in);
         BufferedReader console = new BufferedReader(reader);
         System.out.print("Please type the name of the .dat file: ");
         inFile = console.readLine();
         System.out.print("Please type the name for the .txt file (Output): ");
         outFile = console.readLine();
         catch(IOException e) {
              System.err.println("Problem with input: " + e);
         System.exit(1);
         else {
         inFile = args[0];
         outFile = args[1];
         try {
         //inFileReader = new ObjectInputStream(inFile);
         //inFileBuffered = new BufferedReader(inFileReader);
         //ObjectInputStream inFileReader = null;
         //BufferedReader inFileBuffered = null;
         //Input Streams:
              FileInputStream obj = new FileInputStream(inFile);
              ObjectInputStream in = new ObjectInputStream(obj);
              //output stream:
              FileWriter out = new FileWriter(outFile);
         String name = null;
         Double salary = 0.0;
         Employee temp = (Employee)in.readObject();
         Class nameClass = temp.getClass();
         temp = new Employee("SallyJones", 23456);
         while(temp != null){
              name = (String)temp.getName();
              salary = (Double)temp.getSalary();
              out.write(name + " - " + salary);
              temp = (Employee)in.readObject();
              catch(FileNotFoundException e){
              System.err.println("File not found: " + e.toString());
              catch(IOException e){
                   System.err.println("Error with file: " + e.toString());
                   e.printStackTrace();
              catch(IndexOutOfBoundsException e){
                   System.err.println("Index is out of Bounds: " + e.toString());
                   e.printStackTrace();
              catch(NullPointerException e){
                   System.err.println("Error with String(NullPointerException):" + e);
                   e.printStackTrace();
              catch(ClassNotFoundException e){
                   System.err.println("Error with Class: " + e);
                   e.printStackTrace();
    }

    Sorry, I was unaware of the code function. My Bad, here is the formatted code:
    import java.io.*;
    public class EmployeeRead implements Serializable{
         public static void main(String[] args){
             String inFile = null;
             String outFile = null;
              if (args.length<2) {
                  System.out.println("You must specify two input files and one output file.");
                  try {
                     InputStreamReader reader = new InputStreamReader(System.in);
                     BufferedReader console = new BufferedReader(reader);
                     System.out.print("Please type the name of the .dat file: ");
                     inFile = console.readLine();
                     System.out.print("Please type the name for the .txt file (Output): ");
                     outFile = console.readLine();
                  catch(IOException e) {
                          System.err.println("Problem with input: " + e);
                     System.exit(1);
               else {
                  inFile = args[0];
                  outFile = args[1];
               try {
                 //inFileReader = new ObjectInputStream(inFile);
                  //inFileBuffered = new BufferedReader(inFileReader);
                  //ObjectInputStream inFileReader = null;
                   //BufferedReader inFileBuffered = null;
                  //Input Streams:
                   FileInputStream obj = new FileInputStream(inFile);
                   ObjectInputStream in = new ObjectInputStream(obj);
                    //output stream:
                    FileWriter out = new FileWriter(outFile);
                  String name = null;
                  Double salary = 0.0;
                  Employee temp = (Employee)in.readObject();
                  Class nameClass = temp.getClass();
                  temp = new Employee("SallyJones", 23456);
                  while(temp != null){
                      name = (String)temp.getName();
                      salary = (Double)temp.getSalary();
                        out.write(name + " - " + salary);
                       temp = (Employee)in.readObject();
              catch(FileNotFoundException e){
              System.err.println("File not found: " + e.toString());
              catch(IOException e){
                   System.err.println("Error with file: " + e.toString());
                   e.printStackTrace();
              catch(IndexOutOfBoundsException e){
                   System.err.println("Index is out of Bounds: " + e.toString());
                   e.printStackTrace();
              catch(NullPointerException e){
                   System.err.println("Error with String(NullPointerException):" + e);
                   e.printStackTrace();
              catch(ClassNotFoundException e){
                   System.err.println("Error with Class: " + e);
                   e.printStackTrace();
    }

  • HT2041 I receive an error message when opening up a downloaded program as "Safari can't open the file because no availabel application can open it". Not sure what exactly this means or what I have to do!

    I receive an error message when opening up a downloaded program "safari can't open the file because no available application can open it" I am not sure what I need to do to get these programs open!

    What is the file?
    Where did you get it from?
    Allan

  • My new iPhone won't activate. I tried to and it didn't work i'm not sure what to do.

    I got a new iPhone 5c for an early Christmas present, and it didn't activate right and now nothing will work and i'm not sure what to do. It won't let me restore the new iPhone because i can't log in to icloud. Help!!!

    Sorry, you're going to have to actually explain what the problem is. This is far too vague to have an accurate idea of what's wrong.
    What do you mean by:
    It won't let me restore the new iPhone because i can't log in to icloud.
    What exactly are you doing? What is the EXACT error message you get and where do you see it?

  • How can I have multiple WINDOWS (NOT tabs) with INDEPENDENT content?

    How can I have multiple '''windows''' (''not ''tabs) with '''independent''' content?
    I used to be able to open separate windows with Firefox, and the content could be completely different in each window. No matter what I did in any window, no OTHER window open at the time, nor any of the content therein, was affected. This is no longer the case and it is extremely frustrating for me.
    I do ''not ''like tabs and do not use them. I prefer multiple windows plus I am so used to using them, for so many years now! But with v9.0.1 I suddenly can no longer do what I've always done with my browser without this aggravating problem constantly reminding me that I can't have what I want in firefox anymore.
    Or can I? Does anyone have a solution I don't realize exists?
    Thanks,
    Sowelu

    AppleScriptObjC can use pretty much everything in the Cocoa API, so yes, it is possible.
    Note that a view is not the same as a window, and a window can have multiple views. There are also many ways to implement "tabs";  take a look at some of Apple's applications - they use various mixtures of toolbars, checkboxes, and radio buttons, for example.  An application such as this will be a lot more involved than what you have done so far though, using custom classes and subclassing existing ones, so be prepared to do a lot of reading and researching.

  • I updated my Itunes but now when i open the window it's blank. I'm not sure what to do.

    I updated my Itunes but now when i open the window it's blank. I'm not sure what to do.

    You might try this tip....iTunes 11.1.3 appears to have flawed permissions:
    Repair permissions either with Disk Utility in the Applications/Utilities folder or on the command line with:
    diskutil repairPermissions /

  • ITunes setup on a NAS with multiple windows users - how?

    iTunes setup on a NAS with multiple windows users?
    I am very confused on what is the best way to handle this setup for my friends family.  Any help would be appreciated.  Sorry in advance as I know this is a long winded post - I have a feeling this will help others faced with the same issues or questions.
    CURRENT SETUP
    I have three new Windows 7 machines networked (two desktops and one laptop) that have four users on each - as busy family with children who need the computers for homework, projects, games, etc...  The goal of this setup is that any user can log onto any computer and have there documents available to them no matter computer was free to use.  I set this up using the library function in Windows 7 and seems to work pretty well.
    I have put a Buffalo Linkstation NAS on the system as well.  This was going to serve two purposes 1)  run some backup software to protect the computers and 2) consolidate the iTunes content in one place for all users.  There is also an iPad in the home that I should would be better served by accessing the content on the NAS without requiring any of the computers being on.  Dave is thinking about getting some other playback devices like Apple TV so thought a NAS would be a good way to go.
    CURRENT ITUNES SETUP - I have created a new iTunes library on the NAS by holding the SHIFT button down while starting iTunes and pointed to that folder on a Share on the NAS.  There was no music on the system at the time as we are planning to copy this over from an OLD machine that is now not being used.  I have also authorized all the computers and turned on the home sharing feature (although I am not sure what good that does).
    This “shift” button trick seesm to also point the default directory there without point to it in the advanced setup tab of iTunes.
    I then synced one of the iPods with purchased content on it and synced that to the library after asking me to do so before an update.  All the content showed up in the library and was playable - awesome.
    I then logged into each user on each machine (yikes) and installed iTunes  and used the “shift” trick to connect each users iTunes to the database on the NAS.  Everything seems to work - but I have not tested it thoroughly.
    SUMMARY
    3 new Windwos 7 networked machines
    4 identical users on each machine
    1 TB Buffalo linkstation
    iTunes setup with the folder on a SHARE
    all user’s itunes connected to the iTunes folder on the NAS
    all computers authorized with home sharing turned on.
    one iTunes user account signed in on each machine
    multiple iPods and one iPad in the system
    QUESTIONS/CONCERNS
    Is there a better way to do this on a NAS?
    Would home sharing be better in some way?
    I understand the NAS should show up under the shared section in iTunes - I assume that would mean that would mean each user has an iTunes library on their documents?
    I have read that there may be corruption issues if users on the different machines try to access iTunes at the same time.
    Will there be any issues syncing that various iPods with?
    Ugh - sorry for the long post and all the questions.  I am just trying to find the best way to do this.  I wish Apple would put out a best practices document for setups like this.  Thanks in advance.

    This is a user to user support forum. Your fellow users can offer solutions or workarounds based on their experience with the application. If you think it should work differently drop a line to iTunes Feedback.
    For reasons unknown Apple haven't chosen to allow iTunes to be suspended in one profile and active in another. My recollection is that this applies even if each profile has a different library, although it is some time since I've committed a personal test.
    I'm not sure why my suggestion make less sense that your current approach?. As I understand it currently everybody is either signed into their own account when they can do something other than work with iTunes, or they sign into the special iTunes account where they can't access any of their other stuff. You don't have to disable fast user switching. Follow exactly the same steps, but make sure everyone closes iTunes before turning the computer over to another user. Disabling fast user switching helps to enforce that action.
    tt2

  • Why can't close open multiple docs in Word 2010 in multiple windows while having the option to close them out while keeping Word open?

    End User of mine is wanting to open multiple docs in Word 2010.....first initial glance I thought it was a PICNIC issue. But when addressing it she has it set up to NOT "Show all windows in the taskbar" that option is unchecked so that way she
    can close out docs in Word and not actually close Word. But with unchecking that box it only stacks the docs it won't display them in mutliple windows. This is not the case with Excel as she has the option enabled to "Show all windows in the taskbar"
    but yet the enduser still has the option to close out the spreadsheet and keep Excel open. Is there anyway to keep that second smaller x in Word to close out the docs but yet open in multiple windows like Excel does?
    Please advise!
    Thank you and any help would be greatly appreciated.

    Hi VyDrix13,
    What will happen if you check the option of “Show all windows in the taskbar”?
    If you want to closing document and keep Word open, the alternative is to click File > Close, right there under Open and Save.
    You also can add the Close button to the Quick Access Toolbar.
    If there is anything that I can do for you regarding this issue, feel free to post back.
    Best regards,
    Greta Ge
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • When I choose to open a new tab from a website, such as facebook, it always opens it in a new window. How do I change this to just opening a new tab. I tried changing the tab settings but it did not work

    When I choose to open a new tab from a website, such as facebook, it always opens it in a new window. How do I change this to just opening a new tab. I tried changing the tab settings but it did not work. I did not have the problem until I started using firefox 4.

    It is probably a JavaScript link.
    You can probably force it where you want it with a keyboard shortcut
    either "Ctrl+click" or "Ctrl+Shift+click". see
    * Firefox and other Browser Keyboard Shortcuts (Comparison Table)<br>http://dmcritchie.mvps.org/firefox/keyboard.htm
    ''Did that work?''
    Some styles that provide a warning as to the type of link:
    * No Follow links, mouseover id of other links - userstyles.org<br>http://userstyles.org/styles/10987
    * Change cursor on some links with JS. - userstyles.org<br>http://userstyles.org/styles/233
    * Link Warning - Themes and Skins for Mozilla - userstyles.org<br>http://userstyles.org/styles/1301
    * Link warning (cursor hover) - various filetypes - userstyles.org<br>http://userstyles.org/styles/2538
    * Red hand cursor for .pdf links - userstyles.org<br>http://userstyles.org/styles/553

  • Disabling opening of multiple windows and tabs

    Hi experts,
    do we have any option to disable opening of multiple windows and tabs. Like making end user to use single window browser to do all operations.
    Regards
    Govardan Raj S

    HI Rajendra ,
    Actually if end user access the portal in a browser window , and if he opens another window i.e file->new window --- same portal applications will open in the new window with the same credentials and hence here i should either restrict him or log off the user in both windows.
    Regards
    Govardan Raj

Maybe you are looking for

  • Can i change the behavior of the character menu so that the list begins with the current font selected and not at the beginning of the list?

    Im struggling with the way the font selection tab works in the character menu. When i scroll down the list and select minion halfway down the list, the next time i click on the font tab, the list starts back at the top of the list making me scroll do

  • Charging led not working

    I have been using my blackberry Z10 for the past week and I noticed that despite being told that the LED light should turn green when the battery is fully charged, and my settings are all correct, this simply is not happening. I was wondering if it c

  • Plug accounts issues

    Hi guys, I'm not quite sure of having understand plug accounts and I have some issues with eliminations right now. I have tree accounts with the same plug account. Father1 Child1- PlugAccount1 Child2- PlugAccount1 Child3- PlugAccount1 PlugAccount1 Th

  • How to set multi fonts in one textItem?

    I have a textItem with Chinese & English. I want to set Chinese and English in different fonts, but the script can only set one font. So, when I set the textItem in western fonts, the Chinese can't display correctly (display block). When I set it to

  • Range delivered broken and no one wants to repair it

    Bought an open box range in store last week and scheduled a delivery for yesterday. Upon inspection in store only damage appeared to be cosmetic with a few dents on the side. Since it was going in between the counter and a wall the dents would not be