Can you sort multiple albums into one single album....?

So my situation is like this...
I have multiple albums from one specific Band (in this case its music from Shin Megami Persona.) I have all 8 albums sorted separately in Itunes. When it is sync'd to my Iphone it will show all of them in order which is typical. What I am curious about is if I can put the Albums into one Album name and when I click it, it will then show the 8 albums. Basically, this is for the sake of not having a lengthy album list on the iphone.
If my question/explanation was unclear, maybe this might help.
My current Album list looks like this:
Albums- P
Paramore
Persona Reincarnation
Persona 3 OST
Persona 4 OST
Persona 3 FES OST
Persona 3 Portable OST
Persona Music Live 2008
Persona Music Live 2009
Persona Music Live Band
Pink Floyd Greatest Hits
ect... ect...
What I would like is for it to be like this:
Album-P
Paramore
Persona Sountracks <------ click on this
Pinkfloyd Greatest Hits
ect...ect...
Clicking leads to below
Persona Soundtracks:
Persona Reincarnation
Persona 3 OST
Persona 4 OST
Persona 3 FES OST
Persona 3 Portable OST
Persona Music Live 2008
Persona Music Live 2009
Persona Music Live Band
I've been able group them all together by changing them all to the same album name but it just leads to a extremely lengthy list of songs. So if there is anyway to sort by the way I explained above, I am open for suggestions. Thanks!!!1!1!1!1

Thanks. That was very easy and works perfectly. Do you know if I can get my 08 edited footage back into 06 for some additional editing without exporting as a Quicktime movie that I can't edit? I want to add audio tracks that I can edit in synch with my video footage like I can in 06. Thanks!

Similar Messages

  • How do i put multiple albums into one huge album collection?

    How do i put multiple albums into one huge album collection?
    Some examples include: Linkin Park - Studio Collection, Michael Jackson - The Indisposable Collection

    Hi skullkrunch3r,
    Thanks for visiting Apple Support Communities.
    If you "Get Info" on the tracks that are part of your collection, you can use the Compilation option in iTunes.
    In iTunes 8 and later, you find the option to mark multiple items as "Part of a compilation" in the Options tab of the Multiple Item Information window.
    See this article for more information on marking your albums as part of a compilation:
    Why aren't songs with the same album art grouped together?
    http://support.apple.com/kb/TS1468
    Best Regards,
    Jeremy

  • Concatenate multiple records into one single record

    Hello everyone,
    Can anyone guide me how to merge multiple records into one single record
    like......... I am getting the data in the file like
    aaaaa/bbbbbbb/ccccccccccc/dddddddddddd/eee
    ffffff/gggg/hhhhhhhhhhhhhh
    /123/4567/55555/99999999/kaoabfa/eee
    fffff/kkkkkkkk/llllllllllllllllllllllll
    when i use gui_upload I am getting the data into the internal table in the above format.
    My main intension is to split the record at / to multiple lines and dowload it into another file.
    What i am planning to do is... if the line does not start with / then i want to concatenate the multiple lines into single line and then split it into multiple records. Can anyone guide me how to achieve this.

    Yes, it should work.
    In my example
    Loop at itab.
    concatenate i_text itab into i_text.
    endloop.
    You change that loop for the loop of your internal table with the file records
    So if you have this three records
    'aaaa/bbb/ccc'
    '/dddd/efg'
    'hijk/lmn'
    i_text will look like this at the end
    'aaaa/bbb/ccc/dddd/efghijk/lmn'
    then in this part of the code
    split i_text at '/' into table itab2.
    itab2 will have the records looking like this
    aaaa
    bbb
    ccc
    dddd
    efghijk
    lmn'

  • Can you use multiple plugins on one piece of media?

    can you use multiple plugins on one piece of media?
    ...so for example have one plugin for a UI control bar, another for tracking, and another for advertising?
    If this is possible how? What types of plugin would each plugin be and what sort of media element would be required?
    Or is this not the correct approach? If not what would the correct approach be?
    Thanks in advance for support.

    I have got this plugin to set it's proxiedElement.
    To do so, I needed to follow David_RealEyes advice too.
    But I still can not acheive what I set out to find out, all I was trying to do was trace the current time of the videoElement, to begin to understand how plugins work. Can anyone advise please? Thanks in advance for support.
    I thought to acheive this I would just need to add  a listener for like this:
    dispatcher.addEventListener(TimeEvent.CURRENT_TIME_CHANGE,  onTimeChange);
    Then write the function like this:      
    private function onTimeChange(e:TimeEvent):void
                 trace('**********onTimeChange: '+ e.time)
    ...But this doesn't work.
    What am I doing wrong?
    Here's the class now for the TraceListenerProxyElement
    package
        import org.osmf.elements.*;
        import org.osmf.events.*;
        import org.osmf.media.*;
        import org.osmf.metadata.*;
        import org.osmf.traits.*;
        public class TraceListenerProxyElement extends ProxyElement
            public function TraceListenerProxyElement(wrappedElement:MediaElement)
                trace('TraceListenerProxyElement')
                super(wrappedElement);
            // Overrides
            override public function set proxiedElement(value:MediaElement):void
                trace('override set proxy')
                trace('value: ' + value)
                if(value)
                   super.proxiedElement = value;
                   trace('proxied element set')
                   enableListeners()
                super.proxiedElement = value;
                trace('proxied el: ' + proxiedElement)
            private function enableListeners():void
                trace('enableListeners')
                dispatcher = new TraitEventDispatcher();
                dispatcher.media = proxiedElement;
                dispatcher.addEventListener(AudioEvent.MUTED_CHANGE, processMutedChange);
                dispatcher.addEventListener(AudioEvent.PAN_CHANGE, processPanChange);
                dispatcher.addEventListener(AudioEvent.VOLUME_CHANGE, processVolumeChange);
                dispatcher.addEventListener(BufferEvent.BUFFER_TIME_CHANGE, processBufferTimeChange);
                dispatcher.addEventListener(BufferEvent.BUFFERING_CHANGE, processBufferingChange);
                dispatcher.addEventListener(DisplayObjectEvent.DISPLAY_OBJECT_CHANGE, processDisplayObjectChange);
                dispatcher.addEventListener(DisplayObjectEvent.MEDIA_SIZE_CHANGE, processMediaSizeChange);
                dispatcher.addEventListener(DRMEvent.DRM_STATE_CHANGE, processDRMStateChange);
                dispatcher.addEventListener(DynamicStreamEvent.AUTO_SWITCH_CHANGE, processAutoSwitchChange);
                dispatcher.addEventListener(DynamicStreamEvent.NUM_DYNAMIC_STREAMS_CHANGE, processNumDynamicStreamsChange);
                dispatcher.addEventListener(DynamicStreamEvent.SWITCHING_CHANGE, processSwitchingChange);
                dispatcher.addEventListener(LoadEvent.BYTES_TOTAL_CHANGE, processBytesTotalChange);
                dispatcher.addEventListener(LoadEvent.LOAD_STATE_CHANGE, processLoadStateChange); 
                dispatcher.addEventListener(PlayEvent.CAN_PAUSE_CHANGE, processCanPauseChange);
                dispatcher.addEventListener(PlayEvent.PLAY_STATE_CHANGE, processPlayStateChange);
                dispatcher.addEventListener(SeekEvent.SEEKING_CHANGE, processSeekingChange);
                dispatcher.addEventListener(TimeEvent.COMPLETE, processComplete);
                dispatcher.addEventListener(TimeEvent.DURATION_CHANGE, processDurationChange);
                dispatcher.addEventListener(TimeEvent.CURRENT_TIME_CHANGE, onTimeChange);
                proxiedElement.addEventListener(MediaElementEvent.TRAIT_ADD, processTraitAdd);
                proxiedElement.addEventListener(MediaElementEvent.TRAIT_REMOVE, processTraitRemove);
            private function onTimeChange(e:TimeEvent):void
                trace('**********onTimeChange: '+ e.time)
            private function processAutoSwitchChange(event:DynamicStreamEvent):void
                trace("autoSwitchChange", event.autoSwitch);
            private function processBufferingChange(event:BufferEvent):void
                trace("bufferingChange", event.buffering);
            private function processBufferTimeChange(event:BufferEvent):void
                trace("bufferTimeChange", event.bufferTime);
            private function processComplete(event:TimeEvent):void
                trace("complete");
            private function processCanPauseChange(event:PlayEvent):void
                trace("canPauseChange", event.canPause);
            private function processDisplayObjectChange(event:DisplayObjectEvent):void
                trace("displayObjectChange");
            private function processDurationChange(event:TimeEvent):void
                trace("durationChange", event.time);
            private function processLoadStateChange(event:LoadEvent):void
                trace("loadStateChange", event.loadState);
            private function processBytesTotalChange(event:LoadEvent):void
                trace("bytesTotalChange", event.bytes);
            private function processMediaSizeChange(event:DisplayObjectEvent):void
                trace("mediaSizeChange", event.newWidth, event.newHeight);
            private function processMutedChange(event:AudioEvent):void
                trace("mutedChange", event.muted);
            private function processNumDynamicStreamsChange(event:DynamicStreamEvent):void
                trace("numDynamicStreamsChange");
            private function processPanChange(event:AudioEvent):void
                trace("panChange", event.pan);
            private function processPlayStateChange(event:PlayEvent):void
                trace("playStateChange", event.playState);
            private function processSeekingChange(event:SeekEvent):void
                trace("seekingChange", event.seeking, event.time);
            private function processSwitchingChange(event:DynamicStreamEvent):void
                trace("switchingChange", event.switching);
            private function processVolumeChange(event:AudioEvent):void
                trace("volumeChange", event.volume);
            private function processDRMStateChange(event:DRMEvent):void
                trace("drmStateChange", event.drmState);
            private function processTraitAdd(event:MediaElementEvent):void
                trace("Trait Add: " + event.traitType);
            private function processTraitRemove(event:MediaElementEvent):void
                trace("Trait Remove: " + event.traitType);
            private var dispatcher:TraitEventDispatcher;

  • Can you have multiple users for one account?

    Can you have multiple users for one account? if so how do you set it up.
    We are using it for our department and it would be great to see who created what form instead of it being all one name.

    Each person should have their own account. You can easily share the forms with other people in your department. You will be able to see who the author of the form is.
    More information on how to share :
    http://forums.adobe.com/docs/DOC-2462
    Information on how to copy a forms to a different account :
    http://forums.adobe.com/docs/DOC-1390
    Hope this helps
    Gen

  • Can you have multiple libraries on a single iPod?

    Can you have multiple libraries on a single iPod?

    Yes.  This explains how >
    Using iPad or iPod with Multiple Computers:  http://support.apple.com/kb/HT1202
    Note:  You cannot load music from multiple computers or iTunes libraries onto iPod shuffle and iPhone like you can with other devices.

  • In iPhoto can you label multiple photos in one step or do you have to label them one by one?

    In iPhoto can you label multiple photos in one step or do you have to label them one by one?

    what are you calling a "label"  You can set the title for multiple photos by selecting them and using the batch change command
    LN

  • How can I combine multiple pdfs into one document?

    I need to consolidate multiple docs into one.  How do I do that?

    It's pretty easy. Open multiple PDF documents in Apple Preview that came with your Mac. Choose View/Thumbnails so you can see the page thumbnail icons. Select any number (or all) of the page thumbnail icons of one document and drag them to any point in the thumbnails of another document.
    For example you can drag page 6 of one PDF between pages 40 and 41 of another PDF doc. But it sounds like you want to select all pages of one PDF and drag them to the end of another PDF doc.
    If you need more powerful document combining you can use PDFpen or Adobe Acrobat Professional, but they cost money.

  • Can I consolidate various vaults into one single vault?

    I've created various vaults and I now wish to consolidate them all into one single vault. Can this be done in Aperture 3?

    You need to create a new vault that encompasses all the images in the various vaults then delete the others.  I know of now way to combine vaults- except to import them all into a single library.
    DLS

  • How do you merge multiple songs into one album?

    When I added a downloaded album to iTunes, it created one album for each track. How do I merge all of these albums/tracks into one album?

    Some albums will fracture into a million pieces if you have different artist names. How the columns are sorted can effect this.
    If it is a multiple artists on one album select 'Compilation' in the options section for all of the songs on the album. 
    NOTE: You need to have multiple items selected to set this flag!

  • How can I sort multiple tables on a single page as if they were one continuous table?

    I have a single narrow column of numbers that cover multiple pages. I would like to do either of the following: break that long single column into multiple colums that fit on one page and are still able to be sorted in that arrangement OR sort the long column as it is (spread out over multiple pages) and then break that long sorted column down into multiple segments that can be placed onto a single page.
    I have been sorting the long single column, then copy and pasting sections from the column onto a new page so that I can print them on a single page.
    I am hoping there is a more elegant method to do this.

    Hi Walt,
    Sorting is one of the things that changed between Numbers '09 and Numbers 3. If you are on Mountain Lion I want to assume you are using '09. Is that true?
    This will work in '09 and 3. Table one is a single column with entries 1-89.
    A2 ==INDEX(Table 1 :: $A,ROW())
    B2 =INDEX(Table 1 :: $A,ROW()+35)
    C2 =INDEX(Table 1 :: $A,ROW()+70)
    The formulas are filled down.
    You can adjust the formulas in B and C to reflect how many rows fit on your page.
    quinn

  • Can I convert each playlist into one single mp3 file

    I have had great success creating and burning a playlist to a CD however I'd really prefer to save an ENTIRE playlist of about 20 songs as a SINGLE MP3 file.  I can then I burn each file (composed of songs in a playlist)  to a CD and have a nice set of organized music set/PLAYLISTS to listen to.  I stated my question in this manner because I've seen many similar questions but they are not what I am asking. I am using WIndows 7
    What I have tried:
    1.) ...selecting the group of songs within the playlist and exporting as an MU3.  My results:  It created an MU3 file that played for less than 1 second when played in anything other than itunes.  In itunes it opened as the same playist I began with
    2.) ...consolidating the files (the goal was to consolidate into one MP3 file) but once I selected the consolidate option I could not find that file under itunes Media which is the location where itunes says it would be stored.
    3.) ..converting to MP3       Result: It just converted each individual file to MP3 format and NOT the entire list as a SINGLE MP3 file.
    Does anyone know if there is a way to accomplish this?
    Thanks in advance
    D

    Sorry to disappoint you, Chris... but I don't "take their product". Someone WHO WORKS FOR THEM "gives it to me". There's a MAJOR DIFFERENCE between someone handing you something that's theirs to hand you... and stealing it.
    In 2006 I saw Sara Evans "perform" in Tucson. She flew on her congressional (then) husband's private plane from Portland to Orange County, refueled and flew to Tucson, where she got into a limo, and rode to the show. She got out of the limo, went straight backstage, I saw someone hand her a Dr. Pepper, which she opened, took a sip out of, and then went out on the stage as the headline act for the evening. She sang six (6) songs in twenty-three (23) minutes, walked offstage, did no encore, and got back in the limo, which whisked her back to the waiting jet to fly home.
    The station manager of the radio station that sponsored the concert, later told me that she was paid $125,000 for that twenty-three minutes. Even he felt like the station didn't get their money's worth. The promoter paid for the jet fuel and her pilots' salaries.
    In 2009, I went out to Phil Vassar's "motor coach" after a show, which is basically a house on wheels. He showed two friends and I the "studio" in the middle of this converted bus, where he can record new tracks and send them straight to the record company via satelite, for their final editing. The front has a full kitchen & living room and a 50" flat screen TV with a massive audio system. HE owns the whole thing, and when he doesn't feel like riding, he has a private plane of his own that will pick him up wherever they can land and fly him to the next show.  His promo guy gave each of us a copy of every CD he's ever released before we left.
    I have no problem with people making money for their work. But I've seen just how much is given away in the music industry, and I'm not going to refuse things offered to me because someone with a private jet and limo, getting $6000 a minute, or with a half million dollar "rolling house" isn't getting paid for the things their own people are handing out in bulk.

  • Can you have multiple users on one apple Id and utilize iCloud?

    My family shares an apple Id and we each have multiple Apple devices. When we use iCloud we "cross pollinate" each others devices with contacts, calendar events, etc.  is it possible to manage multiple users on one apple Id with iCloud activated or are separate ID's required?

    iCloud isn't designed as a multi-user service. Either you all have the same ID, and all your data is available to everyone, or you all have separate IDs and keep your data separate. You can share calendars, so that for example you could all have your own calendars but have one which is common to everyone:
    http://help.apple.com/icloud/#mm6b1a9479
    If you want to share contacts you will have to do it manually. If you want to do file transfer you will have to find a third-party alternative.

  • How can I combine multiple calendars into one calendar?

    I've been using iCal for a very long time, upgraded to iCloud, when it was fully operational.  In addition to my personal calendar, I have used several different calendars for different kinds of  business activities.  However, I am not at a point, where tracking different business related activites is no longer necessary.  So, I would like to know how to combine all the unnecessary calendars into a single business calendar.  I want to be able to transfer my entire calendar history from all the calendars to a single calendar.
    Thanks in advance for your recommendations.

    For each calendar, from the File menu choose 'Export...' then 'Export...'; from the sub-menu. This will create an .ics file at the location chosen in the Export dialog.
    From the File menu choose 'Import...' then 'Import...' from the sub-menu. A navigation pane will open: navigate to and choose your exported .ics file.
    You will get a pane with a drop-down menu - choose the calendar you want to add this data to.
    Be aware that this procedure can't be undone.

  • Collating multiple tracks into one single track

    I am trying to learn another language and have a CD with multiple tracks on it. When I load it onto my iPOD the tracks don't stay in order, which makes following the lessons difficult.
    Does anyone know how I can collate all the tracks so they become one single track which I could then download onto my iPOD?

    I am trying to learn another language and have a CD
    with multiple tracks on it. When I load it onto my
    iPOD the tracks don't stay in order, which makes
    following the lessons difficult.
    Does anyone know how I can collate all the tracks so
    they become one single track which I could then
    download onto my iPOD?
    Set the switch to the FIRST position to play tracks in order...

Maybe you are looking for

  • Not updating in ztable

    Hi all, REPORT  zevpoc_update. TABLES : evpoc. DATA: BEGIN OF itab OCCURS 0,       objnr LIKE evpoc-objnr,       versn_ev LIKE evpoc-versn_ev,       evpai LIKE evpoc-evpai,       datab LIKE evpoc-datab,       poc LIKE evpoc-poc,       END OF itab. DA

  • PS 11 Elements keeps crashing in start up (after first install)

    I have Adobe Photoshop Elements 11.  I just installed it and it can't load up without crashing.  It always gets to the "Loading Workspace screen" and then this error happens Problem Event Name: APPCRASH   Application Name: PhotoshopElementsEditor.exe

  • Is there a way to migrate AD users to different domain?

    Hello SharePoint Fam, I have a 10,000 user environment and these users are spread across 15 different domains.  Our data/network team are beginning to migrate and consolidate our environment down to one domain.  We did a test and had them migrate a c

  • Internal Concurrent Manager status could not be determined

    Hi Experts, After installation of EBS 12.1.1 we got above error "Internal Concurrent Manager status could not be determined" while starting CM. and form are not open getting error "FRM -92101 there was a failure in the form server durring startup." P

  • There are several orders created via FS Charges screen.

    Hi All, I am able to see 5 orders created (Source reference) for the Service Request, but when i view it from Field Service i am able to see only one order that is tagged to all the charges. Please help me to trace back the root cause of this issue.