Is there a way to play a slideshow that continuosly loops while also have itunes radio also stay on?

We are trying to run a slideshow to show off our work on the tv we have in our offices, but we would also like to have itunes Radio play and for some reason, the itunes Radio keeps shutting off after a certain amount of time.  Is there a way to have that continuously playing on the apple tv while also having the slideshow loop?

iTunes radio will time out after 2 hours if there is no user interaction.
http://support.apple.com/kb/TS5181?viewlocale=en_US&locale=en_US

Similar Messages

  • Is there a way to play video clips that use adobe flash and if not when are you going to resolve your problem with them ? I won't buy another apple product until you do and I Know I,m not the online.

    Is there a way to play video clips that use adobe flash and if not when are you going to resolve your problem with them ? I won't buy another apple product until you do and I Know I,m not the only one.

    Use the search feature and type in Flash and there are like thousands of posts on this.
    You seem to think you are addressing Apple with your post.  This is a user forum and we are all users just like you.

  • Is there a way to undo a backup that overwrote a previous backup on itunes?

    I recently restored my iphone due to some complications, everything was going good. I forgot my encrypt backup password and had to restore as a new iphone. I was planning on restoring it again once i remembered my password however itunes backed the new iphone up, replacing the old back up. I was wondering if i could some how undo the newest backup that was on my itunes and get back to the old one.  Also is there a way to unencrypt the password for the backup?
    This is for itunes windows xp

    De-encrypting isn't possible, you have to have the original password.
    A little trick is to make a backup copy of the backup, by adding something like a number to the name of the extra copy yoiu make, then if necessary you can rename the latest backup, change the older backup to a current name and the system will be fooled into thinking you are using the latest version.  If you do that, keep track of what you are doing with the backup names so you can keep them straight.  Making an extra copy of a backup, stored in a different folder, helps for the occasion of forgeting a password and needing a good copy to use when doing a complete restore.

  • Is there any way I can recover photos that I took after my last iTunes sync? My phone broke and I had to restore it, so I lost the pictures!

    Any way the photos are still on the iPhone some how and I just need to access them in a certain way?
    Any help really appreciated!

    If your PhotoStream was turned on you might be able to copy the photos from there. Use the photos app and check the PhotoStream album.

  • I just inherited an iphone 3gs from my dad.  I want to get my music off my ipod and onto my iphone, but now that it is synced with the iphone itunes wants to strip all the info off my ipod.  Is there a way to get my music that is on my ipod onto itunes?

    If I try to sync my iPod with iTunes on my laptop, it won't let me - it says it is going to remove all the music on my ipod first!!!  I just want it moved from my iPod to my (new to me) iPhone!

    Transfer iTunes purchases by:
    iTunes Store: Transferring purchases from your iPhone, iPad, or iPod to a computer
    - For other music you need to use a third-party program like one of those discussed here:
    Copy music from Ipod to new computer...: Apple Support Communities

  • I want to play music from my playlist when I am using slideshow of my pictures in Ipad,  but I can only choose ONE SINGLE song, and it continuously repeates itself.  Is there a way to play the complete playlist while showing my pictures?

    I want to play music from my playlist when I am using slideshow of my pictures in Ipad,  but I can only choose ONE SINGLE song, and it continuously repeates itself.  Is there a way to play the complete playlist while showing my pictures?

    You can start the playlist playing in the iPod app and then switch into the Photos app and start your (non-music) slideshow - as you've found out you can currently only select a single track in the Photos app. Whether that will change in iOS 5 I don't know, but you could try leaving feedback for Apple : http://www.apple.com/feedback/ipad.html

  • Is there a way to play music on my iphone (4) without it being interrupted by phone calls?

    Is there a way to play music on my iphone 4s without it being interrupted by phone calls?

    Settings > Airplane Mode > ON

  • Is there a way to play an mp4 file at the beginning of a published project only when the project is accessed from a specific site?

    Is there a way to play an mp4 file at the beginning of a published project only when the project is accessed from a specific site?
    A little background info. I use Captivate 7 and currently have over 100 projects that I maintain on a quarterly basis. I publish using the SWF format and upload the swf/htm files to a server where they are then accessed from a few locations (within our online documentation, in our software product, on two different websites). Many of the projects are linked so some will be viewed as a series and others viewed as a standalone video. Each video uses the same template and includes an intro and end slide. Now my organization wants to implement a new intro to all videos (those I publish and those from several groups across the organization). My current intros provide overview material for the specific video so the new intro, which is an animation with audio in mp4 format, would need to be placed at the start of each project. The issue is, the intro adds 9 seconds to every video and in many cases doesn’t add any value (say, if a user accesses the video from within our product or views the videos as a series). I’ve talked it over with my boss and we want to try to add the intro only to videos accessed from site X, not any other location. So now to my question. Is there a way to play an external mp4 file (intro) only when the published project is accessed from a specific site, therefore eliminating the need to update each project? Maybe there's a way to add a parameter or variable to the URL or the html code?
    Thanks in advance for your suggestions. Please let me know if you need additional information.

    AimeeLove,
    I have a solution for you.  You may have to modify the code a little bit based on how long the timeline animation is for your clock.  I based mine on 3 seconds to complete a minute hand sweep around the clock.
    Milliseconds for each point on the clock:
    12 = 0
    1 = 250
    2 = 500
    3 = 750
    4 = 1000
    5 = 1250
    6 = 1500
    7 = 1750
    8 = 2000
    9 = 2250
    10 = 2500
    11 = 2750
    In the mouseover section for 12 o' clock, put this code...
    myVar = setInterval(function(){
         var pos = sym.getPosition();
         if (pos > 0 && pos < 50){
              sym.stop(0);
              clearInterval(myVar);
    },10);
    When you point to the time, the setInterval method loops every 100th of a second and checks the current position of the timeline.  When the timeline reaches the range between 0 and 50 milliseconds (almost impossible to hit 1 specific point), the timeline will stop at 0.  Also, the clearInterval will be fired to stop the loop.
    In the mouseout section, put this...
    sym.play();
    clearInterval(myVar);
    It start the clock again, and it also clears the loop in case you mouseout before you reach the range.
    Make sure that myVar is a global variable so you can clear it from the mouseout section.
    Repeat this for each point on the clock.  To avoid potential conflicts, you may want to use my12, my1, my2, etc. instead of myVar.  I put the milliseconds at the top that you would use as the beginning of the range.  50 milliseconds should be enough to catch it.  So, for 5 o' clock, you would make your range between 1250 and 1300.
    Let me know if you have any questions.  Thanks!
    Fred

  • Is there any way of undoing a shuffle? The CDs I downloaded to iTunes have all been shuffled. As most of these are classical, it is inappropriate to have them separated into songs that play any old time. Can I restore them to the original albums?

    Is there any way of undoing a shuffle? The CDs I downloaded to iTunes have all been shuffled into individual 'songs'. As most of these are classical and folk, it is inappropriate to have them separated into songs that play any old time (ie, a movement from Beethoven's 5th symphony followed by a folk song followed by one excerpt from Vivaldi's Four Seasons, etc. Can I restore them all to the original albums and make sure the shuffle doesn't happen again?
    Thanks!

    goldberry wrote:
    Thanks! That has worked, but only partially - there are still some Beethovens mixed in with the Vivaldis. I'm sure I installed these as total albums.
    I have noticed that too from time to time, I generally move the files into the correct folder and fix the index in itunes when one won't open, occasionally.

  • Is there a way to play itunes music with the computer shut?

    Is there a way to play itunes music while the computer is shut?

    Not without either an external monitor and keyboard, or using a hack. If you want to try an hack app, look into:
    http://www.macupdate.com/app/mac/22211/insomniax
    Use at your own risk.
    Regards.

  • Is there a way to play divx movies on my ipod touch?

    Is there a way to play divx movies on my ipod touch?

    Search the App store. Here is one
    https://itunes.apple.com/us/app/id451024857?mt=8

  • Is there a way to play a trufire app on a laptop?

    Purchased 'app' erroneously - didn't realize it was an app until I couldn't find the purchase in iTunes. Is there a way to play this truefire app thru iTunes, or burn it to a disc or somehow get access to the info?

    Not really - your best approach from this point is to change your password, make sure there are no other administrator users on the computer (System Preferences - Accounts/Users and Groups), and add a firmware password so that the computer cannot be restarted from another source (don't forget this password, or you will not be able to reinstall the OS or boot from an external drive).
    http://osxdaily.com/2014/01/06/set-firmware-password-mac/
    Matt

  • Is there a way to play flv & mkv file formats through media element in windows 8.1 app ?

    i am trying to develop a video player so i just thought Is there a way to play flv & mkv file formats through media element in windows 8.1 app ? , coz when i tried media element it is supporting only mp4 & avi formats.

    Here is a list of Media Foundation codecs
    http://msdn.microsoft.com/en-us/library/windows/desktop/dd757927(v=vs.85).aspx
    For the rest of the formats you have you write your own MFT-based codec and ship the codec with your app. See also
    implementing a Codec MFT (http://msdn.microsoft.com/en-us/library/windows/desktop/dd757274(v=vs.85).aspx)
    Media extensions sample (https://code.msdn.microsoft.com/windowsapps/Media-extensions-sample-7b466096)
    MKV and FLV are just container formats, though, you need to survey some video files to see what video codecs are actually in streams and support them one by one. Supporting some proprietary video formats may involve licensing costs from patent holders.
    Visual C++ MVP

  • Is there a way to play your music through your laptop and the apple tv?

    Is there a way to play your music through your laptop AND the apple tv? I use my apple TV with screen sharing, but then there is no more sounds coming from my laptop. Is there a way to do this?

    on you laptop you will open itunes. up next to the play button you will see the little airplay symbol, you need to click that, press Apple TV, then select some music.

  • Is there a way to play multiple episodes in Netflix App

    Is there a way to play continuos episodes in Netflix with the Apple Tv App?

    Not at this time.
    Each episode must be selected individually.
    Contact Netflix and ask them if/when they will be updating their app.

Maybe you are looking for

  • PCtr in CWIP Settlement line items

    Hi all of you When I am doing CWIP settlement system is asking the PCtr as it is mandatory field in Document splitting. I have assigned one Internal order in the asset master and based on the order system is picking the PCtr in acquisitions,it is fin

  • Camileo x-sport: Can I connect external mic to micro USB

    Hello everybody, I need to record audio with a lavalier microphone. Can i connect an external microphone to the micro USB of the Camileo x-sport to record audio ?

  • How  to propogate the JAAS LoginException to JSP

    Hi, I have written a simple LoginModule to plug in to tomcat 5.0xx. Just wondering is there a way to propogate LoginExceptions to a Tomcat JSP page. The current situation is when during authentication, if I I were to abort the process ( login() retur

  • ISE 1.3 hotspot

    Do we need separate license for ISE 1.3 hotspot feature

  • About MESSAGE_ID

    Hello All, iPlanet Messaging Server 5.2 HotFix 1.25 In the log file, We found different mails fro the same person with the same MESSAGE _ID. Could anybody tell me why? 26-Dec-2004 00:57:05.15 tcp_local ims-ms E 3 [email protected] rfc822;@mail.com:[e