TS4057 Further advice required ... this didn't work.

I have followed the advice given here but none of the apps will show in purchases or allow an update.  They all show their original price on the app store tab and will not show in my app store purchases whether i search hidden or viewed ... can anyone please advise further?
I have:
Final Cut Pro X   v 10.0.4
Compressor   v 4.0.3
Motion   v 5.0.3
Thank you !

I am, yes!  All of my other apps are showing and updating correctly.  Only this suite of apps are not showing in my purchased list nor are showing with a download tag.  They show their current app store pricing on the download tag which I am reluctant to click in case I am charged again.

Similar Messages

  • After updating to 8.1.2 my iPad continues to restart. I tried resetting all the settings and this didn't work. I tried rebooting by holding the start button & power button and it didnt work either. The problem has actually worsened. I can no longer u

    After updating to 8.1.2 my iPad continues to restart. I tried resetting all the settings and this didn't work. I tried rebooting by holding the start button & power button and it didnt work either. The problem has actually worsened. I can no longer use my iPad.

    You need to restore the iPad.
    Use iTunes to restore your iOS device to factory settings - Apple Support
    If that will not work, you will need to use Recovery Mode to restore.
    If you can't update or restore your iPhone, iPad, or iPod touch - Apple Support

  • Not sure why this didn't work properly.

    So I programmed out a clock for practice/educational value for myself, and I got it near the end and encountered a problem. My program has 2 sets of class fields and a few temporary ones. The first set of class fields are text fields (hours, mins, secs) and the second set are Integers (h, m, s) (not int's ... Integers). I have two methods (setText and setTime) that convert between these two sets. setText sets the text fields to whatever time is stored in the Integers, and setTime sets the Integer values to whatever is stored in the text fields (assuming they're valid ints, of course).
    The code that was behaving strangely is shown below between the large comment lines. I needed some way to update the time, so I first tried changing the Integer values and then calling setText() ... but it didn't work. So I then tried setting the text fields and calling setTime() and that DID work. The end result of both should be the same, and yet it wasn't. I was wondering why not? Can anyone help/explain?
    I figure it has something to do with Integers and mutability, but that doesn't seem likely since they're both declared at the class-level and not within a method. I did some debugging of it (added System.out.println messages) and found out that the Integer value was changing, but then it was being reset back to what it was initially. bleh - I think I'm doing a bad job of explaining it. Anyway - here's the entire code below. It works correctly currently. But I left the bit of code in that wasn't working properly - just commented out. If you uncomment those and comment the 4 lines above them, you'll hopefully see what I'm talking about.
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.geom.Ellipse2D;
    import java.awt.geom.Line2D;
    import java.util.Calendar;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    import javax.swing.Timer;
    import javax.swing.event.DocumentEvent;
    import javax.swing.event.DocumentListener;
    // Math.sin, Math.cos, Math.tan use RADIANS .. not degrees.
    // 0 rad/deg is at east and proceeds clockwise for increasing angle
    public class myClock extends JFrame implements ActionListener, DocumentListener
         JTextField hours;
         JTextField mins;
         JTextField secs;
         Calendar now;
         ClockPane clock = new ClockPane();
         JPanel textPane;
         Integer m; double mrad;
         Integer h; double hrad;
         Integer s; double srad;
         myClock()
              setSize(300,360);
              setResizable(false);
              setTitle("Clock!");
              // get starting time
              now = Calendar.getInstance();
              hours = new JTextField(String.valueOf(now.get(Calendar.HOUR)%12), 2);
              mins = new JTextField(String.valueOf(now.get(Calendar.MINUTE)), 2);
              secs = new JTextField(String.valueOf(now.get(Calendar.SECOND)), 2);
              setTime();
              // set the document listeners
              hours.getDocument().addDocumentListener(this);
              mins.getDocument().addDocumentListener(this);
              secs.getDocument().addDocumentListener(this);
              // create visual layout of frame
              textPane = createSouthPane();
              add(textPane, BorderLayout.SOUTH);
              add(clock, BorderLayout.CENTER);
              // start clock update timer - updates every second (1000 milliseconds)
              new Timer(1000, this).start();
         public static void main(String[] args)
              myClock app = new myClock();
              app.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              app.setVisible(true);
         class ClockPane extends JPanel
              public void paintComponent(Graphics g)
                   super.paintComponent(g);
                   Graphics2D g2 = (Graphics2D) g;
                   Dimension dim = getSize();
                   double midx = dim.width / 2;
                   double midy = dim.height / 2;
                   Ellipse2D e = new Ellipse2D.Double(midx - 140, midy - 140, 280, 280);
                   g2.draw(e);
                   srad = s.doubleValue() / 60 * 2 * Math.PI;
                   mrad = m.doubleValue() / 60 * 2 * Math.PI;
                   mrad = mrad + srad / 60;
                   hrad = h.doubleValue() / 12 * 2 * Math.PI;
                   hrad = hrad + mrad / 12 + srad / 720;
                   srad = srad - Math.PI / 2;
                   mrad = mrad - Math.PI / 2;
                   hrad = hrad - Math.PI / 2;
                   Line2D shand = new Line2D.Double(midx, midy, midx + (e.getWidth() / 2 - 10) * Math.cos(srad), midy + (e.getHeight() / 2 - 10) * Math.sin(srad));
                   Line2D mhand = new Line2D.Double(midx, midy, midx + (e.getWidth() / 2 - 10) * Math.cos(mrad), midy + (e.getHeight() / 2 - 10) * Math.sin(mrad));
                   Line2D hhand = new Line2D.Double(midx, midy, midx + (e.getWidth() / 2 - 40) * Math.cos(hrad), midy + (e.getHeight() / 2 - 40) * Math.sin(hrad));
                   g2.setPaint(Color.BLACK);
                   g2.draw(hhand);
                   g2.draw(mhand);
                   g2.setPaint(Color.RED);
                   g2.draw(shand);
         private JPanel createSouthPane()
              JPanel p = new JPanel();
              p.add(new JLabel("Hours:"));
              p.add(hours);
              p.add(new JLabel("Mins:"));
              p.add(mins);
              p.add(new JLabel("Secs:"));
              p.add(secs);
              return p;
         // sets the Integer values of h, m, s to what the text fields read
         private void setTime()
              h = new Integer(hours.getText());
              m = new Integer(mins.getText());
              s = new Integer(secs.getText());
         // sets the text fields hours, mins, secs to what the Integer values contain
         private void setText()
              hours.setText(String.valueOf(h.intValue()));
              mins.setText(String.valueOf(m.intValue()));
              secs.setText(String.valueOf(s.intValue()));
         // action listener for Timer
         public void actionPerformed(ActionEvent e)
              int ss = s.intValue();
              int mm = m.intValue();
              int hh = h.intValue();
              ss++;
              mm = mm + ss / 60;
              hh = hh + mm / 60;
              ss = ss % 60;
              mm = mm % 60;
              hh = hh % 12;
              hours.setText(String.valueOf(hh));
              mins.setText(String.valueOf(mm));
              secs.setText(String.valueOf(ss));
              setTime();
    //          s = new Integer(ss);
    //          m = new Integer(mm);
    //          h = new Integer(hh);
    //          setText();
              clock.repaint();
         // document listener for text fields
         public void changedUpdate(DocumentEvent e)
              if (mins.getText().equals("") || hours.getText().equals("") || secs.getText().equals("")) ;
              else
                   setTime();
                   clock.repaint();
         public void removeUpdate(DocumentEvent e)
              if (mins.getText().equals("") || hours.getText().equals("") || secs.getText().equals("")) ;
              else
                   setTime();
                   clock.repaint();
         public void insertUpdate(DocumentEvent e)
              if (mins.getText().equals("") || hours.getText().equals("") || secs.getText().equals("")) ;
              else
                   setTime();
                   clock.repaint();
    }

    What does reading the text fields have to do with
    setting the text fields? You can set their values to
    anything you want. Look up MVC, which stands for
    model-view-controller. The text fields should only be
    used to display information from the model, which is
    a Calendar. The controller is the timer which updates
    the view with data from the model every second. I think you need to re-read everything that I've said up to now...
    It started out the program WITHOUT a timer, where the user would type in some numbers in the text fields and the time the clock displayed would change to match what they typed in. I wanted to keep this behavior simply because I wanted to. I wasn't attempting to make an actual authentic clock. After I had the program working, then I wanted to enhance it so that it altered itself, as well as the user still being able to alter it. I suppose if I were going to program it again from scratch, I'd probably have the clock have some int's at the class level and use those to make the text fields and such. Anyway --- this program is not (and never has been) about keeping accurate time.
    Creating a new object once a second isn't a big deal.
    If you depend on the Timer frequency to keep time, it
    will eventually drift and be inaccurate. Getting the
    system time each update will prevent that. You're
    updating the view based on the model, then updating
    the model based on the view's values, then updating
    the model. It's a much cleaner design to separate
    those parts clearly. Since this is for your own
    education you ought to start using good design
    patterns. I know they drift apart. That's not what I was interested in. And, afaik, "good design patterns" come with experience ... which is something that takes time to build and something that I am gaining. I'm not looking for a critique of my code here - I'm looking for a simple answer of why one approach worked properly and one didn't.
    Can you be more desciptive than "behaving strangely"?
    What's happening?Did you read my original post?
    One approach -> change the int's first, then update the fields.
    another approach -> change the fields first, then update the int's.
    One worked, one didn't.

  • Can someone help me figure out why this didn't work?

    I recently gave my iMac to my nieces....I erased and reinstalled the osx from my disks that came with the program.
    They HAD one of the Mac Minis (an old one...g4 I think).
    When we started up the iMac, I used the Firewire connection to transfer all the data during setup. we transferred everything.
    So far, I have encountered the following problems:
    1. When I opened iPhoto for the first time, it says "the library needs to be upgraded, etc etc...." so I choose to upgrade it, but the application QUITS.
    2. When I try to open iTunes for the first time, it says the the iTunes library was created using an older version and cannot be read. The application quits.
    3. The iMac is currently running OS Tiger, and when I try to put the Snow Leopard disk in, I couldn't even double click it to start it in order to install it?
    I have not yet tried any other applications, but does anyone know how I can fix this? I have started all of my new macs using the firewire and I've never had a problem. I am assuming it's because it was such "old" versions of the programs that there is a problem?
    The only thing that I can think of, was to possibly erase and reinstall again, NOT use firewire, set the computer up without the mini, and then somehow bring her photos over to the iMac separately ? Can this be done ? Will I be able to start the iMac and use the same user settings (names, passwords, etc).
    Any help would be appreciated...this is the first time it didn't "just work" and I am lost !

    christine major wrote:
    The only thing that I can think of, was to possibly erase and reinstall again
    that might not be a bad idea. and, yes, you should use the +firewire method+ to migrate @ least some of the data using setup assistant (which launches automatically once you have reinstalled OS X). you should be able to safely migrate everything but applications. i would re-install 3rd party applications manually and, since you migrated the user data earlier, you will find that you won't have to re-enter any license numbers or settings.
    Pondini has a brilliant [walkthrough|http://web.me.com/pondini/AppleTips/Setup.html] for you. just deselect the applications @ the prompt.
    when the migration process is done, i would immediately +repair permissions+, then restart. next, i would run software update from the  menu and install any updates offered. repair permissions again and restart.
    @ this stage, you might want to try to upgrade to SL again.
    as for the iTunes library, the simplest way would again be to connect the two Macs with a firewire cable, boot the source Mac in _*Target Disk Mode*_ (TDM), and copy the entire iTunes folder (not just the iTunes music folder) from <MacintoshHD>/users/<yourname>/music on the source (Mini) to <MacintoshHD>/users/<yourname>/music on the target (overwriting the iTunes folder in place there). since you updated all software components earlier, you shouldn't see that error message again.
    the iPhoto library can be copied manually, too. again, using TDM, just drag and drop from source to target. see this user tip for locations: _*where important data is stored*_ (one correction to this link: iCal data is stored in ~/library/calendars).
    JGG

  • TS3789 This didn't work.

    This did not help one bit for me.  I did everything suggested here. Most movies the audio does not work.

    Never mind, I didn't wait long enough.  While it was _doing_ the process it displayed the 2 name, but when it finished it revealed that they have been named properly.  Sorry.

  • Tried to install latest version of adobe air using file hippo, this didn't work so uninstalled adobe air in the hope of reinstalling but this didn't work either.

    Hi,
    I tried to install an update for adobe air 11 yesterday, at the end of the process I got the message "An error occurred while installing Adobe AIR. Installation may not be allowed by your administrator. Please contact your administrator."
    After I click close, Windows Program Compatability Assistant opens saying "This program might not have installed correctly" and offers to "Reinstall using recommended settings".
    When I click on "Reinstall using recommended settings", the same message comes up about the error and contact the administrator.
    I use Google chrome and FileHippo update checker, I have also uninstalled the version of adobe air that was on my computer in the hope I could install the current version but unfortunately the error message is all I get.
    If you need any further information I will be happy to help, although I have forgotten how to do a screenshot.
    Regards,
    Helen Smith.

    A reply to myself! Thanks to Adobe support I needed to update the Adobe Applications Manager to the Creative Cloud App which so far appears to have fixed the problem

  • HT4527 This didn't work for me. What happened?

    I moved my itunes folder from my Power PC G4 to my new MacBook Pro (intel), but itunes will not open up my library.  What can I do to d]fix this?

    My old itunes folder was kept on my external drive. I never had it on my old imac (power pc g4).  I dragged the itunes folder into my new computer (macbook pro) in Users/myname/music/itunes. Itunes doesn't even recognize the playlist.  Is this because my Power PC is old and incompatible (I bought it in 2003)? I tried to select the old library (by holding down optionkey, etc.), but it still didn't rread it.

  • 5.iTunes will alert you that it has detected a device in recovery mode. Click OK, and then restore the device. this didn't work as itunes can't connect as the passcode is still enable on my iphone. please hlep me wipe my iphone 4s

    how do I wipe my iphone4S as I've followed the suggested support papers up to number 5, but it's not working.
    I have forgotten my passcode and I know I will be to wipe the iphone but I can't find any instructions that actually work.
    PLEASE HELP

    Either force the phone into recovery mode, as described here:
    http://support.apple.com/kb/ht1808
    Or, login to iCloud.com, on your computer, locate the phone, then erase it.
    Either will remove the passcode.

  • HT1212 My daughter forgot her passcode on her ipod. tried the restore info given by Apple and it didn't work.  Any more suggestions?

    My daughter forgot her passcode to her ipod touch.  I tried the restore information that I found online through Apple support, but this didn't work.  Any other suggestions? 

    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    Forgotten Restrictions Passcode Help
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    Also, see iTunes- Restoring iOS software.

  • I made upgrade for IOS to 7.04 but my iphone is second hand and when iphone need to make activation ,i don't have the apple ID so my iphone didn't work from this time so please help me urgent

    I made upgrade for IOS to 7.04 but my iphone is second hand and when iphone need to make activation ,i don't have the apple ID so my iphone didn't work from this time so please help me urgent.

    There isn't one.
    amrzaky wrote:
    I can't contact with previous owner s i need another solutoin
    The Apple ID and Password that was Originally used to Activate the iDevice is required.
    If you cannot get this information from the seller
    Removing a device from a previous owner’s account
    You need to return the Device for a refund, as you will not be able to re-activate it.

  • When i update my iPhone 4s through iOS 7 with my mac, i tunes told me that an upgrade was necessary to sync with the new iOS 7 and of course i updated my iTunes to the ultimate version but my mac didn't work with this version of i tunes. What can i do

    when i update my iPhone 4s through iOS 7 with my mac, i tunes told me that an upgrade was necessary to sync with the new iOS 7 and of course i updated my iTunes to the ultimate version but my mac didn't work with this version of i tunes. What can i do

    Hello,
    Only option is upgrading your Mac's OSX, since Apple will not allow iOS to go backwards.
    Snow Leopard/10.6.x Requirements...
    General requirements
       * Mac computer with an Intel processor
        * 1GB of memory (I say 4GB at least, more if you can afford it)
        * 5GB of available disk space (I say 30GB at least)
        * DVD drive for installation
        * Some features require a compatible Internet service provider; fees may apply.
        * Some features require Apple’s MobileMe service; fees and terms apply.
    Which apps work with Mac OS X 10.6?...
    http://snowleopard.wikidot.com/
    Call Apple Sales...in the US: 1-800-MY-APPLE. Or Support... 1-800-275-2273
    Other countries...
    http://support.apple.com/kb/HE57
    It looks like they might still have it...
    http://store.apple.com/us/product/MC573Z/A?fnode=MTY1NDAzOA

  • HT1351 Some of the songs I bought from iTunes will not sync to my iPhone.  They show up on my phone, but the letters look faed and I can't play them.  How do I fix this?  I tried restoring my iPhone and it didn't work.

    Some of the songs I bought from iTunes will not sync to my iPhone.  They show up on my phone, but the letters look faed and I can't play them.  How do I fix this?  I tried restoring my iPhone and it didn't work.

    Sorry, I meant the letters look "faded" not faed.

  • TS1717 Started a software update this morning which didn't work.  Now Itunes will not open at all.  I get the following message."The program can't state becasue MSVCR80.dll is missing from your computer."

    Started a Itunes software update this morning which didn't work.  Now Itunes will not open at all.  I get the following message."The program can't state becasue MSVCR80.dll is missing from your computer."

    There are a couple of options that I know of to fix the issue.
    One is listed in this thread - https://discussions.apple.com/message/24606478#24606478 - and involves uninstalling iTunes and related components and then re-installing iTunes.  You will need to read the instructions in the thread to see the correct uninstall order.
    Second option is use System Restore to set your system back to a date prior to the iTunes update.  I did this before finding the thread mentioned above.
    Not sure exactly what the problem is but I know, after a search, that MSVCR80.dll was indeed already installed on my computer. 
    Message was edited by: karivers

  • I have a 2008 black macbook and access UK tv through a purchased proxy site. I want to buy a sony bravia internet connected tv to watch the channels in more comfort. Sony tell me this won't work - that the tv cannot capture my macbook content. Any advice?

    I have a 2008 black MacBook and acess UK tv through a puchased proxy. I want to purchase a Sony Bravia internet connected tv and stream the site through a tv - Sony tell me this won't work - that a latest model tv cannot capture content and sites from a MacBook - is this true???? Surely there is a solution? Any help or advice welcome.

    They are correct.  The only stream you can wireless connect the TV to a Mac is through an AppleTV, and that's purchased content on iTunes, and your own homemade content that is H.264 MPEG-4 that is 1800kbps.   Conversion of commercial video to that format is illegal, and hence how can not be stated on the forum.    Alternatively, as long as the TV is HDMI, you can wired connect it to your MacBook using the same advice here:
    https://discussions.apple.com/message/16531141#16531141

  • I recently bought some songs from itunes, and I tried to sync my mac air laptop to my nano ipod, but it didn't work. I usually use my PC computer to do this, and my music is in the itunes library on my mac, it just won't sync to my ipod. Any ideas?Thanks!

    I recently bought some songs from itunes, and I tried to sync my mac air laptop to my nano ipod, but it didn't work. I usually use my PC computer to do this, and my music is in the itunes library on my mac, it just won't sync to my ipod. When I tried to sync my ipod to my PC to see if the computer was the problem, my recently purchased songs still didn't show up. Any ideas as to what to do? Thanks!

    http://www.everythingicafe.com/quick-tips-how-to-delete-songs-from-your-iphone-i pad-or-ipod-touch/2012/02/14/

Maybe you are looking for