I am running OS 10.5.8 along with ipoto 6. i can't seem to figure out how to upgrade. i can't upgrade to 11 but what can i do??

i need to upgrade my iphoto on my intel based imac. running 10.5.8. can't seem to figure out how to upgrade this iphoto. i also have a new macbook on which this version of iphoto won't open. the macbook is running 10.6.7. what can i do to run iphoto on both machines??

iLife 11 and iPhoto 9 require  OS X10.6.3 as a minimum.  So you will need to upgrade your iMac to Leopard or Snow Leopard and then purchase iPhoto 11 from the App Store.  If you can find a copy of iLife 11 somewhere you'll get all of the latest iApps.
You're new MBP should be running iPhoto 11 and the other iLIfe 11 apps.
OT

Similar Messages

  • Running CS6 on a Macbook. Can anyone help me figure out how to record audio that is streaming on the Macbook? Under "Audio Hardware," my input choices are "Built in Mic" and "Built in Input." Neither does this.

    Running CS6 on a Macbook. Can anyone help me figure out how to record audio that is streaming on the Macbook? Under "Audio Hardware," my input choices are "Built in Mic" and "Built in Input." Neither does this.

    Please repost on the CS6 part of the Audition Forums.

  • Can anyone see why this won't run? I can't seem to figure out the mistake!

    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Debugging7 extends JApplet
              implements ItemListener
         //Declare components and global variables here
         JPanel mainPanel = new JPanel();
         JPanel buttonPanel = new JPanel();
         JLabel titleLabel = new JLabel("Debugging - Chapter 7", JLabel.CENTER);
         JTextArea questionTextArea = new JTextArea(2, 35);
         JRadioButton answerARadioButton = new JRadioButton();
         JRadioButton answerBRadioButton = new JRadioButton();
         JRadioButton answerCRadioButton = new JRadioButton();
         JRadioButton answerDRadioButton = new JRadioButton();
         ButtonGroup answerButtonGroup = new ButtonGroup();
         JLabel answerLabel = new JLabel(" ", JLabel.CENTER);
         Font titleFont = new Font("SansSerif", Font.BOLD, 18);
         public void init()
              //Set up the user interface (JPanels) here
              titleLabel.setFont(titleFont);
              mainPanel.setLayout(new GridLayout(0,1));
              mainPanel.add(titleLabel);
              questionTextArea.setText("To respond immediately to a change in the " +
                        "\nstate of a JRadioButton, you need to use: ");
              mainPanel.add(questionTextArea);
              questionTextArea.setEnabled(false);
              answerButtonGroup.add(answerARadioButton);
              answerButtonGroup.add(answerBRadioButton);
              answerButtonGroup.add(answerCRadioButton);
              answerButtonGroup.add(answerDRadioButton);
              buttonPanel.setLayout(new GridLayout(0, 4));
              answerARadioButton.setText("an ActionListener");
              buttonPanel.add(answerARadioButton);
              answerBRadioButton.setText("a compareTo method");
              buttonPanel.add(answerBRadioButton);
              answerCRadioButton.setText("an ItemListener");
              buttonPanel.add(answerCRadioButton);
              answerDRadioButton.setText("none of the above");
              buttonPanel.add(answerDRadioButton);
              mainPanel.add(buttonPanel);
              mainPanel.add(answerLabel);
              answerLabel.setForeground(Color.red);
              answerLabel.setFont(titleFont);
              setContentPane(mainPanel);
              //Add listeners
              answerARadioButton.addActionListener(this);
              answerBRadioButton.addActionListener(this);
              answerCRadioButton.addActionListener(this);
              answerDRadioButton.addActionListener(this);
         public void itemStatePerformed(ActionEvent event)
              //Retrieve user input and respond with calculations, etc
              Object eventSource = event.getSource();
              if(event == answerARadioButton)
                   answerLabel.setText("an ActionListener is NOT correct");
              else if(event == answerBRadioButton)
                   answerLabel.setText("a compareTo method is NOT correct");
              else if(event == answerCRadioButton)
                   answerLabel.setText("an ItemListener IS CORRECT");
              else if(event == answerDRadioButton)
                   answerLabel.setText("none of the above is NOT correct");
              else
                   answerLabel.setText("answer the question, please!");
    }

    Okay, here's some compiling code... Although I don't really want to bother to write up the html to test it so I'll leave that up to you...
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Debugging7 extends JApplet
              implements ItemListener
         //Declare components and global variables here
         JPanel mainPanel = new JPanel();
         JPanel buttonPanel = new JPanel();
         JLabel titleLabel = new JLabel("Debugging - Chapterr 7", JLabel.CENTER);
         JTextArea questionTextArea = new JTextArea(2, 35);
         JRadioButton answerARadioButton = new JRadioButton();
         JRadioButton answerBRadioButton = new JRadioButton();
         JRadioButton answerCRadioButton = new JRadioButton();
         JRadioButton answerDRadioButton = new JRadioButton();
         ButtonGroup answerButtonGroup = new ButtonGroup();
         JLabel answerLabel = new JLabel("       ", JLabel.CENTER);
         Font titleFont = new Font("SansSerif", Font.BOLD, 18);
         public void init()
              //Set up the user interface (JPanels) here
              titleLabel.setFont(titleFont);
              mainPanel.setLayout(new GridLayout(0,1));
              mainPanel.add(titleLabel);
              questionTextArea.setText("To respond immediately to a change in the " +
                        "\nstate of a JRadioButton, you need to use: ");
              mainPanel.add(questionTextArea);
              questionTextArea.setEnabled(false);
              answerButtonGroup.add(answerARadioButton);
              answerButtonGroup.add(answerBRadioButton);
              answerButtonGroup.add(answerCRadioButton);
              answerButtonGroup.add(answerDRadioButton);
              buttonPanel.setLayout(new GridLayout(0, 4));
              answerARadioButton.setText("an ActionListener");
              buttonPanel.add(answerARadioButton);
              answerBRadioButton.setText("a compareTo method");
              buttonPanel.add(answerBRadioButton);
              answerCRadioButton.setText("an ItemListener");
              buttonPanel.add(answerCRadioButton);
              answerDRadioButton.setText("none of the above");
              buttonPanel.add(answerDRadioButton);
              mainPanel.add(buttonPanel);
              mainPanel.add(answerLabel);
              answerLabel.setForeground(Color.red);
              answerLabel.setFont(titleFont);
              setContentPane(mainPanel);
              //Add listeners
              answerARadioButton.addItemListener(this);
              answerBRadioButton.addItemListener(this);
              answerCRadioButton.addItemListener(this);
              answerDRadioButton.addItemListener(this);
         public void itemStateChanged(ItemEvent event)
              //Retrieve user input and respond with calculations, etc
              Object eventSource = event.getSource();
              if(eventSource.equals(answerARadioButton))
                   answerLabel.setText("an ActionListener is NOT correct");
              else if(eventSource.equals(answerBRadioButton))
                   answerLabel.setText("a compareTo method is NOT correct");
              else if(eventSource.equals(answerCRadioButton))
                   answerLabel.setText("an ItemListener IS CORRECT");
              else if(eventSource.equals(answerDRadioButton))
                   answerLabel.setText("none of the above is NOT correct");
              else
                   answerLabel.setText("answer the question, please!");
    }Message was edited by:
    Dalzhim

  • I have an apple iphone 4 that I want to download audio books from my library onto it.  I cannot figure out how to do that.  The iphone does not show up on my mac laptop as a connected device.  Does this kind of download have to run through itunes?  Thanks

    I have an apple iphone 4 that I want to download audio books from my library onto.  I cannot figure out how to do that.  The iphone does not show up on my mac laptop as a connected device.  Does this kind of download have to run through itunes?  Thanks

    Yes it is done through iTunes. The iPhone will never show up in Finder as a device. The following is general information on iTunes sync: http://support.apple.com/kb/HT1386 and the following is a previous discussion where the post by Andreas Junge helped others that had a problem syncing audiobooks: https://discussions.apple.com/message/20052732#20052732

  • I have a new iMac running iTunes 10.4 in OS 10.6.8, and a new Mac Air running iTunes 10.4 in Lion.  I was able to transfer all my music etc. from the iMac onto the Air, but cannot figure out how to get the Playlists from the iMac to the Air.  iTunes Help

    I have a new iMac running iTunes 10.4 in OS 10.6.8, and a new Mac Air running iTunes 10.4 in Lion.  I was able to transfer all my music etc. from the iMac onto the Air, but cannot figure out how to get the Playlists from the iMac to the Air.  iTunes Help says File >Library >Export playlist and choose XML, or to save a copy of all your playlists, File > Library > Export Library, "the Exported info is saved in XML format."  Then it says, "to import an iTunes playlist, File > Library > Import Playlist".  Now I am assuming I do that import part on the Air, but when I try it doesn't recognize anything that can be imported - what am I missing??? Aside from a clue...

    Thanks, Jim, for taking the time, but the reply is unfortunately vague in the exact area of my confusion!  "you need to copy that file to your new computer..."  Well, the Import/Export instructions make it seem as if the two computers should be able to communicate this file thru wifi, but that's the linkage I can't seem tocreate with Import/Export.  Should I instead email a copy to myself (thats what applecare suggested)?  Copy it to and from a thumb drive?  But then place the file where?  And the article was helpful, but should I be trying to move the Library file or the Library.xml file (as iTunes Help suggests)?  Sorry to be so clueless about it...I suppose I buy Apple in the hopes of not having to think about this stuff, which approach seems not to be serving me well. Thanks again for your time!

  • My mac is running slow, the spinning beach ball constantly appears. it seems that when i am in the apple store with fast wifi its a bit better. genius at the apple store checked the hard drive, it's all fine. what can it be?

    my mac is running slow, the spinning beach ball constantly appears. it seems that when i am in the apple store with fast wifi its a bit better. genius at the apple store checked the hard drive, it's all fine. what can it be? can it be a software issue with the wifi?
    also i noted that it has only been doing this since quite recently, before it was fine
    please help!

    First, back up all data immediately, as your boot drive might be failing.
    Step 1
    This diagnostic procedure will query the log for messages that may indicate a system issue. It changes nothing, and therefore will not, in itself, solve your problem.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Triple-click anywhere in the line below on this page to select it:
    syslog -k Sender kernel -k Message CReq 'GPU |hfs: Ru|I/O e|find tok|n Cause: -|NVDA\(|timed? ?o' | tail | open -ef
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key.
    The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear.
    A TextEdit window will open with the output of the command. Normally the command will produce no output, and the window will be empty. If the TextEdit window (not the Terminal window) has anything in it, stop here and post it — the text, please, not a screenshot. The title of the TextEdit window doesn't matter, and you don't need to post that.
    Step 2
    There are a few other possible causes of generalized slow performance that you can rule out easily.
    Disconnect all non-essential wired peripherals and remove aftermarket expansion cards, if any.
    Reset the System Management Controller.
    Run Software Update. If there's a firmware update, install it.
    If you're booting from an aftermarket SSD, see whether there's a firmware update for it.
    If you have a portable computer, check the cycle count of the battery. It may be due for replacement.
    If you have many image or video files on the Desktop with preview icons, move them to another folder.
    If applicable, uncheck all boxes in the iCloud preference pane. See whether there's any change.
    Check your keychains in Keychain Access for excessively duplicated items.
    Boot into Recovery mode, launch Disk Utility, and run Repair Disk.
    If you have a MacBook Pro with dual graphics, disable automatic graphics switching in the Energy Saverpreference pane for better performance at the cost of shorter battery life.
    Step 3
    When you notice the problem, launch the Activity Monitor application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Activity Monitor in the icon grid.
    Select the CPU tab of the Activity Monitor window.
    Select All Processes from the View menu or the menu in the toolbar, if not already selected.
    Click the heading of the % CPU column in the process table to sort the entries by CPU usage. You may have to click it twice to get the highest value at the top. What is it, and what is the process? Also post the values for User, System, and Idle at the bottom of the window.
    Select the Memory tab. What value is shown in the bottom part of the window for Swap used?
    Next, select the Disk tab. Post the approximate values shown for Reads in/sec and Writes out/sec (not Reads in andWrites out.)
    Step 4
    If you have more than one user account, you must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way you launched Activity Monitor. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Select the 50 or so most recent entries in the log. Copy them to the Clipboard by pressing the key combinationcommand-C. Paste into a reply to this message (command-V). You're looking for entries at the end of the log, not at the beginning.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some personal information, such as your name, may appear in the log. Anonymize before posting. That should be easy to do if your extract is not too long.

  • Anyone figured out how to run iCal completely invisible?

    Has anyone figured out how to run iCal completely invisible on Snow Leopard -- not just minimized on the dock, but completely hidden.  The goal is to be able to press Comamnd+Tab and NOT see iCal.

    I too have a KRZR K1M that I received two days ago as a "gift' from Verizon in exchange for renewing my contract for 2 years. I had a RAZR that I had been able to sync with iCal after I edited the metaclass.plist file for that phone. I would then have to delete and re-add the RAZR each time I resynched in order to select the option I wanted from the iSync dialog window. If I "merge[d] data," the calendars on both my mac and my phone would fill quickly with duplicate entries. As for the KRZR, i have tried several times to add and sync this phone to the mac. It worked only once, and I was able to get the mac to write a years worth of events into the phone, but no matter what i do, i have not been able to repeat the process for my ical events. I use the VZW backup assistant for my contacts, just to be safe. I would like very much for Verizon and Apple to get together on the iSync issue. Verizon tech support told me only moments ago that the only phone they offer that will sunc with iCal is either a Treo or a Blackberry. And they aren't handing out either of them for free any time soon.

  • I am trying to figure out how to clear my massage backlog of messages on Messages for Mavericks OS. I believe a lot of space is taken up by this running in the background keeping recent messages loaded. Especially with all the gif files I've been sending

    I am trying to figure out how to clear my massage backlog on Messages for Mavericks OS. I believe a lot of space is taken up by this running in the background keeping recent messages loaded. Especially with all the gif files I've been sending. Is there a way to select all and deleter? Please help! Can't find anyone who looks to do the same just lots of manuals for using the app on iphones and ipads.
    Thanks

    I am trying to figure out how to clear my massage backlog on Messages for Mavericks OS. I believe a lot of space is taken up by this running in the background keeping recent messages loaded. Especially with all the gif files I've been sending. Is there a way to select all and deleter? Please help! Can't find anyone who looks to do the same just lots of manuals for using the app on iphones and ipads.
    Thanks

  • I need to update to the latest version of Snow Leapord-currently running v10.6. Because of where we live the slow download speed for such a large file has kept me from downloading the update. What can I do short of hooking up computer elsewhere?

    I need to update to the latest version of Snow Leapord-currently running v10.6. Because of where we live the slow download speed for such a large file has kept me from downloading the update. What can I do short of hooking up computer elsewhere?

    Do you ever visit a friend or realtive with a Mac who has faster internet? Maybe the local library has Macs on a fast line. If so, get a USB thumb drive and put this link on it from your computer:
    http://support.apple.com/kb/DL1399
    Then put this link on the drive:
    http://support.apple.com/kb/DL1429
    When you are at some place that has a Mac with a decent download speed. insert the thumb drive in that Mac and click on the first link ("DL1399") and direct the download to your thumb drive. Now do the same this with the second link.
    The installer files will now be on the thumb drive and, when you get home, drag them from the thumb drive to your desktop. Install the Combo update first.

  • I'm trying to transfer data (docs, emails) from G4 iMac running os 10.3.9 to brand new iMac on 10.8.1  I'm stuck, any help greatly appreciated.  (Ethernet or wifi networking are both options if I can figure out how to get the machines to communicate.)

    I'm trying to transfer data (docs, emails) from an old G4 iMac running OS 10.3.9 to brand new iMac on 10.8.1  I'm stuck, any help greatly appreciated.  (Ethernet or wifi networking are both options if I can figure out how to get the machines to communicate.)

    AMoriyama wrote:
    I have the old machine backed up onto an external firewire disk but can't hook that up to the new imac as I'm waiting for delivery of a firewire 400/800 adaptor - therefore starting the old machine up as a slave is also subject to the same delay.
    I was hoping there might be some way to create a network between the 2 machines (and 2 different versions of the OS) to be able to transfer data across immediately but perhaps I'll just have to wait for my firewire adaptor to arrive.
    I don't understand why you're buying a Firewire adaptor, since AFAIK both of your computers have Firewire already built in.
    All you need is a firewire cable. Connect the Firewire socket on the old machine to the Firewire socket on your new iMac.
    Then start the old machine in Target Mode (i.e. by holding down the T key on its keyboard, while it's starting up, until you see the three-legged T icon hopping around the screen of the old machine.)
    At that point you will also see a new icon on the screen of your new iMac. This is the hard drive of your old machine.  By clicking on it you can navigate through it any way you like, just as you would normally.
    Just drag across whatever you want from the old computer to the new one. This will leave everything on the old computer untouched.
    - or use Migration Assistant but in my experience, Migration Assistant isn't very reliable and fails to migrate large amounts of stuff.

  • TS3694 I am using iphone 3gs, I upgraded my i-os to 6.0 from 5.1.1 however I am facing performance issue, along with this all the applications including settings or any other shuts down automatically. Is there any way by which I can use my phone in better

    I am using iphone 3gs, I upgraded my i-os to 6.0 from 5.1.1 however I am facing performance issue, along with this all the applications including settings or any other shuts down automatically. Is there any way by which I can use my phone in better way?

    No, downgrading from any version of iOS to an earlier version is not supported.

  • I have an iBook G4 running on OS X 10.4.11 and I just got a new ipod and can't figure out how to get it updated to be able to sync my ipod PLEASE HELP

    I have an iBook G4 running on OS X 10.4.11 and I just got a new ipod and can't figure out how to get it updated to be able to sync my ipod PLEASE HELP

    You could go hunting for a fair price on a refurbished or restored Intel-based Mac or MacBook, as most early models of CoreDuo and Core2Duo can run Snow Leopard 10.6.8, and some much more recent.
    The Apple Store's Special Deals section that is online has some fairly recent examples of hardware with an OS, original accessories as noted, power cord, and complementary one year coverage. Eligibility for extended AppleCare plans are noted & may be available for various items in the store. Subject to availability. Refurbished. Like new. The price difference can be about the same as the additional two year AppleCare plan may cost, so get that too.
    Third party repaired restored or available through other channels vary in quality, quantity, condition, and may be lacking in some or most original accessories; they should include basic hardware as originally equipped and have the boot-install software disc set as intended for that build model & year specification, included.
    Auction sites rarely have that much of a kit together, w/ missing discs, scruffy, extra fees, etc. On the other hand, companies that restore and repair Macs for a living and are authorized Apple service centers may have something, if you aren't in the market for something holiday new or really quick. Older models if reasonably refurbished can still shine years later.
    Hopefully this helps somewhat.
    Good luck & happy computing!

  • Running ATI Radeon x1900 XT along with NVIDIA GeForce 8800 GT Possible?

    Can I run the ATI Radeon x1900 XT along with NVIDIA GeForce 8800 GT together in my mac pro?

    The X1900 would have to go in double wide slot, you would have to run one or both at 8x.
    I think something like ATI 2600 might make more sense. The 8800GT is listed as discontinued (have a thread or two about it being EOL). So unless you have the 8800GT may not be an option anyway.
    The 4870 + 2600 combo would be best I can think of for us with 1st gen now.
    This assumes you simply need to drive 3 monitors. And don't want to wait and see if the Nvidia eVGA GTX 285 (doubtful) will support 1st gen EFI32's.

  • Can you run both the latest Safari along with 4.0 beta?

    I'd like to play with the Safari 4.0 beta, but can't afford to lose my regular Safari along with its bookmarks, bank links etc.
    Can I run both on the same machine and just start up whichever one I want?
    P.

    Is there any possibility that the new Safari-4beta is causing my menus to freeze-up? I find my menu bars are often dead and I have to switch to another program-- even those are sometimes dead too, and after 30 seconds one comes to life, then they all do, but then go back to frozen again.
    I wouldn't put anything past Safari 4. Its mere presence causes the currency converter widget to give wrong answers.
    I tried to use the uninstaller, but it would not work; then I tried to just install Safari 3.2.1 - but it would't do this "Can't install since you have a newer version on your Mac"-- Safari 4 Beta did NOT do this on TIGER- but this was my weekend to switch to Leopard after 13 months of prepartion...
    If the unistaller won't work, I don't think there is any way to get back to the old Safari without either reinstalling OSX, or restoring from Time Machine (using the Utilities menu on the Leopard install DVD) and choosing a backup before you installed Safari 4.

  • My computer says firefix is running....I can not find it and when I click on the icon it will not open. What can I do?

    I can not get firefox to open when I click the icon. A box appears and tells me firefix is running but I can not find it anywhere. I have tried to delete it and everything else I can think of and it will not open. Please tell me what I can do.
    Thank you Lisa Brown

    I used to have this problem on my old XP computer, too. The easiest way to fix it is to restart your computer. Use Shutdown and restart. This will stop the firefox process that is hanging and won't show up on your screen.
    If you are somewhat computer literate, you can look at all your running processes by pressing Ctrl Shift Esc all at once using the three finger salute. Look at the list of processes to find firefox, highlight it, and select end process. Then go back and click on your shortcut to your firefox to regain control and display it on your screen.
    Be sure to upgrade to the latest version of firefox, Version 5. It works much better than previous versions.
    Fred

Maybe you are looking for