HT5622 How can I SEE the hundreds of past apps I've purchased and then removed from my puny 10GB iPod Touch 4?

I've spent hundreds of dollars on apps selected by 4 grandchildren, and I just as quickly I remove them when they're no longer visiting.  I assumed they were stored in the cloud (I've purchased extra space) and that I could always retrieve them.  But I need a reminder of all of these apps (mostly games) that I've already purchased.  (I even removed them from my Mac Air, which has only 60GB storage.)
Do I need to perform an addtional operation--like select storage or back-up--to ensure all of these purchases go to the Cloud after the initial download?  Or are they they there "automatically," requiring perhaps my Apple ID and password?   And, if so, where--either on the tiny iPod or my computer or both--can I retrieve a list of my apps in the cloud.  (My reasons are simply:  1. to avoid repurchasing the same app; 2. to remind myself of the games preferred by my granddaughters.
Thanks for any directions.
Sam

Hi Samuel.
You can see and redownload your purchased apps at app store > updates > purchased.
The Apps aren't actually in your iCloud storage, what you see is your purchase history with links to the originals in the app store, so you didn't need to purchase extra storage. However you should also be aware that if they are subsequently removed from the store, you wont be able to redownload them.

Similar Messages

  • How  can I see the previews of my D610 in bridge cs5 and how can I open them in my CC photoshop?

    How  can I see the previews of my D610 in bridge cs5 and how can I open them in my CC photoshop?

    Nah. Raw support is version specific and that extends to Bridge as well. Older versions simply won't handle new cameras. If this is important to you, you will have to use Bridge CC.
    Mylenium

  • I lost CS2 when I upgraded to OSX Yosemite.  I want to install Lightroom. Can I transfer the Lightroom 5 software to an SD card and then download from that to my computer?

    I have a 2009 21.5 iMac with malfunctioning internal disk drive. I lost CS2 when I upgraded to OSX Yosemite.  I want to install Lightroom. Can I transfer the Lightroom 5 software to an SD card and then download from that to my computer?

    you need the installation files, not copies of installed programs.
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.6| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • How can I see the Skype icon on my ipad after downloading and restarting?

    I downloaded Skype on my iPad and see that it is in settings under apps but I don't have the icon on the home page. I have restarted the iPad and nothing changed. Please help me.

    Lilian,
    Typically, when you download a new app, it is loaded on the last page or screen - click your your home button and swipe right-to-left and look on each screen for your Skype Icon.

  • On my ipad 2 I can't "see" the hundreds of spoken audio tracks that are in my itunes and on my ipod touch. Is there something I didn't do during sync up?

    On my ipad 2 I can't "see" the hundreds of spoken audio tracks that are in my itunes and on my ipod touch. Is there something I didn't do during sync up? The tracks are from voice recordings that were downloaded from an extrernal drive and weren't necessarily tagged as spoken audio. Do I need to go back into itunes and relabel these tracks so they will show up on my ipad2?
    Thanks in advance for your help!

    With the iPad connected to the computer, while iTunes is running, click on the iPad name on the left side under devices. Click on the Movies tab and look for Movie Rentals. You want to "Move" the films to the iPad.

  • How can I see the old backups of my previous Macbook done by Time machine in a Time capsule with my new iMac?

    How can I see the old backups of my previous Macbook done by Time machine in a Time capsule with my new iMac? I've changed from a Macbook to a iMac because that one stopped working and I cannot use it anymore. I've been able to import all the data of the last backup of the Macbook when setting the new iMac, but I cannot access now to the old backups of the Macbook and there are information that wasn't in the last backup and I would like to recover. Thank you very much.

    Yes, you can ..
    Read Q17 here.
    http://pondini.org/TM/FAQ.html
    Strongly recommend his whole section.. 14-17 and read it carefully to understand the ways you can make TM work for you.

  • How can I see the contents in a Ref Cursor

    I have this code:
    CREATE OR REPLACE PACKAGE APOD_LOG.APOD_C3_LOG_API_PKG
    AUTHID CURRENT_USER
    AS
    type rc is ref cursor;
    PROCEDURE Fetch_Log_Spec
    in_LOCAL_IP_VALUE IN BINARY_INTEGER,
    out_RESULT_SET OUT rc
    END APOD_C3_LOG_API_PKG;
    CREATE OR REPLACE PACKAGE BODY APOD_LOG.APOD_C3_LOG_API_PKG
    AS
    PROCEDURE Fetch_Log_Spec
    in_LOCAL_IP_VALUE IN BINARY_INTEGER,
    out_RESULT_SET OUT rc
    IS
    BEGIN
    DBMS_APPLICATION_INFO.set_module(module_name => 'APOD_LOG.API_PKG',action_name => 'Fetch_Log_Spec');
    DBMS_APPLICATION_INFO.set_client_info(client_info => 'Calling with in_LOCAL_IP_VALUE = ' ||to_char(in_LOCAL_IP_VALUE));
    open out_RESULT_SET for
    select
    in_LOCAL_IP_VALUE as IN_LOCAL_IP_VALUE,
    10002 as PORT,
    APOD_CORE.UTIL_IP_PKG.IPAddressToIPValue2('''224.168.100.1''') as MULTICAST_IP_VALUE
    from
    dual
    union
    select
    in_LOCAL_IP_VALUE as IN_LOCAL_IP_VALUE,
    10002 as PORT,
    APOD_CORE.UTIL_IP_PKG.IPAddressToIPValue2('''224.168.200.1''') as MULTICAST_IP_VALUE
    from
    dual
    union
    select
    in_LOCAL_IP_VALUE as IN_LOCAL_IP_VALUE,
    10002 as PORT,
    APOD_CORE.UTIL_IP_PKG.IPAddressToIPValue2('''224.168.100.123''') as MULTICAST_IP_VALUE
    from
    dual
    union
    select
    in_LOCAL_IP_VALUE as IN_LOCAL_IP_VALUE,
    10002 as PORT,
    APOD_CORE.UTIL_IP_PKG.IPAddressToIPValue2('''224.168.200.123''') as MULTICAST_IP_VALUE
    from
    dual;
    DBMS_APPLICATION_INFO.set_client_info(client_info => 'Called Fetch_Log_Spec '||to_char(SQL%ROWCOUNT)||' row(s) returned with in_LOCAL_IP_VALUE = '||to_char(in_LOCAL_IP_VALUE) );
    END Fetch_Log_Spec;
    END APOD_C3_LOG_API_PKG;
    And I am trying to test it like this:
    DECLARE
    IN_LOCAL_IP_VALUE BINARY_INTEGER;
    OUT_RESULT_SET APOD_LOG.APOD_C3_LOG_API_PKG.rc;
    BEGIN
    IN_LOCAL_IP_VALUE := 23374048;
    -- OUT_RESULT_SET := NULL; How do I see this
    APOD_LOG.APOD_C3_LOG_API_PKG.FETCH_LOG_SPEC ( IN_LOCAL_IP_VALUE, OUT_RESULT_SET );
    END;
    How can I see the dataset returnd by the OUT_RESULT_SET in SQLPlus or Quest ScriptRunner?

    A ref cursor doesn't really contain rows but you can use them to reference a SQL statement that fetches the rows.
    Re: returning resultset from procedure...or pkg

  • Recently I bought an Ipad, now I need to find the old owner, so he can unlock it, but the full e-mail isn't written. How can I see the old e-mail?

    So, yesterday I bought an Ipad 3 16gb. when I unpacked it, I found that it is locked, so I need the previous owner to unlock it. For the bad cause, the owner is from UK, and I've bought it from a  intermediary in Bulgaria. How can I see the full email so I can contact him?

    Apple will not provide that information unless order to do so by a court order.  Your only option at this point is to return it to the intermediary and get your money back.  They should not have sold you a locked device.  Then don't buy another device without confirming that it isn't locked, as explained under "how do I check for activation lock before buying a used device" in this article: Find My iPhone Activation Lock.

  • How can i see the "manage devices" in my itunes account? because i want to remove a device from using my apple id. tnx so much

    how can i see the "manage devices" in my itunes account? because i want to remove a device from using my apple id. tnx so much

    Thanks pvonk, I will try downloanding the book from the Iphone right now.......
    Just tried to download and it wants me to buy it again?  Is there some way around this?  I guess I thought that was the whole point of the cloud, buy it once and access from any of your devices right?
    Also, I have logged into the icloud.com as suggested and will plink around there for a bit and try to understand.  It is just all so dang different that what I am used to; Apple's way, that is.
    Thanks again for the Icloud tip and if you know of a way to download without making a 2nd purchase I would sure love to hear it!
    Geez. one other thing (I guess I am complaining) but I bought more space in the cloud, they took my cash fast enough but have not yet increase the size of my storage space yet?  Is Apple sometimes slow to get internal stuff done?

  • How can I see the url of a link before clicking on it?

    Hi. I have Firefox 10.0.2. I used to be able to see the url of a link on web pages in the bottom left of the browser. That way, if I the url didn't seem legit I wouldn't click on the link. But now, when I put the mouse over a link, nothing comes up. How can I see the link addresses again? Thanks.

    The Status Bar. where the link previously showed on mouse hover, has been replaced by the Add-on Bar. You can install the following add-on to get some of the former Status Bar functions back. The Add-on Bar must be turned on. The add-on will also stop the showing of the "tooltip" type status loading text, and will, instead, show it in the Add-on Bar:
    *See --> https://support.mozilla.org/en-US/kb/what-happened-status-bar
    *To turn on the Add-on Bar, see --> https://support.mozilla.org/en-US/kb/Back%20and%20forward%20or%20other%20toolbar%20items%20are%20missing#w_showing-the-navigation-toolbar '''and click on "Add-on Bar" to check it'''
    *Add -on '''''Status-4-Evar''''': https://addons.mozilla.org/en-US/firefox/addon/status-4-evar/
    *If necessary, after install and restart:
    **Open Customze window (Firefox button > Options > Toolbar Layout '''''OR''''' View > Toolbars > Customize '''''OR''''' ALT+V+T+C '''''OR'''''right-click in the empty space at the end of the Tab Bar and choose Customize)
    **'''While Customize window is open''', drag any or all of the following from the Customize window to the Add-on Bar in the order and position you want them to appear. Then click "Done" button at lower right on the Customize window.
    ***"Status Text" ('''''link on mouse hover or during page loading''''' or "Done" when page is loaded)
    ***"Progress Meter" (progress bar of page loading)
    ***"Download Status" (status of download)
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.org/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.org/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.org/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *'''''Next Generation Java Plug-in for Mozilla browsers''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • How can I see the tracklist in the Podcast app (like I can in the Music app in ios6)?

    When playing a podcast in the Music app in ios6, I can tap the screen and see the track list.  How can I see the track list in the Podcast app in ios7?

    Dakota
    The table MARV holds the current and previous values for the purchasing period and who changed them.  The table is usually set for logging of changes and you may be able to find the history you want depending on how your database is setup.  I hope this helps.
    Regards
    H

  • My daughter has an iPod touch and is emailing a much older boy via text free app she downloaded. How can I see the conversations? Please help and thank you

    Please help me...My 12year old daughter has been talking to a older teenager through the text free app. How can I see the conversations? Also, there is a photo vault that is locked. What is that? Please someone help me. I don't know what else to do. I paid and downloaded a program that is supposed to tell you everything that's on the ipod but that was a joke. Thanks for your help.

    As long as you can't get a hold of the device, you can't do anything more than talking to your daughter about it.
    Erasing the device could also be an option to keep her from using apps you don't want her to have on her device.
    Try talking first

  • After burning a successful DVD in iDVD out of FCPX, how can I see the settings it used?   So I finally burned a DVD out of a Apple Pro Res file into iDVD in PAL format. My question now is how can I find out what the exact burn properties were so that I ca

    After burning a successful DVD in iDVD out of FCPX, how can I see the settings it used?
    So I finally burned a DVD out of a Apple Pro Res file into iDVD in PAL format. My question now is how can I find out what the exact burn properties were so that I can apply the same burn properties to a project in Compressor 4?
    Is it possible to see what iDVD did?

    I don't know any way you can interrogate iDVD to reveal settings to the extent that you can in a Compressor project. What you could do is open up the show's VOB in MPEG STreamclip, go to File and Reveal Stream Information; that will at least give you some rudimentary info like average bit rate. Perhaps someone, with more iDVD experience, can chime in here.
    The broader question is why use Compressor at all if your current workflow is doing the job to your satisfaction?
    The value of Compressor is that it gives you control over the many parameters that affect size quality.  and playability. The Compressor presets can give you a starting point for DVD delivery, Web, etc. From those presets, people typically experiment by adjusting the parameters until they get the desired results for their specific show. It's a little bit science and a little bit art. After experimenting, you may be able to get slightly better quality for the project you've successfully burned in iDVD by using Compressor and something likeToast…or maybe not.
    Good luck.
    Russ

  • I try to find something on my iPad, many results are emails, when I push on an email I can't see the email, because I get ever the first email,or the previous selected email in my inbox. How can I see the email selected?

    I try to find something on my iPad, many results are emails, when I push on an email I can't see the email, because I get ever the first email,or the previous selected email in my inbox. How can I see the email selected?

    Is your Yahoo account set up as POP3 or IMAP?

  • CAT2 - How can I see the rate assigned to an activity type?

    In transaction CAT2, there is a column named ActTyp (Activity type). How can I see the rate assigned to this activity type (example: 50$/hour pour activity type Project management) ?
    Thanks,
    Julien

    Hi Julien,
    plz goto KP26 and enter the acitvity type and cost center of the work center and check the price ..
    regrds
    pushpa

Maybe you are looking for

  • IPod Not Being detected by windows.. pls hepl!!!!!!!!!!!

    i have a 5.5 gen ipod 30 gig video. whenever i connect it to my computer, it says 'the usb device attached to the computer has malfunctioned and windows does not recognise it' is there something wrong with my ipod motherboard?? in the meantime it pla

  • ArchiveLink

    Hi, This is the scenario: An Incoming mail with a PDF attachment is received in SAPconnect (SMTP). The attachment to the mail is stored as a KPRO document. The physical and logical ids and the class (SOFFPHIO) can be obtained. The requirement is to c

  • Importing Configuration Objects into IB

    Hello, I exported Config objects from DEV and successfully imported into QA.I copied the 'tpz' file in production import directory. But it is not available for import in the 'import source' list. I have done this many times and never got this problem

  • Windows 2003 Server Service Pack 2 for product version 4.0.1.0.03

    Hi Experts, A customer wants to know if there Are any known issues with applying Windows 2003 Server Service Pack 2 for product version 4.0.1.0.03 . i gave him the answer that SP2 is not tested for that version hence it is not supprted. So he now ask

  • Where's the mighty mouse pdf manual?

    I can't find it on Apple's site. thanks