Privilege Movies won't run

I live in Brazil. On december 2013 I redeemed de code sucessfully for my 5 free movies.
Seen the movie options but could not decide and did not download because was without wifi or 4G.
Tried to download the movies now and the app says it does not support my area! But it DID one month ago!

i redeemed my 3 privilege movies. 2 movies are running fine but 1 movie "Moneyball " did not run. it showed the following error:
"sorry, there's been a playback error. please try again. if you continue to get this message, delete and re download the movie. (-1-PRDY_MEDIA_ERROR_FAIL)
i have downloaded this movie 4 times and each time it is showing the same error. please help me or provide me the option to choose another movie.

Similar Messages

  • Movies won't run (for me)

    Movies uploaded to "Me" from my Canon Powershot Pro 1 won't run for me when I access the gallery page. I get a Quicktime formatted black screen with controls, then a message to download some more software.
    Which software do I need? Why will the run OK in iPhoto and not here?
    Thanks in advance,
    Dave Wilson

    Thanks for your response. I hate to be so dense, but I don't have a clue as to what an AVI container is.
    Looking forward to hearing from you.
    Dave

  • QuickTime movies won't run on Web Gallery - asking for QT 7.2

    Hi
    I have this problem. When I try to visit my Web Gallery under Fire Fox and watch the movies I posted I got the message the to play this file I need to have QT 7.2. I have the latest version of QT installed and it runs without problems under Safari. Does anyone have the same problem. Is there any setting I can change to make QT work with Fire Fox?
    Thanks
    Mark

    You might do better to ask in the forums for QuickTime here:
    QuickTime
    There's a higher concentration of video gurus there, and they probably know of workabouts to your problem.

  • Itunes downloaded movie won't run anymore

    I upgraded my Macbook from Leopard to Mountain Lion and then upgraded iTunes.  Now when I download a movie off of the iTunes store and try and play it, the error message comes up that says:  This movie requires QuickTime, which is not supported by this version of iTunes.  What is going on here!!!?

    I am having the same problem right now and I can't seem to find an answer, I really wish I could help you :/

  • Scripted movie won't run outside of firewall...open multiple ports?

    I'm new to Flash and AS3, but with the help of many examples I have managed to created a scripted movie using some time lapse photography.  I load the images from an XML file and use an event listener to add each image as a child of a movie clip.  As the number of children grew, it caused the frame rate to slow, so I figured out that I could remove them after they were viewed and just keep looping through the array.
    This works great on the local machine and when served up from the web server behind the firewall.  However,  if I try to access the file from outside the firewall, it loads the first image or two very slowly (if at all) then hangs.  I've performed a net stat from the server and noticed that it is opening an inordinate number of connections to the remote client on various client ports (from 6 to 60+).
    Any help would be greatly appreciated!  The code I'm using is below...
    // Input Parameters
    var ssxml:String = "myfile.xml"; // file containing images & dates
    // Stage settings
    var swfStage:Stage = this.stage;
    var swfFrameRate:int = 10;
    swfStage.scaleMode = StageScaleMode.NO_SCALE;
    //  Movie Clip
    var mc:MovieClip = new MovieClip();  // initiate movie clip
    mc.x      = 25;     // starting point X
    mc.y      = 50;     // starting point Y
    //  Text Field
    var tf:TextField = this.dtsText;
    // Cropping Rectangle
    var cr:Sprite = new Sprite();
    cr.graphics.beginFill(0x057072);
    cr.graphics.drawRect(25,50,550,7);
    cr.graphics.endFill();
    // Read Flash Variables
    try {
    var keyStr:String;
    var valueStr:String;
    var paramObj:Object = LoaderInfo(this.root.loaderInfo).parameters;
    for (keyStr in paramObj) {
      valueStr = String(paramObj[keyStr]);
      if (keyStr == "srcFile") {
       ssxml = valueStr;
      if (keyStr == "swfFrameRate") {
       swfFrameRate = int(valueStr);
       swfStage.frameRate = swfFrameRate;
    } catch (error:Error) {
    trace (error.message);
    *  Configure a loader to import the list of images and date
    *  time stamps from an XML file. The list of variables will
    *  be stored in arrays.
    var photos_xml:XML
    var xmlLdr:URLLoader = new URLLoader();
    xmlLdr.addEventListener(Event.COMPLETE, completeHandler);
    xmlLdr.load(new URLRequest(ssxml));
    var img_array:Array = new Array(); // images
    var dts_array:Array = new Array(); // date time stamps
    var img_count:int   = 0;
    function completeHandler(event:Event):void {
    try {
      photos_xml = new XML(event.target.data);
      var imgs:XMLList = photos_xml.img;  
      var dtss:XMLList = photos_xml.dts;    
      img_count = imgs.length();
      for (var i=0;i<img_count;i++) {
       img_array.push({src:imgs[i].text()});
       dts_array.push({src:dtss[i].text()});
    } catch(error:Error){
      trace(error.message);
    var nextImg:int = 0;
    var imgLdr:Loader = new Loader();
    imgLdr.contentLoaderInfo.addEventListener(Event.COMPLETE, doneLoad);
    imgLdr.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, loadError);
    imgLdr.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, updateInfo);
    stage.addEventListener(Event.ENTER_FRAME, enterFrameHandler);
    function enterFrameHandler(event:Event):void {
    try {
             if (img_array.length > 0 ) {
       loadInitialImage();
    } catch(error:Error){
      trace(error.message);
    function loadInitialImage():void {
    imgLdr.load(new URLRequest(img_array[nextImg].src));
    function doneLoad(event:Event):void {
    var theImage:DisplayObject = event.target.content;
    imgLdr.unload();
    var bm:Bitmap = theImage as Bitmap;
    mc.addChild(bm);
    mc.scaleX = 550/640;
    mc.scaleY = mc.scaleX;
    addChild(mc);
    addChild(cr);
    tf.text = dts_array[nextImg].src;  
    if (mc.numChildren > 1){
      mc.removeChildAt(0);
    nextImg = (nextImg+1)%img_count;
    function loadError($event:IOErrorEvent):void {
    tf.text = "Loading Data.....Please Stand By..........."; 
    //  Loader Progress
    var swfTF:TextField = new TextField();
    swfTF.autoSize = TextFieldAutoSize.LEFT;
    swfTF.border = false;
    addChild(swfTF);
    //swfTF.text = "srcFile: " + ssxml + " FR: " + swfFrameRate;
    function updateInfo($event:ProgressEvent):void {
    swfTF.text =  "srcFile: " + ssxml + " FR: " + swfFrameRate
         + " Loading: " + img_array[nextImg].src + " "
         + Math.floor($event.bytesLoaded/1024)
         + " KB of "
         + Math.floor($event.bytesTotal/1024)
         + " KB.";

    OK I figured it out.  Apparently, the ENTER_FRAME event continues firing even as the image loader is processing.  Outside the firewall, where it was taking longer to load the images, this was causing loadInitialImage() to request the same image over and over again which resulted in the port behavior I was seeing on the server as well as the client "locking up".  The simple fix was to add a variable called currentImg (initialized to -1) which I set equal nextImg in loadInitialImage().  I then modified the if statement in enterFrameHandler() to only call loadInitialImage() if nextImg != currentImage.

  • Movies do not run and cover art is missing in iTunes Mac after sync with iPad

    I down load purchased movies from Apple to my iPad.  The movies runs fine and cover art is visible.  Great.  However, after I sync with my Mac Mini, the cover art on my iPad is missing.  The cover art in the iTunes library on my Mac Mini is missing, and the movies won't run on the Mac Mini.  Whe I re-sync, I get a message that says the movie can't sync because it can't be found.

    Is your album cover issue resolved?
    If not, have you perhaps tried to disable iTunes Match on your iPhone (in Settings) and signed out of your Apple ID (on the phone)? This might work.
    The issue seems to be that the iTunes Match server does not update all the tracks with the new album cover art, particularly if you added the covers some time after importing the CD's (remember then that there was no cover art on some of them!)
    Another possible solution is to rename the iTunes database (.itl file) by appending say "old" (without the quotes) and recreate a new one with maybe 1 or 2 albums, wait for the server to match the tracks (you can check on your iPhone after disabling and then re-enabling iTunes Match on the phone), then delete the 1 or 2 albums so that the iTunes music library is empty and wait again; you can check the iPhone again.
    Finally, quit iTunes, delete the latest database and rename the original database with its original name (by removing the "old" appendage).
    Then let iTunes Match reload the server with all the information: this might take a few minutes (hours?) depending on the size of the library.
    In the meantime you can remove all the music on the iPhone by disabling iTunes Match in the phone's settings.

  • CS3 installs but won't run

    Ok - not sure if this goes in this section or not.. but it's a technical question.
    My b/f bought me a Dell Laptop last week. It has the recommended minimum of everything adobe says it needs for photoshop CS3 (see below for 1721 specs)
    When I installed it on the laptop - it was slow, but said it installed. But when I go to open up Photoshop, it opens the screen - and then just hangs. After about 5 minutes it says not responding and I close it. Any of the other programs that came with won't even get that far. I click on them and it gives the little "thinking" circle (as I call it.. lol) and then nothing.
    I have read that CS3 has issues with Vista - but their site says the home premium should work. I've also read about 64 bit issues.. but the OS is 32 bit - so it's capable of running 32bit systems... I guess.
    I called adobe yesterday after installing and reinstalling CS3 15+ times... with the same issue. I was on the phone for about 2 hours with them. Basically - they have NO CLUE what it would be since it installs fine and opens with no error messages. I checked the log files and there is nothing in there I see that says any kind of error.
    I have disable windows defender, uninstalled McAfee and google desktop (all are known to cause issues with CS3), I have ALL non MS startup services turned off.. I have turned off the MS users control.. all suggested by the adobe tech.
    I have installed using the run as administrator. Nothing. Created a new admin account and installed on that user and opened on reg admin account. Nothing. (again typical things that correct cs3 install issues)
    The last thing the guy said was that it might be a video issue. I checked and there aren't any issues mentioned and no driver updates listed.
    We tryed installing this on my b/f's laptop. He bought the exact one I have (except his is red.. mine blue.. lol) and it does the EXACT same thing...
    So today we called dell. they say it's a software issue and won't answer any questions for free. Apparently only hardware support is free... But they won't accept this is a hardware conflict with the software..
    errrrr
    Anybody have any clues on this?
    =======================================
    LAPTOP SPECS:
    Inspiron 1721 Notebook: AMD Turion 64 X2 Mobile Technology TL-56 (1MB/1.8GHz) Genuine Windows Vista Home Premium
    Operating System
    Genuine Windows Vista Home Premium
    Memory
    2 GB DDR2 SDRAM 677MHz (2 DIMMs)
    Hard Disk Drive
    120 GB SATA Hard Drive (5400 RPM)
    Video
    ATI RADEON Xpress1270 HyperMemory
    Media Bay
    8X DVD +/- RW w/dbl layer write capability
    Base
    Inspiron 1721 Notebook: AMD Turion 64 X2 Mobile Technology TL-56 (1MB/1.8GHz)
    Bluetooth Wireless
    Bluetooth Wireless Card 355
    Software Upgrade
    Microsoft Works 8.5
    Premium Pack - Advanced Photo+Music: Deluxe Pack + Paint Shop Pro XI
    NoteBook Screen
    17 inch WXGA+ TrueLife Glossy Notebook Screen
    Hardware Upgrade
    No Camera
    6 Cell Primary Battery
    90W AC Adapter
    Network Interface Card
    Dell 1505 Wireless-N

    Rob - thanks for taking a stab at this.
    I have tried installing from the DVD and also from the zip file. the zip file was extracted to the hard drive brfore I ran it - and I ran it as administrator.
    And when it stalls - it gives the (NOT RESPONDING) tag on the window - which usually means that even if I leave it (and I have for up to 20 minutes) - still nothing.
    Here's the update from my dealings with DEll today...
    Dell tech support guy told me that it was a know issue that CS3 WON'T run on Vista and that Adobe is working the issue
    Told them that I knew others that were running it on Vista and it worked fine. They had no answer.
    Then I waited for the Technical support manger to call. This is after expressing my displeasure to the technical supervisor about them trying to pawn this issue off on anyone else but themselves. Why can't they go grab a 1721 off the shelf and replicate the issue and try to figure it out from there?!?!?!
    I used to work on a network helpdesk.. if I tried to pull that crap answer without trying to replicate the issue and AT LEAST try to find an answer.. I wouldn't have lasted very long at all!!!!
    The Tech manager told me to call customer support and ask for an OS swap (from vista to XP) because they don't know what the problem is and so it muct be a Vista compatibility issue
    I call customer support. They say that they no longer will give out XP since it is a step backwards. And to install XP on the machine ourselves (even a liscensed copy) would void the warranty. They suggest I talk to sales about swapping the laptop out with a "more compatible" one. Which isn't a totally bad idea since I really do think it is an AMD/ATI conflict.
    They transfer me to Sales.. ohh - you used the Employee Purchase program.. you need to talk to them.. and they transfer me.
    The EPP people tell me.. ohhhh you didn't actually go through us since you bought it off the Dell Outlet store. So they transfer me.
    The dell outlet store says they will be more than happy to swap me out to an Intel based machine.
    Only catch is the Intels are more expensive. They don't have any for the price we paid for the amd's. Fot about $40 more I can get one with a slower processer, a gig less ram, no dvd writer, but with a 160gb hd. To get compatible to mine - would be about $150 more.
    And they only have silver in the low end, and black or brown in the higher. Not that I really give a s@!t what the color is.. but it brings up the main reason I am sooo pissed abput all of this....
    Why should I have to pay more money, settle on doing without option/features want/need.. just because THEY don't want to take the time to figure out what the real issue is?!?!?! Why isn't it them doing these calls and doing all this troubleshooting.. Why am I being peanilzed for THEM not wanting to do their jobs....
    Told the B/F that I am done with Dell. That I don't want the laptop anymore and I don't want any other one from them. He says he'll pay the extra and get me the other one.. but that isn't the point....
    Not sure what my next move is.

  • Action steps that won't run correctly in PSE 7/8/9 (but did in 4 and 6)

    I have a wonderful action that was written to work in PSE 3/4/6.  It won't run in PSE 7/8/9.  After fooling around for a while, I think I understand why.  Adobe changed the way Adjustment Layers are handled.  In earlier versions of Photoshop and Elements, Adjustment Layers threw up a modal dialog box.  That changed so that Adjustment Layers now appear in the Palette Bin as a palette.
    Here a sample of some of the action steps that won't work correctly:
    Make adjustment layer
    Using: adjustment layer
    Type: levels
    Set Selection
    To: none
    Set current layer
    To: layer
    Name:  “Adjustment 1”
    Set current layer
    To: layer
    Mode: luminosity
    Stop
    Message:  “Move gray slider left”
    With Continue
    Set current adjustment layer
    To: levels
    In earlier versions of PS and PSE, the way these steps would work is that a new adjustment layer would be created, the dialog box giving the instruction would open, it would be dismissed by clicking "Continue," and then the "Set current adjustment layer to: Levels" would generate a model adjustment layer dialog box would open up which would let one make the adjustment.
    In newer versions, since Adjustment Layers are handled in the Palette Bin, after dismissing the instructions, the action doesn't stop to allow the user to make change the sliders on the adjustment layer.
    The action runs perfectly in CS4 and CS5 and throws up the levels adjustment modal box as it did in PSE 4 and PSE 6, but the action doesn't throw the modal box in PSE 7/8/9
    Does anyone know of a way to alter the action steps to allow the action to stop to allow the adjustment and then to resume again?

    Adding a new levels adjustment layer on top of the Midtone contrast layer
    should work, just use a clipping mask to restrict the adjustments to the
    areas of the levels adjustment layer below. The histogram will be different, but
    actually testing the action is really the only way to know if that makes any difference.
    Replacing the levels adjustment layer is another option, though it requires a few more steps.
    The following assumes when the action gets to this point,
    the Midtone contrast adjustment layer is the active (selected) layer.
    To record this part of the action:
    1. Duplicate current channel (in the channels panel. drag the Midtone contrast mask
        down to the Create new channel icon at the bottom of the channels panel)
    2. Ctrl+click on the newly created channel (Midtone contrast mask copy)
        This loads the selection of that channel.
    3. Drag the new channel (midtone contrast mask copy) to the trash icon at the bottom
       of the channels panel.
    4. Back in the layers panel, delete the Midtone Contrast adjustment layer.
    5. Go to Layer>New Adjustment Layer>Levels
        This creates a new levels adjustment layer using the selection loaded from
        the duplicated channel and opens the levels dialog.
    To load the RGB (composite) as a selection, Ctrl+click on the rgb in the channels panel
    and the same is true for the red, green and blue channels.
    With layer masks, elements doesn't seem to want to load them as selections in actions,
    so that's the reason for the action steps above.
    MTSTUNER

  • Just bought new PC running Windows 8.1. I have Install discs for Photoshop 4 and an upgrade to Photoshop 7. Unfortunately the Photoshop 4 Install disc won't run as it's incompatible with 64 bit. How do I install Photoshop 7 on my new PC? Is there a place

    Just bought new PC running Windows 8.1. I have Install discs for Photoshop 4 and an upgrade to Photoshop 7. Unfortunately the Photoshop 4 Install disc won't run as it's incompatible with 64 bit. How do I install Photoshop 7 on my new PC? Is there a place I can download the Install files from?

    Pagemaker is ancient, obsolete and unsupported. It was discontinued over 10 years ago. (Though why it is still sold is a mystery.)
    If you want to run PageMaker, your best bet is to use a Win2K or WinXP PC.
    Otherwise move to Indesign or look at Serif's PagePlus or Scribus.

  • ITunes 7 won't run after reinstalled XP MediaCenter & reinstall iTunes7

    We made backup copies of the iTunes folder on an external HD, then reinstalled WinXp MediaCenter (not full clean install) and moved iTunes files back from the external HD, then reinstalled new iTunes 7; however, it won't run now. When we click on the icon, it just says "iTunes has encountered a problem and needs to close, we are sorry for the inconvenience. If you are in the middle of something, the information you were working on might be lost. Please tell Microsoft about this problem. We have created an error report that you can send to us." We've tried reinstalling iTunes many times. We've turned Antivirus & Wndows firewall off and on when installing, but no difference.
    Anyone got any suggestions because my wife and 2 teenagers are lost without their iTunes and iPods.
    Thanks,

    Someone in a different forum said to be sure that iTunes is installed under the primary user with Administrator Privileges. I'm pretty sure I did that, but I'll try it again to see what happens.

  • ITunes Error: Cannot play bought iTunes movie from one day to the other "The selected movie won't play on your display."

    Hi,
    just a few weeks ago I watched on my new iMac 5k Retina a long-ago-downloaded movie (iTunes content, HD, Billy Joel. Live at Shea Stadium). I had no issues watching it on the new wonderful display just a few weeks ago!
    Today I wanted to resume the video and got the error "The selected movie won’t play on your display. This movie can be played only on displays that support HDCP (High-bandwidth Digital Content Protection).".
    Actually the movie plays for a few seconds and then the movie window gets black and the error message appears. Restarting iTunes does not help. Restarting the Mac also not.
    How can this be fixed?
    Additionally I get since I moved from my old iMac to the new one the iTunes error "Do you want the application “iTunes.app” to accept incoming network connections?" every time I start iTunes.
    BR
    Alex
    iMac 5K Retina (ser no DGKP813CFY14)
    AMD Radeon R9 M295X 4096 MB, 4 GHz Intel Core i7,
    OS X 10.10.2 (14C1514)
    I am running FCPX, iTunes, Aperture...

    I found the issue, a new app that I installed the other day...just renamed it and now I can watch the bought content again...
    BR
    a

  • HT1498 My rented movie won't play, even though it shows "rented".  What gives?

    My rented movie won't play, even though it shows "rented".  What gives?

    I have a similar issue.  My Dell Latitude is running Windows Pro 8.1 and iTunes 11.1.3.8.  It looks like it's playing, but it isn't.
    Things seemed to work fine before the 8.1 update.  I fear I will have to rollback to 8.0 because the sound no longer works on the computer unless you use the headphone jack. 
    Podcasts and music behave the same way, they appear to be playing, but the timer is not progressing for them either.
    This may be the combination of 8.1 and 11.1.3.8

  • Existing piece won't run video files on windows 7 and vista

    hi, folks - I need some help.
    we have a series of older (2003) authorware pieces that use .mpg and .mov files. We run the lessons (exams, actually) at 10 or so sites across the country, twice a year. They've been running fine for 7 years with occasional updates and tinkering. At the sitting last week we had problems with a lab that just converted to Windows 7 and another laptop that runs Vista Business. In both cases the authorware file loads and runs until a screen that tries to load a video file. The placeholder shows up (a square with an x across it indicating its size), but the piece freezes and nothing runs. The piece runs fine on all the other sites and on a variety of pc's at our location.
    In both cases, we are able to load and run the video files directly from the hard drive through Media Players, but they will not load in authorware.
    I've tried recompressing the files into .wmv, mp4, mov, and avi. Still won't run. Tried recompressing on a different machine and still no joy.
    would really appreciate any ideas or help on this.
    thanks,
    Ron

    thanks, Steve and Eric. Replaced it and it's running fine - appreciate the response and advice.
    Regards,
    Ron

  • Powerpc won't run in Lion

    Just installed Lion, all straight forward but found my account program wont run because it needs 'Rosetta', any ideas on what I can do.

    TLP wrote:
    Is it possible to duel boot and have snow leopard and Lion on the same computer?
    Yes, but you have to partition your hard drive, which usually means erasing whatever you have.  So backup, backup, backup.
    Or use a second hard drive.  Either external or internal, if your iMac can take one.  Install Snow Leopard on one drive and Lion on the other drive.  Which ever version of OSX you'll be using the most, that is what I recommend you install to the internal drive.
    Preferably, I'd recommend installing Snow Leopard to the external hard drive and making it only to run the accounting program (and whatever else won't run on Lion.)  That way if the program is updated to work with Lion, you won't have to reinstall Lion on your internal hard drive when you're ready to move past Snow Leopard.

  • Batch File Won't Run as a Scheduled Task

    I have two batch files that won't run as scheduled tasks but run perfectly fine when I double-click them.
    I've already set them to run with highest privileges, the account running them is an administrator account, that account has full permissions to the folder and file. I've checked every thread I could find but they simply won't run. No error, no log, nothing...
    If I right click the scheduled task and select Run, nothing happens.
    Any ideas?

    Hi,
    As far as I know, you have to enter the script folder in the "Start in" field. Else it just won't work - and won't really give you any meaningful error messages. So, please check your setting.
    Roger Lu
    TechNet Community Support

Maybe you are looking for