How to make the pic showed on ipod 5th while playing mp3

can anyone teach me the way as captioned, very appreciate your help.

Assuming you have artwork within iTunes, try this
Open iTunes and select iPod in the iTunes Source list. Then click the Options button.
Choose “Display album artwork on your iPod.”
To see album artwork on your iPod:
1 Play a song that has album artwork.
2 From the Now Playing screen, press the Center button twice. If you don’t see artwork, either that song doesn’t have album artwork, or you need to set iTunes to allow iPod to display album artwork (see above).
If you do not have art within iTunes, select the songs within iTunes library. Right click and then click on get info. This will give you an option to paste some art in. (You can copy art from Amazon)

Similar Messages

  • How to make the exchange of data between 2 while loop in real time

    hello
    I have 2 while loop
    the 1st while loop includes the data acquisition program
    the 2nd while loop includes the control program
    my question is how to make the exchange of data between 2 while loop in real time
    I tried with the local variable and direct wiring between the 2 while loop
    it does not work (there is a delay)
    Solved!
    Go to Solution.

    Bilalus,
    Queues are only good to transfer data if your application isn't deterministic. Since you are using Real Time, I am assuming that your application requires determinism. If you are using Timed Loops and you use queues to transfer data between your loops, you are losing determinism. In this case, you need to use the RT FIFO functions. 
    Warm Regards,
    William Fernandez
    Applications Engineering
    National Instruments

  • How to make the date format in ipod the same as in itunes?

    When I look at my podcasts in itunes, the dates come up as dd/mm/yyyy (which is correct), however, when I look at my podcasts on the ipod, the date comes up as mm/dd, which is very confusing.
    I cannot figure out how to make it so that the date format is the same.

    When I look at my podcasts in itunes, the dates come up as dd/mm/yyyy (which is correct), however, when I look at my podcasts on the ipod, the date comes up as mm/dd, which is very confusing.
    I cannot figure out how to make it so that the date format is the same.

  • How to make the words show up without me prompting by tapping space bar?

    Now that I have gotten all the text on the front page to appearall together and not one line at a time, each line prompted by me hitting the Space bar, how do I get the words to appear all on their own without me tapping the space bar? This will be exported as a video to Youtube so the viewer won't be able to tap the space bar to make the video progress.
    Isn't there something called ”automatic”? I want to just click the “Play” button and have the text just appar all on its own.
    Mireille, thanks for telling me about that Build feature. It worked nicely. I chose “iris.”
    ~ Lorna in Southern California

    Oh now I see! It was in that hidden drawer, and to see that drawer you had to click Other Options. Ok. So now I set it to Automatic! Merci, Mereille. ~Lorna

  • How to make the images show up on a linked file in Muse?

    I am wondering how to get my images to show up on the linked files in Muse.  Basically, in Muse, I have a page that links to other pages I designed in Dreamweaver.  I put the images in the image folder and when I upload the site, the page links to the Dreamweaver page ok but the images are missing.  This is a vital part of the site.  Any suggestions?

    If you made the pages with Dreamweaver then they should be on your system some place and you could make a "dreamweaver" folder inside your Muse site and upload the pages to that folder using the upload files option... see this thread talks about sound files but almost any file can be imported to muse
    I need a recommendation for a slick way to embed audio
    Another option is to link across to an online resource using the built in muse html editor but that has pit falls because once you link yourself outside the site you also lose some control of the content;
    For an example of this have a look at an old demo page I made http://chec-garry2.businesscatalyst.com/index.html
    When you click on the Brahminy Kite bird you are looking at what used to be called an Iframe but the problem of control is highlighted when you click the Blue Wren and sometimes get pop up adds… I could import the Blue Wren page into my Muse site to fix this issue and in your case that’s a good option but I didn’t because I don’t have copyright over that pages contents and didn’t want to steal someone else’s work.
    p.s. if you have got a demo of the  website/ pages online someplace that would help us see your problem.

  • How to make the report shows only top level steps

    HI,
    I use many subsequences in my tests.  I have no interest to see them in the report.  How can I force the report to show only top level steps?
    Thanks
    Rafi

    I needed to prevent 'Skipped' steps from appearing in my reports.  One way to do this is to override the SequenceFilePostResultListEntry callback in the model.  You do this by clicking on Edit and then Sequence File Callbacks and then find SequenceFilePostResultListEntry in the list and click the Add button.
    Edit your new callback in your sequence file to check for a pre-condition.  In my case I checked for Parameters.Result.Status == "Skipped" since that parameter is set to Skipped, Done, etc. based on the result.
    If the condition was true then my only step in the callback was to set Parameters.DiscardResults = True.  The TestStand model will then throw that result away when it processes the report.  You could add a step for every type of data you wish to discard.
    A second method that is easier to implement, but time consuming, is to select each step you DON'T want in your report and bring up the Properties for that step.  Under the Run Options tab, deselect the Record Results box.  That will keep the results of that step out of the report, but you have to do this for EVERY step you don't want to have reported.  The first approach I provided acts to filter the results.
    If you aren't sure what the Parameters.Result.Status will be, then set a breakpoint after that step is executed and scan the parameters when the sequence is halted there.  You can then detect the actual text used as a result for that step, such as "Done" and can set your pre-condition appropriately.

  • How to make the result showing one time and make the result to csv file?

    My script having problem of showing out all the AD computer name result  from Active Directory once when running it and storing the result to csv file. I am a newbie in AD and powershell.
    This is the code:
    $strADPathFile = "D:\Powershell for AD\ADPathList.txt"
    $strErrLogFile = "D:\powershell for AD\errorADComputer.log"
    $arrADPath = Get-Content -Path $strADPathFile
    foreach ($strADPath in $arrADPath)
    try
    $objSearch = New-Object DirectoryServices.DirectorySearcher
    $objSearch.Filter = '(objectCategory=computer)'
    $objSearch.SearchRoot = $strADPath
    $objSearch.SearchScope = "Subtree"
    $objSearch.PageSize = 1000
    $objResults = $objSearch.Findall()
    write-host "Retrieving AD computer information in the domain $strDomain"
    write-host "Number of AD Computer Name result: "$objResults.Count
    foreach($objResult in $objResults){
    $objComputer = $objResult.GetDirectoryEntry()
    write-host $objComputer.dNSHostName
    try
    # InsertSQLTable $objComputer
    catch
    write-host $error[0]
    $strError = $objComputer.dNSHostName + " " + $dateNow + $error[0]
    Add-Content $strErrLogFile $strError
    catch
    write-host $error[0]
    Export-Csv D:\PowerShellforAD\test2.csv
    This is the error that I had get is that it will get the result for 2nd time again.
    By the way, what is InputObject about? I had research some of it and still did not quite get it. Can anyone explain? Thanks 

    Hi,
    in the final line you call Export-Csv. which is a great command at exporting information. However, for it to work it needs a path to export to (D:\PowerShellforAD\test2.csv in your case) and Information (InputObject) to export.
    You do not give that command any Information, so it throws an error.
    Cheers,
    Fred
    There's no place like 127.0.0.1

  • How to make it jump back to previous menu while playing track

    Can I simply set some kind of back button to go back to the menu it was at before the track began playing? I have two detailed menus in addition to the main menu, and want to go back to the detailed menu rather than the main one. I'd still like her to be able to hit 'menu' and go to the main menu when she wants it though. Maybe this is staring me in the face and I'm missing it but I'm not sure how to do this.

    What you would normally do is set the menu command for the track to a script which sends the user back to the menu where they pressed the button to go to the track
    http://discussions.apple.com/thread.jspa?messageID=4642794&#4642794
    Or you can use stories.
    http://dvdstepbystep.com/stories.php
    I am not sure what you mean by the back button? You can set commands for various things but you need to decide how you want to implement this.
    Normally people will use menu command to go back to the calling menu and not the main menu and you can perhaps route the title remote command to the main menu.

  • When I want to attach a file to an e-mail I'm sending from my iCloud account it makes the file show up in the body of the e-mail instead of attaching it as a separate file the receiver can open.  How can I change this?

    When I want to attach a file to an e-mail I'm sending from my iCloud account it makes the file show up in the body of the e-mail instead of attaching it as a separate file the receiver can open.  How can I change this?

    It should be an attachment.  Your Mac just displays a preview of certain attachments (such as .pdfs) in the body of the message.  A PC, for example, will see it as an attached file rather than a preview.
    You can save the attachment on your Mac by Control-clicking on it and selecting Save Attachment.

  • I made an iMovie from iPhoto pictures that both look GREAT.  Watching the DVD i burned on a Playstation2 makes the pics look fuzzy. Why? how can i fix this?

    I made an iMovie from iPhoto pictures that both look GREAT.  Watching the DVD i burned on a Playstation2 makes the pics look fuzzy. Why? how can i fix this?
    MPR

    When you watch on your Mac, it is at or near HD 1920x1080 pixels (about 2 megapixels), depending on the resolution of your screen. Most photos today are 5 megapixels or greater, depending on your camera, but anything over 2 megapixels must be reduced when put in a video.
    When you create a DVD, you must further reduce it to 640x480, standard definition. This is about 0.3 megapixels. iDVD will do this for you.
    You can fix by creating an HD movie in iMovie. You can Share this using Share/Export Using QuickTime to an MP4 container using the h.264 codec. You can then put this movie on your PS3 using a USB thumb drive.
    That should give you good resolution.
    (NEVER MIND, YOU SAID PS2 not PS3, my apologies)

  • How to make plug ins show up in the filter menu, several Topaz plug ins are in the 13 plug in folder?

    How to make plug ins show up in the filter drop down menu, when several Topaz plug ins have been moved from Elements 11 to the plug in folder for Elements 13?

    Thank you for your advice. I followed your directions, but came up with the same results. However, I did discover that whenever I open up the iPhoto Library that is already existing on my MacBook a certain set of pictures shows up. But then when I open up the iPhoto Library from the Hard drive another set of pictures shows up. BUT not ALL of my pictures are showing up on the iPhoto Library from the hard drive. At least the last two years of pictures are not showing up?! Actually, it appears that all the pictures are there from when I started using iPhoto about 5 years ago up until around the time that I got my iMac desktop computer and started using that (2 years ago). I have noticed that more recent videos I have made are showing up in a folder on the hard drive, but will not appear when I open up iMovie?! Any ideas on how to access my pictures from the last 2 years off of the hard drive???

  • How do I download tv shows on iPod? Ios7. They are there. A little cloud icon in the bottom right corner. But unlike an iPad, there is no option (cloud with a downward facing arrow) to download.

    How do I download tv shows on iPod? Ios7. They are there. A little cloud icon in the bottom right corner. But unlike an iPad, there is no option (cloud with a downward facing arrow) to download.

    If they have 'open' next to them then that implies that they are already on your iPad - if you tap on the 'open' button does that open the app ? If it does then they are on your iPad. You've checked all your homescreens and tried a soft-reset to see if they show after the iPad has restarted : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • When i go to my calendar there is a birthday package.  If I make it checked how do I mark the birthdays on my calendar to have the birthday picture?  I obviously need to do something else to make the birthdays show up on the calendar.  What?

    When i go to my calendar there is a birthday package.  If I make that checked (and turned on) how do I make the birthdays on my calendar to have the birthday picture?  I obviously need to do something else to make the birthdays show up on the calendar.  What?

    To show up on the birthday calendar, a birthday has to be entered under the individual contact's information.  Go to contact, edit, scroll down to add field and then choose birthday.
    Hope this helps.
    G

  • How to make the contact picture should appear on the upper right corner with thumb picture when some one calling instead showing the entire screen

    How to make the contact picture should appear on the upper right corner with thumb picture when some one calling instead showing the entire screen

    See deggie's response in this post... https://discussions.apple.com/message/8531821#8531821

  • How to make a slide show or edition including mpeg and other formats

    Hi,
    I am i bit puzzled by the use of iphoto/imovie/itunes.
    I have a Sony camera which generates jpg photos and mpg videos; besides, i have 3gp and mp4 videos from cell phones.
    Firstly, i imported all of them to iphoto. I used a automator workflow to help importing from hotsynced Palm centro files, to discover the first problem with the 3gp files: they could not be iported by workflows.
    Still, they could be seen in iphoto, but then i tried to make a slide show. My idea was to put the photos and videos of a certain event to be watched together, or at least to be able to watch the videos in a sequence, without having to click on each one.
    I didnt get it in iphoto, so i switched to imovie. it was even worse, since it cannot import the mpgs and the 3gps (the jpg photos were ok). What could i do about that? is there any converter or other way?
    then i tried the itunes, and it was the opposite: it imported and played in sequence the mpg videos, but not the photos. This is a workaround anyway, since the program expects to play movies, and makes my daughter a "star", but that`s ok, she is one to me.
    i'll be thankful for hints on how to make the imovie compatible with the 3gp and mpgs, or finding some way to do this edition in iphoto or even with itunes.
    regards

    I see, it sounds reasonable , i think i will buy the pro and try.
    QT Pro ($30) and MPEG Streamclip (free) complement each other. In many cases one can do things that the other cannot. For instance, MPEG Stramclip can handle/edit multiplexed formats while QT Pro cannot. QT Pro allows layering of data tracks while Streamclip does not. Streamclip merges file streams more easily than QT Pro but QT Pro allows the "Movie to MPEG-4" export to "passthrough" the video while Streamsclip does not. And so on and so forth...
    I was referring to the mpegs from the Sony camera, of which a have hundreds, shot in the last 3 or 4 years, mainly from my 5-year old daughter. Is the above true to these?
    That still doesn't help. By "sony camera," are you referring to a still digital camera (multiplexed MPEG-1) or a Sony video camcorder taking MPEG-4/AVCHD with AC3 audio in an MPEG wrapper, a Sony DVD/HDD camera storing some kind of MPEG-2/AC3 files. On a Mac, the extension MPG normally refers multiplexed MPEG-1 (or MPEG-1 audio layer) files while MPEG normally refers to multiplexed MPEG-2 video content with MPEG-1, layer 2 audio (MPEG2/MP2) but may also refer to files with MP3 or AC3 files in an MPEG, VOB, or TS wrapper. In addition it may loosely refer to elementary M2V video streams (M2V video file paired with a separate AIFF or AC3 file), a standard MPEG4/AAC file (in an MOV or MP4 wrapper) or a standard H.264/AAC file in MOV, MP4, or M4V wrapper). Since the handling, conversion, editing requirements vary with each type of file, it becomes important to what specific kind of content/file container we are dealing with here.

Maybe you are looking for

  • Error messages 2502 and 2503 when trying to install itunes to my computer

    I have attempted to download itunes to my windows 8 operating system computer and it keeps telling me that it has encountered and unexpected error installing this package.  This may indicate a problem with this package.  The error messages are 2502 a

  • Kernal panic log need help interpreting

    My iMac crashes with a Kernal panic shutdown message. It happens very spartic but it always seems to be while I am using Safari and my Kensington mouse. Here is the last crash panic log from the console. Can anyone help me figure this out? Thanks, Da

  • Script for adding layer name to artboard as text

    I've found scripts that are sort of close but not quite this. I have 1 artboard and many layers (see image). Does anyone have a script that will take the name of the layer, ie "01_Intro" and create and then place the text "01_Intro" on to the art boa

  • Error in IR

    Hi, Everytime we post IR, there is always a difference (only in decimal) between the balance of the IR and the total PO amount.  So what we do is we put the difference in the Unplanned del costs under details tab.  The difference used to fall  in the

  • If I want to cancel a movie I rented on Apple TV before I watched it hat should I do??

    If I want to cancel a movie I rented on Apple TV before I watched it hat should I do??