I own iLife '11, why does it not show as installed?

I have iLife '11 loaded on my computer as well as iWork '09.  Why don't they show up as installed from the app store?

Because they were purchased as a the suite of software, not as individual components that are availablw from the App Store.
The updates for your iLife and iWork software are available from your Apple menu / Software Update.
If you had purchased the components, the updates would be available from the App Store.

Similar Messages

  • Put movies in itunes on one computer why does it not show up when i access itunes from other computers or ipad2?

    put movies in itunes on one computer why does it not show up when i access itunes from other computers or ipad2?

    i just purchased a file that had videos in it. i put them in the itunes library on my pc where i first downloaded them. i was able to transfer them to my other pc, a laptop, through my home network. i am now trying to get them on my mac pro desktop and my ipad2. my mac pro can see the other computers on my home network but i cannot get it to connect to them. i know the operating systems are different but was hoping i could transfer pictures and files from pc to mac this way. haven't been able to get it to work yet. the videos i am trying to get my mac to see came in a folder with both mac and pc versions. i thought if i got the videos i purchased into itunes that i would then be able to get them to my mac pro and my ipad2. i am new to mac/apple and have always been pc-centric so trying to marry it all has been difficult. i speak pc pretty well but am just learning apple. am i trying to do things that are not possible? i sure could use a knowledgable friendly soul to walk me through my issues of having pc and mac on the same network. i have been able to get all computers and ipad to print on my network. thanks.

  • Why does is not show the radio buttons

    I want to display the buttons in a row then radio button in a row under the button and then log scroll pane under the radio buttons. This is my code:
            //Add the buttons and the log to this panel.
            add(buttonPanel, BorderLayout.PAGE_START);
            add(radioPanel, BorderLayout.CENTER);
            add(logScrollPane, BorderLayout.CENTER);When i run it it display the buttons and the logsrollpane. Why does it not display the radio buttons?

    Thanks guys.
    This is my problem. We have a big system that produce lots of log files and the software testers have to manually have to go through the logs file and look for a certain XML tags in the log file.
    What I want to do is help the software testers my developing a small tool that will allow them to open a log file and then click on a radio button corresponding to a xml tags that they are looking for and automatically highlight the tags in the file in yellow color .
    I am not sure how feasible this is and I am stuck.
    This is what I have done so far.
    Can you please guys help me go forward.
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    public class FileChooserDemo extends JPanel
                                 implements ActionListener {
        static private final String newline = "\n";
        JButton openButton;
        JButton clearButton;
        JTextArea log;
        JFileChooser fc;
        // Radio Buttons
        static String em01 = "EM01";
        static String em07 = "EM07";
        /*static String dogString = "Dog";
        static String rabbitString = "Rabbit";
        static String pigString = "Pig";*/
        public FileChooserDemo() {
            super(new BorderLayout());
            //Create the radio buttons.
            JRadioButton em01Button = new JRadioButton(em01);
            em01Button.setMnemonic(KeyEvent.VK_B);
            em01Button.setActionCommand(em01);
            em01Button.setSelected(true);
            JRadioButton em07Button = new JRadioButton(em07);
            em07Button.setMnemonic(KeyEvent.VK_C);
            em07Button.setActionCommand(em07);
            //Group the radio buttons.
            ButtonGroup group = new ButtonGroup();
            group.add(em01Button);
            group.add(em07Button);
            //Register a listener for the radio buttons.
            em01Button.addActionListener(this);
            em07Button.addActionListener(this);
            //Put the radio buttons in a column in a panel.
            JPanel radioPanel = new JPanel(new GridLayout(0, 1));
            radioPanel.add(em01Button);
            radioPanel.add(em07Button);       
            //Create the log first, because the action listeners
            //need to refer to it.
            log = new JTextArea(40,60);
            log.setMargin(new Insets(5,5,5,5));
            log.setEditable(false);
            JScrollPane logScrollPane = new JScrollPane(log);
            //Create a file chooser
            fc = new JFileChooser();
            //Uncomment one of the following lines to try a different
            //file selection mode.  The first allows just directories
            //to be selected (and, at least in the Java look and feel,
            //shown).  The second allows both files and directories
            //to be selected.  If you leave these lines commented out,
            //then the default mode (FILES_ONLY) will be used.
            //fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
            //fc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
            //Create the open button.  We use the image from the JLF
            //Graphics Repository (but we extracted it from the jar).
            openButton = new JButton("Open File");
            openButton.addActionListener(this);
            //Create the save button.  We use the image from the JLF
            //Graphics Repository (but we extracted it from the jar).
            clearButton = new JButton("Clear Text Area");
            clearButton.addActionListener(this);
            //For layout purposes, put the buttons in a separate panel
            JPanel buttonPanel = new JPanel(); //use FlowLayout
            buttonPanel.add(openButton);
            buttonPanel.add(clearButton);
            //Add the buttons and the log to this panel.
            add(buttonPanel, BorderLayout.PAGE_START);
            add(radioPanel, BorderLayout.LINE_START);
            add(logScrollPane, BorderLayout.CENTER);
        public void actionPerformed(ActionEvent e) {
            //Handle open button action.
            if (e.getSource() == openButton) {
                int returnVal = fc.showOpenDialog(FileChooserDemo.this);
                if (returnVal == JFileChooser.APPROVE_OPTION) {
                     log.setText("");
                    File file = fc.getSelectedFile();
                    try{
                         BufferedReader in = new BufferedReader(new FileReader(file));
                             String data;
                             while ((data = in.readLine()) != null) {
                                  log.append(data + newline);
                    }catch(IOException ioe){
                log.setCaretPosition(log.getDocument().getLength());
            //Handle save button action.
            }else if (e.getSource() == clearButton) {
                  log.setText("");
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Create and set up the window.
            JFrame frame = new JFrame("PROGRESS Message Viewer");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            JComponent newContentPane = new FileChooserDemo();
            newContentPane.setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

  • The firefox icon shows on my desk top and in my task bar, but why does it NOT show in my list of Program files?

    My Firefox icons are showing and usable from the desktop and from the task bar; however, the Mozilla Firefox does not show in my list of program files. Why doesn't it show?

    Hello,
    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    More information about reinstalling Firefox can be found [https://support.mozilla.org/en-US/kb/troubleshoot-and-diagnose-firefox-problems?esab=a&s=troubleshooting&r=3&as=s#w_5-reinstall-firefox here].
    <b>WARNING:</b> Do not run Firefox's uninstaller or use a third party remover as part of this process, because that could permanently delete your Firefox data, including but not limited to, extensions, cache, cookies, bookmarks, personal settings and saved passwords. <u>These cannot be recovered unless they have been backed up to an external device!</u>
    Please report back to see if this helped you!
    Thank you.

  • Why does Photoshop not show PSD file image tile in 'Open File' when Facebook can?

    When selecting a PSD file in Photoshop the image tile just says "PSD" so visually you cannot select it knowing which version it is.  Why can't Photoshop show the image tile like Facebook can instead of having to use Bridge?  Bridge is a huge memory hog and to have to jump back and forth is a pain.  If I choose a file to upload to Facebook, I can see the standard file icons and also the PSD versions.
    Any ideas or should this be a request in the next update?

    That's happened a more than a couple of times where I spend 20 minutes carefully preparing a post and then find out some else got it.
    Anyway, psd icons in the Explorer is a sure sign of the Windows OS. They could work with Adobe to render thumbnails, but seems something I'm not privy to in their internal policies prevents that.
    Chris Cox did offer some insights. The OS vendors expect their rules to be followed, so if the OS does not respond properly, it's not Adobe's job to work around that. I do wonder how third party codec vendors do it. I'll have to ask.
    Btw, John Ellis has a quicklook plugin for the Mac that renders PSB thumbnails should you be interested.
    PSB Quick Look Plugin
    Gene

  • Why does iphone not show up in itunes

    After i connect my iphone to the computer the iphone-sign does not show in the itunes programme.
    The iphoto pops up, so it recognizes the iphone, but in itunes nothing happens.
    This means i connot syncronize my iphone.
    I tryed to restart imac and phone, nothing....
    Anyone had this problem an now's what to do??
    thanks
    Stephen

    http://support.apple.com/kb/TS1567
    http://www.apple.com/support/iphone/assistant/itunes/#section_1

  • Exchange 2013 Delivery Reports - Why does it not show forwarded mail?

    We just migrated from 2010 to 2013 and all seems to be working well... We started using EOP at the same time with only a few hiccups.  Our Get-MessageTrackingLog command shows all of our email that was delivered or failed, etc... but when I try to run
    "Mail Flow -> Delivery reports", it forces me to select a mailbox and I leave the other fields empty - and it only shows emails that come directly to me.  The problem is, I have half a dozen email accounts that are set to forward their email
    to my exchange account.  None of those emails show up with the delivery reports method - but they DO show up via the powershell get-messagetrackinglog command...
    With EOP I can see all the emails if I use "Mail Flow -> Message Trace"... why does it work with EOP, but on our local box - it's nerfed to just emails who specify my direct exchange address?

    Hi,
    I have tested to use Delivery Reports to search my manually forward messages in my Exchange 2013 CU1 environment. And the forward messages can be searched and listed in the Search results.
    Please make sure the users who forwarded emails to you are in your organization and they are sending
     messages by using the Microsoft Outlook or Outlook Web App email clients. Because Delivery Reports doesn’t track messages send from POP or IMAP email clients. For more information about Delivery Reports, please refer to:
    http://technet.microsoft.com/en-us/library/jj150554(v=exchg.150).aspx
    Additionally, I also tested auto-forward scenario:
    User1 is configured to auto-forward messages to User2 in Exchange side(for details, please click
    here), when User3 sends a message to User1, the message is forwarded to User2 automatically. If so, when we use Delivery Report to search this forward message for User2, we
    need to use Search for messages received from User3 instead of User1 to get this forwarded message.
    Thanks,
    Winnie Liang
    TechNet Community Support

  • Why does it not show all the pictures when i open myspace

    Hello,
    I have apple mac pro desktop. When i open some profile on www.myspace.com, does my computer not show all pictures on that profile site. Can some one tell me if i need to download some software or plugin to see all pictures on the pages. I use safari beta.

    deniz aya wrote:
    Hello,
    I have apple mac pro desktop. When i open some profile on www.myspace.com, does my computer not show all pictures on that profile site. Can some one tell me if i need to download some software or plugin to see all pictures on the pages. I use safari beta.
    Hello deniz aya,
    Welcome to Apple discussions..
    No, you do not need additional software to view the pic, myspace is just not very mac friendly, as they say ( long time coming) they are working on it.
    Myspace pages can be a nightmare, a couple of my friends pages for instance
    have been known to crash my Safari beta & when on version S 2.
    Try using Firefox as well, the "other" browser they recommend other then Safari
    for Mac users, albeit they do not say which version of Safari to use.
    Check pages including the one you have an issue viewing the pics on with the http://validator.w3.org/ to get an idea of how poorly coded they are.
    Eme '~[ ) 
    I just checked my page which has not half the items that other pages use & it Failed validation, 91 Errors, one of my friends pages failed with 490 odd........
    Of course I presume you have flash, as mentioned by QuickTimeKirk.
    To check, in Safari under the Help menu, click on -> Installed plug-ins.
    and check for Flash player.
    Under Safari menu, Safari's preferences, Security tab- Web Content: you have Enable Plug-ins checked correct?
    Message was edited by: Eme

  • Why does itunes not show the ipad in devices?

    Plug the iPad on itunes-windows and it does not show as device. cannot syncronize. The iPad was set up automatically and it is signed to a wifi

    Here's a few things you can try:
    - If you haven't tried disabling your anti virus software and turning off the Firewall, do that then restart your PC and  the iPad.
    - Try another cable to make sure it's that that
    - Try connecting to another computer to verify that your computer is not the issue
    - If none of these work then your iPad might need service. Take it to your nearest Apple Store

  • Why does safari not show my websites SVG images and every other browser it is fine ?

    I am a web developer and the way apple has developed there safari is driving everyone mad
    SVG images will work on every other web browser but wont show up in safari
    it is a html website and need to sort this issue out asap have anyone else had the same issue with safari

    I wanted to make it clear that I am not talking about the publically accessible Amazon Store but the Amazon Web Store which is used for those who have an online shop or set up e-commerce.
    The fact that Amazon is a large company does not protect it from making a crappy site. If its e-commerce pages don't work in Safari, that's laziness on the part of their web developers, pure and simple. There's no reason for a modern web site to fail to work in any standards-compliant web browser. This is something you'll need to address with Amazon.

  • Why does itunes not show up my phone and i cant update apps?

    i need help. cant update apps and itunes doesnt show up my iphone on the page so i cant do it... what should i do?!

    Disabled
    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Forgot passcode or device disabled
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:                                                             
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: Back up and restore your iOS device with iCloud or iTunes       
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:           
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    If problem what happens or does not happen and when in the instructions? When you successfully get the iPod in recovery mode and connect to computer iTunes should say it found an iPod in recovery mode.

  • Why does Reflow not show changes

    I did a project in Reflow (rectangle, rounded corners, border), saved it, opened the CSS in Dreamweaver, made changes, saved, changes show OK in browser(!), reopened it in Reflow: no changes...
    Thanks,
    Maarten

    Maarten,
    Reflow does not connect to external editors. If you make changes outside of the files generated by Reflow, there is no connection back to Reflow unless you re-export the files in which case you will override your originals. You can export to another location to avoid overrides. By the way, the browser has nothing to do with Reflow itself other than to view your HTML and CSS files. Hope this helps...

  • Why does my note show not show correctly when I open it in my 4th generation iPod?

    The instructions on how to add a note or text document to view in my 4th generation iPod nano say merely to add a copy of the text document to the 'Notes' folder shown when viewing my iPod's files in 'My Computor.' I did so with a document, but it came up only showing 'PK' when I opened it on my iPod. I also tried adding a book I had purchased from iTunes to my iPod but it also only came up with 'PK'. I don't really understand what's going on as I came view the file just fine when it's opened on my computor, just not on my iPod.

    Books in the epub or iBook format are not compatible with the 4G Nano.  As for the text document, what did you give it as a name and extension?
    Did you copy and paste text into this note or did you type it out manually?
    B-rock

  • After the free download of Firefox 4.0 why does it not show or tell me how, when, or where it will be installed?

    OK then. I click on the "Free Upgrade to Firefox 4.0" to get
    the download started. The Windows XP download dialog box opens and the upgrade downloads. Then the "Save file" dialog box opens. That states....."You have chosen to open or run this file. exe. ect. blah blah blah".
    I click on "Save File". The dialog box disappears.
    Then nothing about how to install, when it will install itself, or anything about installation.
    I have my downloads set up to appear on my desktop (as an icon) when they are complete. Nothing appeared and nothing happened. What's the deal?
    Thank you very much....................i40.

    If you don't usually get a choice of where to save a downloaded file, you can change that using:
    Edit > Preferences > General > "Always ask me where to save files"
    Then you may want to go directly to the source:
    http://www.mozilla.com/firefox/
    You should get the options to Save File or Cancel (not Open). Hopefully after saving you will be able to find the downloaded file in the location you specified.
    One other note, before upgrading, you may want to back up your Firefox settings just in case. [https://support.mozilla.com/en-US/kb/Backing+up+your+information Backing up your information].

  • When sending or receiving messages, why does it not show up for me on my iPad mini and my iPhone. It only shows up on whatever device I am using at that time.

    HOw can I get my messages that I have sent or received to appear on my iPad mini as well as my phone?

    Me too, ipad mini can't get YouTube app to function via the official app and the same error message," ...tap to retry", but to no avail. The app launches but it will not allow me to sign in. The drop arrow just tilts up and down and ...nothing. I can still access YouTube through Safari browser but strange, I can't find a solution to the app not opening or being able to sign in on either ipad mini or phone even though they are up to date apps.

Maybe you are looking for

  • Text getting truncated in alv report...

    hi friends,      i am doing an alv report..the requirement is i need to display the user inputs at the top of the alv grid..in that, for a particular field, if the user is not selecting any option, then i need to display all the values in that catego

  • Regarding java mapping in SAP XI

    Hi Friends,                 I need help on java mapping.In java mapping in design side in the receivermessage interface by right clicking on and selecting java proxy generation. here i have a doubt ,we have to select both sender and receiver interfac

  • Loader Component IE7 Scaling Content Issue

    Hello, I have an image gallery that is using Loader components to pull in the thumbnails and i have the scaling set to true, but in IE7 it is very inconsistent in scaling... IE6 and Mozilla work great, but IE7 is inconsistent... click on the top left

  • APO-DP - Characteristic Description in /SAPAPO/SDP94

    Is it possible to have the same characteristic (e.g. 9AMATNR) be called with different names in different planning object structures. The requirement is as follows. For example 9AMATNR is used in 2 different PLOBS. In one PLOBS it is called "Material

  • Finding a photo that won't sync with my iPad

    I have photos synchronized from iPhoto to my iPad.   One photo, 014.jpg gives an error when I synchronize. So I went to my iPhoto and searched for 014.jpg.    This found a lot of phots with names such as P1010014.   I opened iPhoto and renamed every