MobileMe Album in Project List

I used to have my MobileMe album show up in my Project List when I opened Aperture, but not anymore. I can't find what I did wrong to have it dissapear. Need help configuring it back.

This has just happened to me as well. MobileMe doesn't appear as a group header at all. It appears to have done it to me after I briefly switched my MobileMe synch settings in Aperture to manual due to network issues badly impacting Aperture performance. As a result, it has lost all of my MobileMe albums, even though I have switched the synch period back onto automatic.
Graham.

Similar Messages

  • Is it possible to export all information (metadata, list of pictures within each album or project) about ALL pictures in Aperture to text files, in a single operation?

    I have downloaded a trial version of Aperture because I would like to switch from using Picasa and gimp to using Aperture.  I already know that I want to use Aperture, and that I cannot learn how in 30 days.  I want to use the 30 days to see if I can solve a different problem: bulk export of all information except edits and versions from Aperture.
    I want to avoid locking information (other than than the edits and version information that Aperture maintains) about my photos into any one piece of software.
    Picasa stores a copy of almost all its information in text filies (mostly XML or .ini format) that are scattered through its picture library.  These files can be scanned and found by use of Mac OS X tools that are availabe in Terminal (at the bash command line).  All of the information about albums, faces, etc can be exported by a single command (after wtiting the progams that the command will initiate.  I have not yest found any similar files in Aperture.
    Aperture supports the export of EXIF and IPTC metadata, but only for selected photos, and does not appear to support the export of other information at all.
    What I would like to do with a single operation, from either Aperture or Terminal, is to export the entire arrangement of phost ins albums and projects, lists of albums, projects and phots with all metadata (including added keywords) attached to each, and for referenced photos, the external file name.  I do not care if would be in one file or many different text files, because Mac OS X provides all the tools I would need to extract the information I would want from any number of text files.
    This would allow me to reconstruct all of the information about my photos (except for edits and versions) outside Aperture, and to use that info in a database outside Aperture.  I would then be able to use Aperture while still being able to do everything that I could do with Picasa.
    The most helpful form of an answer to this question might be a list of places to look in the Apple support and Apple developer documentation.  It is difficult to teach me anything complicated, but I am fairly good at figuring out things from documentation.

    The following script recursively lists the content of an Aperture library.  The output is simple, for demonstration puposes, but could be modified to XML.  If the XML were that of a PLIST, the Apple Property List viewer oculd be used to diaplsy the output.
    A simlar script produces all of the keywords and tags for all of the images in Aperture.
    The scripts run much faster in the shell than in the AppleScript Editor bcause the shwll produces no debugging or monitoring information.
    #!/usr/bin/env osascript
    (*    Demo: list the containment hierarchy in Aperture, starting from libraries.
        Runs from AppleScript Editor, or as a shell command
        References:
            Aperture 3 AppleScript Reference Manual,
                particularly the Containment Diagram in Appendix A
                from the link on "Aperture Resources" web page at http://images.apple.com/aperture/resources/
            Aperture AppleScript Dictionary, accessed from AppleScript Editor
        Ian E. Gorman
    global outputFile
    set outputFilePath to "/Users/ian/prj/sw/AppleScript/ApertureContainment.txt"
    global lineEnd
    set lineEnd to "
    global tabChar
    set tabChar to "    "
    on writeText(str)
        write str to outputFile
    end writeText
    # Open the file, guarantee closure after any error, and list the contents of Aperture libraries
    try
        set outputFile to open for access POSIX file outputFilePath with write permission
        set eof outputFile to 0 # truncate the file, if it already exists
        my listAll()
        close access outputFile
    on error errorMsg number errNum from offendingObj partial result resutList to expectedType
        try
            display alert "Operation failed, attempting to close output file" & lineEnd & "Error number " & errNum & ": " & errorMsg
            close access outputFile
            display alert "Operation failed, but output file has been closed"
        on error
            display alert "Operation failed, also failed to close output file"
        end try
    end try
    # top-level in Aperture
    on listAll()
        tell application "Aperture"
            repeat with eachLibrary in libraries
                my listLibrary(0, eachLibrary)
            end repeat
        end tell
    end listAll
    on listLibrary(level, thisLibrary)
        local newLevel
        set newLevel to 1 + (level as integer)
        tell application "Aperture"
            my writeText((newLevel as rich text) & tabChar & "library" & tabChar & (name of thisLibrary) & lineEnd)
            repeat with eachAlbum in albums of thisLibrary
                my listAlbum(newLevel, eachAlbum)
            end repeat
            repeat with eachFolder in folders of thisLibrary
                my listFolder(newLevel, eachFolder)
            end repeat
            repeat with eachProject in projects of thisLibrary
                my listProject(newLevel, eachProject)
            end repeat
            repeat with eachImageVersion in image versions of thisLibrary
                my listImageVersion(newLevel, eachImageVersion)
            end repeat
        end tell
    end listLibrary
    on listAlbum(level, thisAlbum)
        local newLevel
        set newLevel to 1 + (level as integer)
        tell application "Aperture"
            my writeText((newLevel as rich text) & tabChar & "album" & tabChar & (name of thisAlbum) & lineEnd)
            repeat with eachImageVersion in image versions of thisAlbum
                my listImageVersion(newLevel, eachImageVersion)
            end repeat
        end tell
    end listAlbum
    on listFolder(level, thisFolder)
        local newLevel
        set newLevel to 1 + (level as integer)
        tell application "Aperture"
            my writeText((newLevel as rich text) & tabChar & "folder" & tabChar & (name of thisFolder) & lineEnd)
            repeat with eachAlbum in albums of thisFolder
                my listAlbum(newLevel, eachAlbum)
            end repeat
            repeat with eachFolder in folders of thisFolder
                my listFolder(newLevel, eachFolder)
            end repeat
            repeat with eachProject in projects of thisFolder
                my listProject(newLevel, eachProject)
            end repeat
            repeat with eachImageVersion in image versions of thisFolder
                my listImageVersion(newLevel, eachImageVersion)
            end repeat
        end tell
    end listFolder
    on listProject(level, thisProject)
        local newLevel
        set newLevel to 1 + (level as integer)
        tell application "Aperture"
            my writeText((newLevel as rich text) & tabChar & "project" & tabChar & (name of thisProject) & lineEnd)
            repeat with eachAlbum in albums of thisProject
                my listAlbum(newLevel, eachAlbum)
            end repeat
            repeat with eachSubfolder in subfolders of thisProject
                my listSubfolder(newLevel, eachSubfolder)
            end repeat
            repeat with eachImageVersion in image versions of thisProject
                my listImageVersion(newLevel, eachImageVersion)
            end repeat
        end tell
    end listProject
    on listSubfolder(level, thisSubfolder)
        local newLevel
        set newLevel to 1 + (level as integer)
        tell application "Aperture"
            my writeText((newLevel as rich text) & tabChar & "subfolder" & tabChar & (name of thisSubfolder) & lineEnd)
            repeat with eachAlbum in albums of thisSubfolder
                my listAlbum(newLevel, eachAlbum)
            end repeat
            repeat with eachSubfolder in subfolders of thisSubfolder
                my listSubfolder(newLevel, eachSubfolder)
            end repeat
            repeat with eachImageVersion in image versions of thisSubfolder
                my listImageVersion(newLevel, eachImageVersion)
            end repeat
        end tell
    end listSubfolder
    on listImageVersion(level, thisImageVersion)
        local newLevel
        set newLevel to 1 + (level as integer)
        tell application "Aperture"
            my writeText((newLevel as rich text) & tabChar & "image version" & tabChar & (name of thisImageVersion) & lineEnd)
        end tell
    end listImageVersion

  • Mobileme Album List disappearing from Aperture Library

    My MobileMe Album list disappeared from my Aperture Library a few days ago.
    Aperture activity window shows "MobileMe - Retrieving Album List" every time I start up Aperture, and quits without error messages, but no album list appears.
    Anyone know how I can get my MobileMe album list back?
    Thank you.

    Upon further investigation of this new 'feature' I came upon the following.
    In my above example, let's say I have my Library A open.
    I can see the MobileMe albums of the other libraries (B and C) that do not belong in A.
    I just clicked on a MM Album of library B and it is now synchronising the contents of this Album with my Library.
    So now I have photo's of MM Albums B and C showing up INSIDE MY LIBRARY A
    Good grief APPLE !
    It get's even worse. The synced photo's manifest themselves inside smart folders, ilife media browser and iphone/ipad syncs !!!
    I'm having genuine problems with some aspects of Aperture since version 3.0, there is an open bug in bugreporter that seems to be unsolvable, and after 8 months of bugfixing (february 3.0.1 to November 3.1) this is what they come up with ???
    The worst part is that it seems this new 'feature' was intentional :
    http://aperture.maccreate.com/2010/10/28/aperture-3-1-shows-every-gallery-every- gallery/

  • How do I get rid of empty MobileMe albums that Aperture 3.4.5 won't let me delete?

    I'm running Aperture 3.4.5 in OS X 10.8.4.  I dumped my MobileMe Galleries when I switched to iCloud last year.  But I just noticed that Aperture still shows icons for MobileMe albums in my Projects list, even though they are empty and aren't linked to any web account (they don't appear in the "Preferences: Web: Accounts" list). When I select one of them and choose "File: Delete MobileMe album," the album's web broadcast icon changes to a warning sign.  But there's no explanation of what the warning means. AND the album remains in the Projects list.  How can I get rid of these ghosts?

    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.
    If you have a normal http connection or a secure connection with mixed content the the Site Identity Button is a basic globe.
    *https://support.mozilla.org/kb/Site+Identity+Button
    *http://blog.mozilla.org/ux/2012/06/site-identity-ui-updates/

  • IWeb 08 / Aperture 2 / MobileMe albums "No albums or movies available"

    I've searched the forums and there doesn't seem to be a resolution for this. It seems the issue has been known about for quite some time now; hard to believe Apple is just ignoring this.
    basics:
    I created MobileMe albums via Aperture 2. I open iWeb '08 and go to insert the album and get this message: "No albums or movies available"; this message also appears via the Widget add. The albums are NOT password protected.

    Well I have found a work around... Though others need to test it as well as me.
    Log into me.com and open the gallery you prepared in aperture.
    Select the "Adjust the settings for this album" button at the top, then select the pop-up that says "Syncs with" and choose "iPhoto" instead of "Aperture".
    Press "Publish".
    That's it, the gallery now appears in the iWeb Widgets list!
    Also it still syncs with Aperture, both way

  • How do I export a movie from imovie to a particular mobileme album

    The Mobileme Gallery option in the Share menu of iMovie does not provide for exporting to a particular mobileme album. What is the best way to do this?

    You can do it any of four ways.
    1) SHARE/to iTUNES
    In this case you can right-click on the movie in iTunes and select reveal in Finder. Then open Facebook's video import page and navigate to your movie.
    2) SHARE/to Media Browser
    I don't recommend this way because it is easy to inadvertently mess up an important file if you don't know what you are doing. But if you want to, you can find your movie inside the project RCPROJECT package in the movies folder.
    Then open Facebook's video import page and navigate to your movie.
    3) SHARE/to Movie
    You will get a dialog box allowing you to save the movie to a place of your choice. You can upload it to youtube from there.
    4) SHARE/Export to QuickTime. Here you can customize the setting of your video. Unless you have a great deal of knowledge about video and audio codecs, use the above options, which create great results for Facebook.

  • Mobile Me Galleries in Aperture Project List

    If I create a mobile me gallery in aperture it appears on the project list, near the top under mobile me galleries. That's fine, until I close aperture and then the next time I open it I don't have any mobile me galleries listed. It hasn't always been like this, I first noticed it about a month ago but it might have happened before then. The galleries are still on my .me space, I know that I haven't deleted them. However if I go into Aperture, preferences and go on the mobile me tab I can see all the galleries listed, I then have to click the 'check now', the galleries then reappear in my project list, although sometimes I have error messages during the process. So whilst I can get around the problem, it's not ideal and I'd really like to have all my published galleries in my project list so I can edit them. I'm using Aperture 2.1.2 and OS 10.4.11.
    Has anyone else had a similar problem - any suggestions and help would be much appreciated.
    Many thanks
    Berni

    A gallery can be integrated into your website by linking to it.
    If you want to have the gallery in the main navigation you will have to hide the standard one and build your own. The gallery link in this menu will be an external link and should be set to open in a new window so that viewers don't have to use their back button.
    See....
    http://iwebfaq.org/site/iWebNavigationmenu.html
    ... for building our own.
    You can also link to a Mobile Me gallery by clicking on the widget icon, selecting MobileMe Gallery and selecting the particular one from the list.

  • I just upgraded to the new Photo and find a few things missing. May find more later. My Events are gone. Also, the Albums and Projects that I created that were on the left side tab of iPhoto are now gone. Where are they?

    Where are my Events from the old iPhoto? Also, where are the albums and projects I created that were on the left side tab in my old iPhoto?

    Hersco wrote:
    After importing my iPhoto Library no Events became Albums. Some of my Albums are still Albums, but many are missing from the Albums tab and Sidebar. One of the Albums listed has no photos when it should have 142. Another is missing nearly all of its photos. I found some missing Albums by name via the search window. Yet they remain missing from the Albums tab. Very strange indeed. This is one big mess right now! Thank goodness iPhoto still works.
    Yes, it's a mess for sure, and I've lost confidence in it for now.  First attempt, 5 photos came up missing.  Delete and start over, then after second attempt 18 photos go missing.  Even one single missing photo is a real confidence breaker for me.
    After conversion, and activation of the sidebar, all of my Events were migrated into a single "Photos" Album called "iPhoto Events".  Why would I want "legacy" Events segregated into one big Album?  What the heck am I supposed to do with that?  That's useless if new photos are going to be organized in some other way moving forward.  I cannot imagine new photos automatically putting themselves into a new Event inside of the "iPhoto Events" Album... because they won't.  I'll be stuck with my old iPhoto Events in this one Album, and the new stuff organized as per Photos.  Weird, just weird.
    Also, in the "all photos" view, there are dates that are just blank.  I think I know why.  In iPhoto, I merged various photos into single Events.  For whatever reason, within the Library, this left empty folders behind.  iPhoto's fault, not mine... I simply dragged & dropped photos to combine Events.   Then during Photos import/conversion these empty folders got converted into "blank" days within Photos... this is simply ridiculous.  When programming for an import, you'd want to ignore a folder if there are no files inside of it, not convert it into a block of photos that contain no photos.  It's nonsensical... you cannot have an iPhoto Event with zero photos, yet that's what was converted over.  LOL.
    I'm certainly not going to invest the time into cleaning up and moving hundreds of Events and 18,000 photos if Photos can't even do a simple library conversion.  Heck, what about the dozens of photos that my iPhone 5S fails to geotag for whatever reason?  Can't edit geotags.  Can't bulk edit meta data.  These are pretty basic functions.  Total fail.
    I'm going back to iPhoto for a while, hoping Apple eventually cleans up this mess into something usable.

  • How can i rename album titles already listed at itunes store ?

    greetings.
    i'm an indie artist being told the names of my albums have to be changed to comform to the new itunes store standards or have them removed.  this is really ridiculous because one of my existing albums already has the formatting it was submitted as and yet i'm still being told the other two albums must be renamed.
    the first album title is listed as : "single of the month club - volume one alt mixes"
    it is precisely as i intended it to be named.
    the second album title arrived as : "single of the month, vol. 2"  but it should have been "single of the month club - volume two alt mixes". 
    the "-" was replaced by a "," and the word "volume" was truncated to "vol." and the word "two" was replaced by the number "2" and the "alt mixes" portion was removed completely.
    the third album title arrived as : "single of the month club, vol. three (alt mixes)" but it should have been "single of the month club - volume three alt mixes".  the "-" was replaced by a "," and the word "volume" was truncated to "vol." and "alt mixes" is wrapped in parenthesis for some reason.
    what i'm looking for here is consistancy.  as an artist i should not be made to alter my artistic vision.  there are several existing album titles within the itunes store that contain all these elements that i'm being told i have to change.  if my first album title can exist as intended, then the two subsequent album titles should be allowed to exist as intended.
    note: these albums were submitted through cdbaby.com and their reply to the question is : "The formatting guidelines put in place are relatively recent (in the past couple of months), so older projects may have not been adjusted yet by iTunes (generally modifications won't be made unless an album is brought to their attention)."
    i have not been able to find any way to contact the itunes store directly for this matter other than through this forum.
    any assistance is greatly appreciated.
    thank you,
    mully
    < Link Edited By Host >

    Hey allaboutlooks,
    Welcome to Apple Support Communities! I'd check out the following article, which goes over possible issues with the Mac App Store you may encounter and possible resolutions:
    Troubleshooting the Mac App Store
    http://support.apple.com/kb/ts3624
    I would primarily try the following steps:
    Delete the app that will not open.
    Open the Mac App Store.
    Ensure that you are logged in to the Mac App Store with the same account that purchased the app.
    Select the Purchases view from the top of the Mac App Store window.
    Find the app and click the Install button beside it.
    The app will be installed on the Mac you are using.
    Regards,
    David

  • I have over 1200 songs in my iTunes library that have always synced fine, I have added a new album to my list from one of my CD's, synced to add it to my library but less that 100 songs are now on my device and no matter how many ways I try its not worked

    I have over 1200 songs in my iTunes library that have always synced fine, I have added a new album to my list from one of my CD's, synced to add it to my library but less that 100 songs are now showing on my device and no matter how many ways I try its not able to show any more.
    Does anyone know why this is happening and how to rectify the situation as I have tried every help setting for the last 4 hours.

    I have tried everything I have read on the Internet about sync issues and restore etc and not there isn't a single song on my iPad or iPod touch. All of the songs are listed in my iTunes but are all greyed out, some have the cloud symbol next to them but lots don't and some say waiting.
    Long and short is nothing will save to my devices at all.....HELP !!!!!!!?

  • How do you isolate an album or artist in the new iTunes? (12.0) It is really frustrating when trying to listen to one album and I get the album in the list with all 1,025 other albums in my library.

    How do you isolate an album or artist in the new iTunes? (12.0) It is really frustrating when trying to listen to one album and I get the album in the list with all 1,025 other albums in my library. Same with the artist.

    Welcome to the  Discussion Forums
    ... I assumed that if I played the 1st track, it would continue to play the rest of the album (as iTunes does on my Macs and PCs),...
    You assumed correctly, and it should continue to play the rest of the album in order. Does this happen to all your albums. Have you tried restarting the tv.

  • How can I get more than 5 items in my Recent Projects list?

    After a rather horrendous incident with trying to do a series of videos all in one project using bins and shared media and a savefile that got *WAYYY* out of hand (20 minutes to load the file)- which I believe was tied to importing media from another .proj file, I have switched to a more modular approach with anywhere from 2-5 projects in each project and now a collection of around 15-25 projects on the go. Most of these are "work on a chapter, then change to another project while waiting for footage for another project" and several of them share pieces including multicam segments and sync'd audio.
    Rather than importing from another project, I am using Control-C, switch to a different project file, then paste in. This isn't the most "Adobe Professional" style way of doing things, but considering that I lost several hours to trying to recover from the last project, even when I only needed to spend 20 minutes pumping out a rough cut, I'm not going back to that method until my next computer upgrade and until I begrudgingly switch to CC in around 1-1.5 year's time.
    So the issue that I'm faced with is that I'm often using the Open Recent Project flyout and having 5 projects on that list is just not enough to be remotely useful.
    In MS Office, the list is quite long and even in photoshop, I can get 10. That's enough for my Photoshop, but I switch projects using the Recent Projects list in Premiere a LOT more often. I could just use my explorer windows to jump around, but given that I have 5-6 explorer windows open per project most of which are folders crammed with footage, PSD stills and peak files, plus other non-video things I'm working on right now, that's really not the simplest way to navigate at a glance.
    How can I get 10, 20 or 25 items in that flyout list instead of mucking about with 5?
    I run Adobe Production Premium CS6.

    I see a lot of people not reading the circumstances of what I said.
    I did mention that currently I use the "explorer" method and it's kind of clumsy. Although I liked the idea of using shortcuts. I had thought about moving the files, but didn't think about shortcuts... considering everything on my desktop is a shortcut, I'm really not sure why I didn't think of that.
    But I did mention that I almost always have anywhere from 12-15 windows open at any given time in my explorer. I am involved with management of 4 different companies right now, two of which are in startup mode. Videos are important for me, but not my only duty. These windows only go down when I shut down my computer, which happens on average once every 4 months. It is not a problem on a reasonably capable system.
    Still, for a project of currently 23 files (just got increased to 28 and expected to rise to 32-35), and because I have had project files go sour on me, I keep some hierarchy and because I don't have 100% creative control over all my projects, I also occasionally have to do re-overs ie when a specific style of writ is nixed by a boss or customer. Those 23 project files also have version iterations.
    So navigating 'at a glance' through a file explorer isn't always the most practical.
    In the end, I'll probably try to find some time to re-organize my file structure using shortcuts.
    Still, given the number of 'recent files' can be modified or is larger than 5 in: Windows Start Menu, Recent documents, Adobe PDF recent documents, Adobe Photoshop, All Office suite programs...
    It's just weird that there's only 5 for a program intended for the kind of people that work on projects somewhat larger in scope than "hey, we took the dog to the park the other day".
    @Jerry Klaimon - not sure what version of Premiere you're using, I'm using CS6 with Production Premium CS6. Recent files only shows 5. Photoshop shows 9. For my current workload, I'd probably want 10-12 and it would be nice if they could go to 20 or more IMHO. Look at History states. History states default to 20. I usually set this to 35 whenever I set up any user's computer. It's easy to choose what suits me from the preferences menu. I don't see why they wouldn't have the same idea for 'recent files'
    @anyone who thinks I'm stupid - please feel free to insult me. A forum scuffle is often a great way to get the attention of moderators who might be in a position to pass this idea on to someone who could do something about it. I'm also anal, stubborn, holier-than-thou and not-as-smart-as-i-think-i-am if you want some ideas to get started .
    @Steven Gotz - you are quite correct that asking is important. Probably a smarter thing to do before pestering the devs with feature requests is to thoroughly check to see if it is in fact already existing. Adobe products are famous for having features that nobody knows about. Most of the questions I have that Google or Lynda.com didn't answer have been answered here in the forums. Then once I've seen that a few hundred pairs of eyes sharper than mine have also come up with nothing, then perhaps it might be worthwhile sending in a feature request. In this case, I will probably toss a feature request in later, but I'll probably just use your idea of keeping a master project folder with shortcuts.
    @MarkMapes - I do not have a problem loading files. Project files load just fine for me. But I have one project file that has a problem that loads a HUGE amount of RAM and takes nearly 20 minutes to open. It even takes almost 8 minutes to close it. It was acting as my master file with everything nested in sequences and I needed to spend a whole afternoon to pull those sequences out using copy-paste because bringing them in via Import Sequence brought the problem into the new file. I would file that under "glitched save files" rather than "slow loading".
    @Jon-M-Spear - good idea too - although I did cringe a bit at the suggestion of putting things on the desktop. I have bad habits and I work very hard to try to make other people who have worse habits in this company to try to get them to not keep anything on the desktop. In fact, it's probably my favorite thing about Windows 7 that you can have a clear or nearly totally clear desktop.
    Thanks for your comments folks.

  • Imported MP3 sound and image CD Bird pics and sounds but each song is an album, so cluttering my album and artist lists. How can I keep together as one album please?

    I Imported a MP3 sound and image CD Bird - Birds of Sri Lanka - via itunes on my mac, then synched content to my Iphone as a Playlist to get all the songs/pics in alpha order. BUT each of the 329 birdsongs are listing/appearing as a separate album, so cluttering my album and artist lists :0(
    How can I get all the Birds of Sri Lanka songs/albums to come together as just one album please?
    Do I need to delete what i have, and download again in another way? :0(
    Can I move them all the songs somehow so they become ONE ALBUM :0)
    Thank you
    BW

    OOOOhhhhhh no worries, sorted it.
    In playlist Selected all songs, went into Get info and updated COMPILATION field from NO to YES.
    :0)

  • I have two albums (RCA Sweeny Todd 2 discs set and RCA Into the Woods 1 disc) where the songs are listed as being on the same album on the list view, but do not group together on the iPod, so the songs can't play consecutively, or in the proper order.

    I have two albums (RCA Sweeny Todd 2 discs set and RCA Into the Woods 1 disc) where the songs are listed as being on the same album on the list view, but do not group together on the iPod, so the songs can't play consecutively, or in the proper order. The "Apply Sort Field" and "Same album does not work, but ti is only these two RCA albums that do this. All other albums remain intact. Need help with this minor problem. Thanks.

    UPDATE: This behavior (to an extent) still happens when "Repeat Album" is off. Instead of an infinite loop, it goes through all the tracks on the album (unsuccessfully) and kicks me out to the Album overview screen. Going back to list of Albums and tapping the Album again brings up "No Content: You can download music from the iTunes Store" but that screen immediately kicks me back to list of Albums.
    So I am just even more confused now.

  • In ios 6 I could choose an artist on the music app and see all his albums in a list. Now, with ios 7, it shows all the songs from every album, making it EXTREMELY hard to see all the albums. Is there a way to minimize this view and see only the albums?

    Hello!
    I need some help with the music app in ios 7...
    In ios 6, I could choose an artist from the "srtists" view and it would show me all his albums as a list. Now, in ios 7, when I choose an artist, it shows me every song underneath every album, making it impossible to see al the albums at once! Is there anyway to minimize this view so I could see only the albums' titles as a list?
    It is VERY annoying. I would very much appreciate any help on this! 
    Thank you

    Exactly!
    This is all about the experience and accessibility. I don't even mind if the new desing is beautiful or not, but if I find myself, like you, avoiding looking for my music, my experience becomes frustrating. I have about 35 albums of a single artist and I used to love going over them and choose the right thing for me, especially being on the road a lot, and now I have to think twice about even entering his name.
    I really hope Apple will take those kind of things into consideration when they issue updates for ios 7, and maybe also give us back the goole search which was embeded into the spotlight search (which is really not that big of a request).
    And for your 4s - get the new iphone, it's MUCH better

Maybe you are looking for

  • Excise duty & VAT need to print  seperately in PO printing

    We are able to print Value of ED & VAT combinly but the client requires it seperated. Any solution pls.

  • ICommand required to call the Xacute query

    SCM380 SAP MII - Manufacturing- Integration and Intelligence - Basics Solution 17: Using Transactions on a Web Page Task: Use the "Addition" transaction to complete the source text on the page shown below, which displays the result in a message box.

  • BAPI or FM for VL10F (outbound delivery)

    Hai All, Can Anyone say how to create outbound delivery (VL10F) By  Using FM or BAPI. Explain With Example. Pls Most Urgent. Regards, Ekadevi.S

  • Change user profile

    I need to change user profiles in Windows XP and would like to migrate all of my iTunes music, playlists, etc to the new Windows user account. I considered copying the user profile with Control Panel | System | Advanced | User Profiles Copy To functi

  • "Missing" device not missing

    For one of our clients the OnPlus agent is installed and has been working great for 6+ months. A week back one of the switches went "missing", on checking the dvice its pingable, appears in cdp tables and is physically there and up. We tried removing