ITunes can play only once, then I need to quit in order to play again.

Hi
I have lots of video to play, one day I couldn't play my video without quitting iTunes first. Now whenever I want to play a video, I need to quit iTunes because I didn't quit from after the previous time that I was playing a video clip from my library. I have reinstalled iTunes without effect. How can I solve this problem?
Thanks,
-Jack

This problem has been solved.

Similar Messages

  • TS1538 Every time I want to sync my iphone to itunes I have to uninstall and reinstall itunes on my pc. It will only ever find the phone once, then I need to go through this all over again.

    Every time I want to sync my iphone to itunes I have to uninstall and reinstall itunes on my pc. It will only ever find the phone once, then I need to go through this all over again.
    How can I solve this?

    You'll have to do it by process of elimination. Sign into the iTunes Store through the App Store app, go to the Purchased section, and look at the list of apps purchased through your own Apple ID. Anything on your iPhone not in that list isn't yours and should be deleted. The same process would apply to content from the iTunes Store.
    Or you can just restore the iPhone from your most recent backup and then redownload everything from the iTunes Store. But if you have a lot of apps or content, that obviously wlll be slow.
    I updated my iphone by his ID , is it still problem?
    That's probably how you got your friend's purchases. It won't be an issue for iOS, but it is an issue for those apps and content.
    Regards.

  • I am trying to update the itunes software on my Mac but I keep getting an instalation alert saying please close itunes. It is already closed, the only option then left is to quit instalation. I want the update though. . .

    I am trying to update the itunes software on my Mac but I keep getting an instalation alert saying please close itunes. It is already closed, the only option then left is to quit instalation. I want the update though. Can anyone help?

    Click on iTunes and do comand Q. Be sure you are quitting iTunes to finish update and not just closing the screen.

  • I just buy for 35 nis photoshop and lightroom and i can download only the photoshop. i need help

    i just buy for 35 nis photoshop and lightroom and i can download only the photoshop. i need help

    How to report an issue with Your iTunes Store purchase

  • How come iTunes can play OGG but iPod don't?

    Hi,
    a few files failed to transfer to my just recently bought iPod, all of them OGG.
    However, iTunes can play OGG with no problems...
    Why is this? this seems pretty illogical...
    Regards,
    Leo

    this seems pretty illogical...
    Not that much.
    Itunes uses Quicktime to play audio/video/etc files and I do not think Quicktimes has native support for the vorbis codec (Ogg). Sure thing you have the codec in your PC or installed the Xiph QuickTime Components, so QT can play these files.
    The ipod, in the other hand, does not include these codecs in its OS.
    Hope that helps.

  • Xcelsius runs only once, then the "play=true" needs to be reset.

    Post Author: stephantmi
    CA Forum: Xcelsius and Live Office
    When I export into PowerPoint the dashboard will only run one time... I then need to goto properties and find "play" and change from "false" to "true". I found a website that stated "Note: we've recently discovered that if the flash movie is scripted to stop
      playing rather than loop or repeat then this command appears to be passed to
      PowerPoint - this results in the play command being reset to false. The simple
      solution (if you've got the source flash file) is to remove the offending command,
      alternatively you'll have to save the presentation with play set to true and
      not run it again until ready to present - it'll only run once and will need
      resetting before it'll work again!" How do I send out a PowerPoint that would allow the person I would email the presentation to run the slide show and interact with the dashboard if it doesn't initiate without manual intervention.

    Post Author: abrat
    CA Forum: Xcelsius and Live Office
    I assume this is with X2008?   BTW. Right-clicking on the flash and choosing 'play' should also work. This is an Adobe issue. They have increased the security on the use of flash files.  They are afraid of malicious use and viruses so they now require manual intervention.  You could contact Adobe and let them know how this security feature is affecting you. Xcelsius is also currently in talks with them. - Andy

  • Viewing swf from HTML- user can view only once

    Hi,
    I have my swf files which are getting called in browser when user opens its corresponding page.
    To ensure my swf is not used by user for his other purposes, i had to strict it to view from HTML page which has a variable. Same variable is passed from swf to this HTML.
    if both variables does match then only swf starts preloading. this works fine for first time.
    But when user open the same page second time, he is only able to view preloader which does not progress further.
    When i delete my temp file then user is again able to view the swf only once.
    Can anyone tell me;
    1. what is reason the swf from temp file cannot access variable of its HTML
    2. am I doing it wrongly?
    3. do i need to clear cache everytime or their is another method to do it?
    Thanks.

    hello following is the code used;
    import flash.text.TextField;
    import flash.events.ProgressEvent;
    import flash.events.Event;
    import flash.display.MovieClip;
    //////////STAGE PROPERTIES//////////
    stage.showDefaultContextMenu = false;
    this.tabChildren = false;
    Mouse.cursor = "arrow";
    //////////CALL & SET VARIABLES//////////
    var Progress_txt:TextField = new TextField();
    var theFlashVar:String;
    var ver:String;
    var paramObj:Object = LoaderInfo(this.root.loaderInfo).parameters;
    for (ver in paramObj)
                    theFlashVar = String(paramObj[ver]);
    //////////START USER VERIFICATION//////////
    checkFlashvar();
    //////////HTML VERIFICATION//////////
    function checkFlashvar():void
                    //trace("CHECKING Flash VAR");
                    if (theFlashVar=="mystring01")
                                    InternalPreloader();
                                    //trace("pass var found");
                                    //InternalPreloader();
                    else
                                    //trace("VAR NOT FOUND");
                                    gotoLocalVar();
    //////////LOCAL VERIFICATION//////////
    function gotoLocalVar():void
    //////////LOAD LOCAL DATA////////// 
                    var keyLoader:URLLoader = new URLLoader();
                    keyLoader.dataFormat = URLLoaderDataFormat.VARIABLES;
                    keyLoader.addEventListener(Event.COMPLETE, chkLocalVar);
    //////////CHECK ERRORS//////////
                    keyLoader.addEventListener(IOErrorEvent.IO_ERROR, onLoadError);
                    keyLoader.load(new URLRequest("C:/code.txt"));
    //////////CHECK LOCALLY LOADED DATA//////////
                    function chkLocalVar(event:Event):void
                                    if (keyLoader.data.passKey == "mycode")
                                                    //trace("pass key found");
                                                    play();
                                    else
                                                    //trace("Local VAR NOT FOUND");
                                                    stop();
                                                    parent.removeChild(root);
    //////////LOCAL FILE ERROR HANDELLING//////////
    function onLoadError(evt:IOErrorEvent):void
                    //trace("TXT FILE NOT FOUND");
                    stop();
                    parent.removeChild(root);
    //////////INITIATE PRELOADER STATUS//////////
    stop();
    function InternalPreloader():void
                    stop();
                    Progress_txt.x = 400;
                    Progress_txt.y = 300;
                    addChild(Progress_txt);
                    //trace("load progress event");
    //////////CHECK PRELOADER STATUS//////////
                    if (this.loaderInfo.bytesLoaded == this.loaderInfo.bytesTotal)
                                    //trace("checking if condition");
                                    finishedLoading();
                    else
                                    progressLoading();
    //////////PRELOADER PROGRESS EVENT LISTENERS//////////
    function progressLoading():void
                    //trace("progrss loading is running");
                    this.loaderInfo.addEventListener(ProgressEvent.PROGRESS,onProgress);
                    this.loaderInfo.addEventListener(Event.COMPLETE, onComplete);
    //////////PRELOADER PROGRESS STATUS UPDATE//////////
    function onProgress(p:ProgressEvent):void
                    Progress_txt.text = String(Math.floor((p.bytesLoaded/p.bytesTotal)*100))+ "%";
                    preloader_mc.bar_mc.scaleX = (p.bytesLoaded/p.bytesTotal);
                    //trace("checking progress");
    //////////PRELOADER STATUS COMPLETE-REMOVE LISTENERS//////////
    function onComplete(d:Event):void
                    //trace("Fully loaded, starting the movie.");
                    play();
                    //removing unnecessary listeners
                    removeChild(Progress_txt);
                    loaderInfo.removeEventListener(ProgressEvent.PROGRESS, onProgress);
                    loaderInfo.removeEventListener(Event.COMPLETE, onComplete);
    //////////PRELOADER STATUS 100% (LOCAL CONDITION)//////////
    function finishedLoading():void
                    //trace("loading completed");
                    removeChild(Progress_txt);
                    play();

  • Creative Cloud will only open once, then it needs to be re-installed + only get white screen + no adobe programs work

    So the title is pretty clear. And I've done a ton of research and tried everything. It used to all work fine too. It started with none of my adobe programs being able to work. The little thumbnail icon would break and I would get an error if I tried to open any of them. This only happened with adobe software, and they would typically work for a while before breaking. Then the creative cloud app stopped working too. Anytime I get it open it's blank, and if I close it, the program won't launch anymore. I need to reinstall it.
    I removed all adobe everything off my computer, and used ccleaner to get rid of any excess, then reinstalled the creative cloud app, still doesn't work.
    My email had an underscore in it, but I changed that. No weird characters anywhere in my profile. I've also tried every variation of dealing with the OOBE folder stuff.
    I don't know what to do... please help

    Hi Alexander,
    Kindly try to create Root account (Mac)/Hidden Admin Account(Win).
      http://social.technet.microsoft.com/wiki/contents/articles/3040.enable-disable-the-local-h idden-built-in-administrator-a…
       Enabling and using the "root" user in OS X - Apple Support
        2. Try using Cleaner to remove Creative Cloud desktop app only
        3. Reinstall Creative Cloud.
    Thanks,
    Atul Saini

  • Sales order related invoice but invoice can generate only once PGI is done.

    Hi All,
    I have situation in project, we have to generate sales order related invoice. but Invoice should only get generate once delivery, Shipment and PGI is done.
    My Qus are listed below?
    1. Is that possible in Standard SAP?
    2. Is it possible by using any user exit?
    we don't want to do any Z thing in our project, so please suggest how we should handle this situation.
    Thanks & Regards,
    Sulabh

    Hi Prasanna,
    My client is a luxury car maker in UK and its complete make to order scenario.
    I have doubt
    1, Suppose Customer is ordered 100 PC , Suppose end user Trying to Raise the Billing based on the Order but system should check Delivery means PGI is done Or not , in that case supose Delivery is Done 50 PCS But at the time of Billing how you Come to know that Delivery is Happened 50 PC then again you back and See the Document flow of the Sale order
    *I my case there will always be one material with 1 quantity. so no issue of partial delivery*
    2. Same customer is ordered Multiple SO , at the time of Delivery You combined Multiple Sale Orders and Done the Partially Delivery and How come to know each SO Partially Qty that means Again you have to check
    There will not be a case of combined delivery also.
    3. IF Partially Done in Delivery level for Multiple SO , how can you raise the Partially Qty of those SO for Billing
    Thanks & Regards,
    Sulabh

  • Ipod duplicates an album, but itunes shows it only once.

    Mi ipod touch has started to duplicate several albums, but my itunes only shows a single copy. The difference between the 2 albums is that one copy will have several tracks missing while the other will be complete. If I delete the one with missing tracks from the ipod it deletes those tracks from the other album, so I end up with just 2 or 3 tracks. I have tried deleting it in itunes and syncing the ipod and then re-adding the album to itunes. This is just a waste of time as it always re-syncs the ipod with both copies again. If anyone can help I would be greateful.

    I have this exact same problem.. exactly.. and it breaks my balls.  I am not OCD about songs, but it's nice to be able to put all the songs of one artist on, without whole albums being repeated with other albums missing songs like you said.  I hope someone cleans this act up for us. Peace
    UPDATE: I might have figured it out... randomly some songs in an album are marked as "part of compilation".  It turns out this is messing everything up! when you untick it and add them back into your ipod.. ORDER IS RESTORED!! YES!!! i was losing sleep with this ****. x

  • TS1538 how to turn off compatibility mode so my itunes can play..... wont play on windows 8

    i have an i phone   i downloaded music on my home pc which is vista  but can not play on windows 8 on my office pc      its says turn off compatibility mode how do i do that?

    Refer to this article:
    iTunes for Windows: How to turn off Compatibility Mode
    http://support.apple.com/kb/TS1489

  • PCI 6036E/SC 2075, can read only from ch 2, need to use both. help please

    I have interfaced DAQ PCI 6036-E with SC2075. I wrote a code to get data from analog input chl 1 and ch 2. I am getting data only from ch1. cables and hardware connected to sc2075 had been tested and are working properly. help please .Also, is it possible to test those channels from measurement and automation explorer and how ?.thanks

    Greetings,
    Yes, it is possible to test these analog input channels in Measurement & Automation Explorer (MAX). To do so, expand Devices and Interfaces, right-click on the PCI-6036E, and select Test Panels. On the Analog Input tab, you can set the Channel control to any of the device's channels. If both CH1 and CH2 function correctly in MAX, you will need to troubleshoot your code.
    Good luck with your application.
    Spencer S.

  • UCCX 7.x - Agents phone rings only once then rings at next agent.

                      Our Help Desk is using a very simple UCCX app.  Basically the script checks to see if any agent is 'logged in' and 'ready' and if so rings that agent immediately.  If agnets are 'logged in' but all are 'not ready', the call goes to queue.  If no agents are 'logged in', the call goes directly to a voice mail box.  The problem I'm having is that occasionally (haven't been able to develop a pattern) there will be multiple agents 'logged in' and 'ready', the call will ring on an agent's phone one time and as they pick it up it rings to the next agent's phone instead.  Calls are getting handled, but it appears there is a RNA for the first agent.  Any ideas?
    Thanks,
    Mel

    This sort of thing usually needs to turn into a TAC case to review logs of the problem actually happening. A few thoughts though:
    Communication with CAD is flaking out and the MIVR engine is being told the agent isn't available all of a sudden. Windows/PC-side firewall?
    The version of CCX doesn't support the CTI Manager/TSP version running on CUCM. Are the versions listed in the CCX compatibility matrix? If not all sorts of strange CTI behavior can occur.
    Does the ACD DN follow all the rules? For example, no CFNA/CFB to voicemail, max call/busy call triggers of 2/1, no hold reversion, etc.
    Are you running the latest CCX 7 release? Never discount the possibility of a bug.
    Please remember to rate helpful responses and identify helpful or correct answers.

  • After loading firefox it will open once then when i shut down unaberle access the web again

    I load firefox and access the internet but when I back out of firefox to continue with something else and attempt to access the net again with firefox nothing happens. It lost in the back ground of the computer. Never had this problem before with firefox until I tried to use bitcomet and zonealarm. It fustrating.

    Try to close Firefox via "File > Exit" if you are currently doing that by clicking the close X on the title bar.
    See also "Hang at exit":
    *http://kb.mozillazine.org/Firefox_hangs
    *https://support.mozilla.com/kb/Firefox+hangs

  • If I already purchased music on itunes can I gift it to someone else without having to pay for it again?

    I want to gift someone an album that i purchased, but i dont want to buy it again.

    Underdog74 wrote:
    So I'm stuck with my daughters Teen Pop on my account with no way to transfer it all to her if she sets up her own account; and in essence forcing her to buy all her music over again.  Hoping you have another solution for me.
    Thanks
    That is entirely different ffrom your original question.
    Just give your daughter a copy of the song files, which she will add to her library.  Use a USB flash drive to do so.

Maybe you are looking for

  • LaserJet 100 color MFP M175nw - how do I install a different driver on the server to which I RDP?

    I have installed my LaserJet 100 color MFP M175nw on my (32-bit) Windows XP Pro SP3 PC via USB and it works fine.  When I make it the default printer (I also have another HP printer installed locally) and use Windows Remote Desktop (RDP) to my server

  • VAT/Belgium

    Hi, I have a requirement for Belgium country. I have to calculate vat receivable and vat payale at the same time for a business transaction like below mentioned. The same should be displayed in f.12(VAT Report). scenario : Expeses a/c dr 100         

  • Semaphor between VI and its clone

    Hello fellow LV enthusiasts, I have a question on the possibility of something. I made a program that saves measured data into an excel file. Working great, no worries. Now, I want to be able to clone the VI, so I can run to measurement at the same t

  • Declaration issues with  script logic

    we use to write the logic as below in 5.1 *MEMEBERSET(%PRODUCT%,"Desendents(PRODUCT_LTERM.TOT_PROD,999,LEAVES)") *XDIM_MEMBERSET ACCOUNT_LTERM=100000000_D,110000000_D,120000000_D,130200000_D, *XDIM_MEMBERSET DATASRC=INPUT *XDIM_MEMBERSET ENTITY_LTERM

  • Spry With Cold Fusion + Tutorials

    Hi, I want to try Spry with cold fusion . Can anyone help me on getting some tutorials?