How do you shuffle genre with iOS7 on iPhone5?

How do you shuffle genre with iOS7 on iPhone5?

Turn the phone sideways - First make sure that landscape mode isn't locked by swiping up from the bottom to bring up Control Center and then the top right icon is Portrait lock.

Similar Messages

  • How do you close programs with new iOS7? Old way doesn't seem to work!

    How do you close programs with new iOS7? Old way doesn't seem to work!

    After double tap home button, swipe up on the app card that appears above the icon.

  • How do you shuffle the image order when creating a new slideshow in apterture 3?  i would like to do this automatically when creating a new slideshow.  i see how you do it when you just play a slideshow.

    how do you shuffle the image order when creating a new slideshow in apterture 3?  i would like to do this automatically when creating a new slideshow.  i see how you do it with presets when you just play a slideshow, but i don't see an option to randomly shuffle the slide order when you create a new slideshow.  i know you can sort it by different fields, but i want it to be random.  thanks.

    If you want to rearrange images in random order you can try an AppleScript:
    retrieve a list of selected images from Aperture
    shuffe the list properly
    create an album in Aperture and add the images from the list to the album (make sure that the album set to be orederd manually)
    Here  is a sample script that shuffles the selected images and displays them in random order in Full Screen Mode:
    on removeItem(ims, i)
      -- remove the item at position "i" from a list ims
              if ims is {} then return {}
              if (length of ims is 1) then return {}
              if i < 2 then return rest of ims
              if (i = length of ims) then return (items 1 thru (i - 1) of ims)
              if i > (length of ims) then return ims -- should be error?
              return (items 1 thru (i - 1) of ims) & (items (i + 1) thru (length of ims) of ims)
    end removeItem
    on shuffle_items(ims)
      -- shuffle the items of the list "ims" randomly
              local numitems, ims_shuffled, nextrest, nextpick, i
              set numitems to length of ims
              if length of ims < 2 then return ims
              set ims_shuffled to {}
              set nextrest to ims
              repeat until nextrest is {}
                        set i to (random number (numitems - 1)) + 1
                        set nextpick to item i of nextrest
                        set beginning of ims_shuffled to nextpick
                        set numitems to numitems - 1
                        set nextrest to removeItem(nextrest, i)
              end repeat
              return ims_shuffled
    end shuffle_items
    on shuffleIms()
      -- retrieve the selected images from Aperture
      -- and display them in random order in full screen mode
              local imageSel, shuffled, i
              tell application "Aperture"
      activate
                        set imageSel to (get selection)
                        set shuffled to my shuffle_items(imageSel)
                        set fullscreen to true
                        if imageSel is {} then error "Please select some images."
                        repeat with i from 1 to count of shuffled
                                  reveal {item i of shuffled}
      delay 3 -- chnage that to the time you want
                        end repeat
                        set fullscreen to false
                        return shuffled
              end tell
    end shuffleIms
    shuffleIms()
    Some more code snippets to go from here:
    To create an album:
                        tell library 1
                                  if not (exists album "shuffledAlbum") then
      make new album with properties {name:"shuffledAlbum", image version:shuffled}
                                  end if
                        end tell
    And to add the images from the shuffled list to the album:
                        repeat with i from 1 to count of shuffled
                                  duplicate item i of shuffled to album "shuffledAlbum"
                        end repeat
    Regards
    Léonie

  • How can you shuffle songs in a playlist in itunes 11?

    You used to be able to create a playlist, shuffle it, then synch it to your ipod.  This was done easily with a shuffle button in the library.  In 11 that button is no longer there.  How can you do this now?

    Your question is clear, but you then go on to say something completely different. I've answered your question "how can (you) shuffle songs in a Playlist in iTunes 11".
    In Playlists, click on the "start playing in shuffle mode" icon (that I've ringed). And...
    In this next shot (the space you need to watch), you can see the Shuffle icon (ringed in larey lime) is blue, so it's "on", and I've also clicked on the "show me what's coming up next" icon (ringed in red).  Study the list of upcoming songs. It's the Playlist we're in, but shuffled:
    Hey presto!
    Now - if you actually mean something else, such as: "create the Playlist, adjust the order of the songs and then Sync it to the iPod"; then as before, you can drag songs within a Playlist to whatever order you want and Sync the Playlist - as before. I've no idea what the "button" you refer to, looked like. Can you explain?

  • How do you move itunes with playlists from one computer to another

    how do you move itunes with playlists from a computer to ext hard drive, so it will play from the ext harddrive and not the computer

    Type "move itunes library to external hard drive" into the google search bar.

  • HT4759 how do you update icloud with contacts transferred to Iphone by verizon

    How do you update icloud with contacts transferred to Iphone by Verizon?  The only contacts that show up in icloud are the ones I entered myself to the phone.

    You'll need to copy them to iCloud in order to see them on your PC.  To do this, do the following:
    Go to Settings>iCloud, turn Contacts to Off, choose Delete from My iPhone when prompted (they will still be in iCloud).
    Download the app My Contacts Backup.  Use this to backup the remaining contacts on your phone (from Verizon) as a vCard attachment to an email that you send to yourself.  Confirm that you have received the email.
    Go to Settings>iCloud and turn Contacts back to On.
    Open the My Contacts Backup email and tap the attachment to import the Verizon contacts back to your phone.  They should now be in iCloud, and appear on your PC.  You may see duplicate contacts on your phone because you are still viewing both the contacts from Verizon as well as the copies now in iCloud.
    Open Contacts on your phone and tap Groups, tap the Groups that were imported from Verizon so they are unchecked and tap Done.  This will hide them from view and illiminate the duplicates.

  • Noob question... How do you familiarize yourself with a library?

    I'm very new to Java and programming in general. but I am currently reading some beginner books for Java. From what I've read, libraries are nothing more than prewritten code which you can call to use in your programs. My question is how do you familiarize yourself with the libraries? With so many different libraries, how do you find out what they are capable of? Is is simply diving in it and analyzing the code? Can you create your own libraries? If so, what is the advantage of creating a library instead of baking the code right into the program? Why advantage do you have with referencing an outside file for code over having a self contained program?

    Morisato13 wrote:
    I'm very new to Java and programming in general. Welcome to the forums!
    but I am currently reading some beginner books for Java. From what I've read, libraries are nothing more than prewritten code which you can call to use in your programs. Yes indeed. Why reinvent the wheel?
    My question is how do you familiarize yourself with the libraries? Gradually.
    With so many different libraries, how do you find out what they are capable of? The best way is by working through a good Java book.
    Is is simply diving in it and analyzing the code? You can do that, too.
    Can you create your own libraries?Yes.
    If so, what is the advantage of creating a library instead of baking the code right into the program? 1. You can analyze it and test it separately.
    2. You can reuse it separately.
    Why advantage do you have with referencing an outside file for code over having a self contained program?Are you asking the same question, just with different wording?

  • How do you change password with out using cd on imac?

    How do you change password with out cd on imac?

    Please read:
    http://osxdaily.com/2011/08/24/reset-mac-os-x-10-7-lion-password/

  • How  do you set up with pc

    How  do you set up with pc.

    I set up last year with Win 7. I downloaded Airport Utility from apple.com. I don't recall any difficulty. Wireless is not my forte. Sorry I can't offer better assistance.
    I installed Software Update on the pc to keep software up to date.
    Hope this helps.

  • HT204216 Used to highlight just the portion of an article that I wanted to print and press print selection only.  How do you do that with a MAC?

    Used to highlight just the portion of an article that I wanted to print and press print selection only.  How do you do that with a MAC?

    Depends to some extent what application you're printing from, and what printer you're using, but here's the dialogue box for ⌘P in Firefox -
    Note the option to print selection only.
    Haven't looked before, but I can't find anything similar in Pages print options.
    It does appear in Word though.
    Message was edited by: noondaywitch

  • How do you make labels with Pages

    How do you make labels with Pages or Numbers?

    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=182&mforum=iworktips ntrick
    Peter

  • How do you edit photos with photoshop from the new  Photos app?  The edit in external editor menu item seems to be gone.

    How do you edit photos with photoshop from the new  Photos app?  The edit in external editor menu item seems to be gone.

    Tell Apple what additional features you want in Photos via both http://www.apple.com/feedback/macosx.html and http://www.apple.com/feedback/iphoto.html  since they don't have a feedback page for Photos as yet.

  • HT5787 How do you get help with your security questions if you forget your answers?

    How do you get help with your security questions if you forget your answers?

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (97108)

  • How do you record video with usb mic and have the audio from garageband be the sound when recording and not just your normal voice but garage band effects for youtube?

    How do you record video with usb mic and have the audio form garageband be apart of the video when recording, meaning the audio from garageband and echo  and not just your normal voice for youtube post?its not add the garageband audio its just normal voice from mic no  effects is going thru?

    Hi Life93,
    What you describe would be possible by recording your video, then removing the audio from it and adding audio from GarageBand once the video is in iMovie (I presume here that you are using iMovie for your video production. Other applications may need different methods.)
    See this thread on how to remove the audio from a clip in iMovie -
    Is there a way to separate audio from a video c...
    https://discussions.apple.com/thread/1779767
    To add audio from GarageBand use this article -
    iMovie '11: Add a sound clip to your project
    http://support.apple.com/kb/PH2255
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • HT4623 How do you update 3GS with iOS 4.3?

    How do you update 3GS with iOS 4.3?

    You can update it to 6.0.1 if you have a 3gs by following the directions in the article you linked, under updating from itunes on your computer.
    iOS: How to update your iPhone, iPad, or iPod touch
    If it is a 3g, then it can only to 4.2.1

Maybe you are looking for

  • Problems assigning policy to roles

    Hello, I am trying to assign a simple policy that I have created to a role that I have created. I am following the instructions from the administration guide. In the final step, From the View UserManegement I choose the role that I want to apply the

  • Leovo G510 Windows 8 Install Disk

    Hi, Recently I reinstalled Ubuntu and in the process I selected replace existing Ubuntu installation, which as a result overrode all my partitions. As a result of this, I lost the Windows 8 recovery image and was wondering if there is a way I could g

  • Report format - distance between rows

    Hi, After formatting a output(report), the distance between rows is much bigger than on output w/o format. What parameter controls the distance between rows? How to make the output/report more dense in row sense? Thx,

  • Exporting to Quicktime for FCP Import

    I just finished a project (digital pictures) using Still Life software from Granted (www.grantedsw.com). I want to export my project to a Quicktime movie for import into Final Cut Pro 4.5, to add transitions, music, etc. When I go to export to Quickt

  • How to get Verizon FiOS SDK?

    HI Folks, I'm trying to get Verizon FiOS SDK. Here's the link: https://www22.verizon.com/fiosdeveloper/General/Login.aspx It doesn't say where to sign up so I asked support (using contact us form), but haven't got any response for over 2 days now. D