HT204370 Downloaded movie not playing after first time

Purchased and downloaded a movie yesterday (have confirmation email of purchase).  Able to watch movie once.  Tried to watch again, but received message "You do not have permission to access the requested resource".  Why am I getting message if I have proof of purchase?

Trashed the video file and redownloaded.
Exact same thing.  Doesn't play for more than a couple seconds. 
Infuriating, and zero responses yet.  Is there a point to posting on here when 99% of the questions I see are unsolved or completely ignored?

Similar Messages

  • ValueChangeListener in Radio Button not acting after first time

    Hi,
    I am using ADF-BC-JSF in Jdev 10.1.3.3. I have a page on which there are 2 radio buttons which show blank at first. As soon as a user selects a radio button, the valueChangeListener calls up a method in the backing bean that opens a dialog for the user. User enters some text in to the dialog and clicks OK after which the window closes. If the user clicks Cancel on the dialog page, the window is still closed but radio button value is reset to blank through javascript. the problem is that it works only first time. second time it tries to autosubmit but only the constructor of the backing bean is called and not the actual function to open the window. Following is the code snippet that may be helpful.
    Radio Buttons
    <af:selectOneRadio value="#{bindings.SP11WarrantDetailsViewMetallurgistReviewStatus.inputValue}"
    layout="horizontal"
    id="metallurgistRadioBtn"
    autoSubmit="true"
    valueChangeListener="#{UploadDownloadBean.exampleOpenDialog}"
    disabled="#{ !UserInfo.metallurgist || bindings.SP11WarrantDetailsViewMetallurgistReviewStatus !=''}">
    <af:validator binding="#{bindings.SP11WarrantDetailsViewMetallurgistReviewStatus.validator}"/>
    <af:selectItem label="Approved" value="Approved"/>
    <af:selectItem label="Rejected" value="Rejected"/>
    </af:selectOneRadio>
    Function to Open the Window
    public void exampleOpenDialog(ValueChangeEvent valueChangeEvent)
    // Add event code here...
    FacesContext context = FacesContext.getCurrentInstance();
    // Create the dialog UIViewRoot
    ViewHandler viewHandler = context.getApplication().getViewHandler();
    UIViewRoot dialog = viewHandler.createView(context,"/sp11/warrant/MetallurgistNotes.jspx");
    HashMap properties = new HashMap();
    AdfFacesContext afContext = AdfFacesContext.getCurrentInstance();
    afContext.launchDialog(dialog,
    null, // not launched from any component
    null, // no particular parameters
    true, //show in dialog
    properties);
    Javscript for resetting the Radiob button
    function closeWindowOnCancel()
    if(parent.window.opener.document.getElementById("notesValueHolder").value == '' )
    parent.window.opener.document.getElementsByName("metallurgistRadioBtn")[0].checked = false;
    parent.window.opener.document.getElementsByName("metallurgistRadioBtn")[1].checked = false;
    Please suggest what can be the possible cause.
    Regards,
    Neeraj

    Hi,
    I am using ADF-BC-JSF in Jdev 10.1.3.3. I have a page on which there are 2 radio buttons which show blank at first. As soon as a user selects a radio button, the valueChangeListener calls up a method in the backing bean that opens a dialog for the user. User enters some text in to the dialog and clicks OK after which the window closes. If the user clicks Cancel on the dialog page, the window is still closed but radio button value is reset to blank through javascript. the problem is that it works only first time. second time it tries to autosubmit but only the constructor of the backing bean is called and not the actual function to open the window. Following is the code snippet that may be helpful.
    Radio Buttons
    <af:selectOneRadio value="#{bindings.SP11WarrantDetailsViewMetallurgistReviewStatus.inputValue}"
    layout="horizontal"
    id="metallurgistRadioBtn"
    autoSubmit="true"
    valueChangeListener="#{UploadDownloadBean.exampleOpenDialog}"
    disabled="#{ !UserInfo.metallurgist || bindings.SP11WarrantDetailsViewMetallurgistReviewStatus !=''}">
    <af:validator binding="#{bindings.SP11WarrantDetailsViewMetallurgistReviewStatus.validator}"/>
    <af:selectItem label="Approved" value="Approved"/>
    <af:selectItem label="Rejected" value="Rejected"/>
    </af:selectOneRadio>
    Function to Open the Window
    public void exampleOpenDialog(ValueChangeEvent valueChangeEvent)
    // Add event code here...
    FacesContext context = FacesContext.getCurrentInstance();
    // Create the dialog UIViewRoot
    ViewHandler viewHandler = context.getApplication().getViewHandler();
    UIViewRoot dialog = viewHandler.createView(context,"/sp11/warrant/MetallurgistNotes.jspx");
    HashMap properties = new HashMap();
    AdfFacesContext afContext = AdfFacesContext.getCurrentInstance();
    afContext.launchDialog(dialog,
    null, // not launched from any component
    null, // no particular parameters
    true, //show in dialog
    properties);
    Javscript for resetting the Radiob button
    function closeWindowOnCancel()
    if(parent.window.opener.document.getElementById("notesValueHolder").value == '' )
    parent.window.opener.document.getElementsByName("metallurgistRadioBtn")[0].checked = false;
    parent.window.opener.document.getElementsByName("metallurgistRadioBtn")[1].checked = false;
    Please suggest what can be the possible cause.
    Regards,
    Neeraj

  • Attach(ed)movie not receiving "onRelease" first time

    Hey folks,
    SO, I have a movie clip that I am attaching at runtime. Each
    time the user clicks a button, a new moveable piece gets attached
    at the mouse position and gets sent a "startDrag". I have an
    "onRelease" defined in a custom class that this movieclip is a part
    of, but the first time I release my mouse after instantiating the
    clip and moving it, it doesn't seem to receive the "onRelease".
    When I click it again, it will stop moving. The "startDrag" is
    defined in the class as well to happen onLoad. Ideas?

    copy and paste the output panel text after inserting the following and running through your test steps.
    var mc:MovieClip=_parent.attachMovie("buttonblanklevel", "butt_levelone", 3, {_x: 217, _y: 5});   
        _parent.butt_levelone._alpha = 50;
    trace(mc);
    _parent.butt_levelone.onRelease = function() {
        trace("r "+_parent);
        _parent.gotoAndStop("BacktoShop");
    //In frame "BacktoShop" on parent:
    trace("backtoshop");
    movieHolder.loadMovie("ToolShopAnim01.swf", "ToolShop");
    butt_levelone.removeMovieClip();

  • Content not appearing after first time

    I could really do with some help on this one.
    I have a screen (State) in my application that displays some
    custom mxml components using a repeater. The first time I come to
    this screen, all the data appears correctly. However if I navigate
    away from this screen to another screen (State), then return to it,
    all that appears is a scroll bar, with no custom components
    appearing.
    I would appreciate if anyone can take a peek at my code below
    to try and identify the problem. Perhaps this is a problem others
    have experienced?
    The relevant code is as follows:
    <mx:State name="ComponentFolderScreen"
    basedOn="QualificationSummaryScreen">
    <mx:RemoveChild
    target="{qualificationSummaryScreenDG}"/>
    <mx:AddChild relativeTo="{vbox1}"
    position="lastChild">
    <mx:Tile autoLayout="true" width="740" height="230"
    id="tile1" borderStyle="none">
    <mx:Repeater id="productsRepeater"
    dataProvider="{this.category1}" >
    <local:ComFolderItem
    mouseOver="CFSMouseOver_Folder(event)"
    click="CFSClick_Folder(event)"
    studentName='{productsRepeater.currentItem.productName + "(" +
    productsRepeater.currentItem.productPrice + ")"}'
    componentStatus='{productsRepeater.currentItem.componentStatus}'
    >
    </local:ComFolderItem>
    </mx:Repeater>
    </mx:Tile>
    </mx:AddChild>
    </mx:State>
    And here is the code that populates the ArrayCollection that
    is the dataprovider
    var ComponentFolderData:ArrayCollection = new
    ArrayCollection();
    ComponentFolderData =
    _dataManager.returnComponentFolderData(componentCode);
    var howManyObjects:uint = ComponentFolderData.length;
    var objectInstance:Object = new Object();
    category1 = new ArrayCollection();
    for (var objectIndex:uint = 0; objectIndex <
    howManyObjects; objectIndex++) {
    objectInstance.productName =
    ComponentFolderData.getItemAt(objectIndex).productName;
    objectInstance.componentStatus =
    ComponentFolderData.getItemAt(objectIndex).componentStatus;
    category1.addItem(objectInstance);

    Hi there
    600 seconds? Seriously? OMG, that's ten minutes!
    Personally, I would never recommend having a slide longer
    than maybe ten
    seconds. I'm not sure how you even manage a timeline that
    long.
    At any rate, whatever floats your boat I suppose. My guess is
    that you have some object (Click Box, Button or Text Entry Box)
    that is sitting on the timeline and pausing things before the
    button you wish to see has a chance to appear.
    Cheers... Rick

  • Airplay sound not mirroring after first time until restart

    Anyone else seeing this issue?
    When we connect either the iMac or the MacBook Pro to our 2nd generation apple tv via airplay the first time, the sound goes to the tv as expected.
    If we try to use airplay a second time, the sound stays on the computer, though the picture shows up on the tv. If we try to change the sound in preferences to the apple tv, the airplay connection is broken. Once we restart the computer, the sound works as expected.
    All of the latest system software updates have been applied.

    That is right - upgrade to Mac as in purchase a Mac which now have Intel processors and the ability to also install and use Windows XP or Vista along with OS X on the same computer.
    I wonder if u have gone thru Apple's OS X license agreement recently?
    I have gone through the Apple website recently but I don't need to. Regardless, the answer remains the same and will not change. If you want to run OS X, you need to purchase a Mac.

  • BlackBerry Z10 and movies not playing after a device wipe.

    Greetings,
    I have a number of movies I purchased and downloaded over the holidays, some which were gifts during the give away, and after I had to wipe and reload my device they are no longer working.
    I used BlackBerry Link to sync all the movies (approximately 30GB) to my PC. I used BlackBerry Link to sync the movies back to my handheld. However after the movies finished synching I got the follow error when I tried to play them:
    "The file can't be opened. Download the original file or its license again and try again".
    I then went to BB world to download the license files again since I obviously had the movies, and on a number of them I got "Failed to get video license".
    Question #1 - If I synced the folders using BB Link, why did it not include everything I need to play the movies again after a device wipe (including the license data)?
    Question #2 - Why do I have to re-download the license data?
    Question #3 - Why is the license file data failing to download again?
    Question #4 - Why did the movies that failed to download the video license then start to re-download the entire movie when I hit the retry button?
    Question #5 - Why are some movies such as "Deck the Halls" (with Sinbad) that I got through the xmas promotion not showing up in BB World so I can try to re-download the license file?
    This who experience of wiping my Z10 and starting over has been a major pain, starting with the slow speed of Link syncing to the fact that I clearly didn't sync over everything I needed to so I could re-sync my movies and make them operational again.

    The movies were all on my SD card. They are also not backed up by Link which is why had them synced to my phone as a poor man's backup.
    So either Link did not backup the necessary licensing information in the main memory of my phone, or Link did not synchronize the necessary licensing information off my SD card. Either way I am stuck with 3 movies that I cannot play, because I can no longer find them in the BlackBerry World store to re-dowbload whatever licensing information is needed.
    I even just tried a media restore from Link because it was 138 MB in size (and in don't normally store anything on my phone's main storage), but alas no licensing information was restored.

  • Sound on slides does not play after first slide.

    I created a presentation with 5 slides.  I put the same sound file on each of the 5 slides.  The slides are setup to play automatically.
    If I play the presentation in Keynote, it works perfectly.
    I exported to html and put on my web site.  If I view the presentation in Safari the slides load one after the other correctly, but the sound only works on the 1st slide.  On slides 2 thru 5, the sound only plays for about 1 second and then quits.
    If I view the presentation using Firefox, nothing works, slides do do load correctly, and no sound at all.
    I exported to Quicktime and played it, and the quality is so bad I can barely see what is going on.
    I installed a new Keynote app from app store, and same problems.
    Any ideas?
    Thanks,
    Lewis Poteet

    also regarding pentiun 4's --
    see link at :
    http://technet.oracle.com:89/ubb/Forum42/HTML/000380.html

  • After installing Maverick, my downloaded movies will not play in Quick Time.  It gives me the following error "You can't open the application "QuickTime Player.app" because it may be damaged or incomplete."  What can I do?

    After installing Maverick, my downloaded movies will not play in Quick Time.  I receive the following error message:
    You can’t open the application “QuickTime Player.app” because it may be damaged or incomplete.  So I tried to unistall QT and I get an error that says, You can not delete this application as it is a requirement for the OSX.
    Well I did find a way to delete it, by going into the various components and one by one deleting it.  Now I reinstall it and  the message is that this Quick Time is for an earlier version before Maverick 7.  SMH....Now what.?

    Hello, terrygav. 
    I would recommend processing a reinstall of Mavericks.
    OS X Mavericks: Reinstall OS X
    http://support.apple.com/kb/PH13871
    Make sure to backup all of your data prior to reinstalling OS X 10.9.
    Back up your Mac
    http://support.apple.com/kb/PH11371
    Cheers,
    Jason H.

  • Rented movie does not play after download if not connected to the internet

    rented movie does not play after download if not connected to the internet

    Hello b noir.
    Thank you for your interest in solving my problem.
    What I did I opened iTune. I read the information about what does my computener need to play back a rented movie. My computer is okay to play back rental movies. So I went to the iTunes store, I searched for the movie I want to watch, i singned in into my Mac account and I bought the movie. The movie started to download to my computer, it took some time because I bought a HD version, but it never stop and after a couple of hours or little less the movie was in the Rented folder of my iTunes and also I checked to be sure that was in the movie folder. So, next day I open iTunes and click on the movie, it opens but I wait for five minuetes and never started to play back, so I tried several time and I looked for info in different internet forums but I couldn't find anything that help. So I posted the problem in this forum and also I called Apple. Apple contacted me and they let me to download the movie again. So I did it and now I will watch the movie later. Not sure if the movie will play back normally or if I am going to have the same problem. I'll keep you posted.
    Apple representative did not know why this happened.
    Thanks.

  • Elements 13 Organizer will not open on first time after downloading

    @ ! ! !Why will Elements 13 not open after first downloading?

    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5.5, 5 | 1
    Contribute:  CS5 | CS4, CS3 | 3,2
    FrameMaker:  12, 11, 10, 9, 8, 7.2
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • HT1222 Why does my IOS 7 update after downloading say" not available at this time try again later"  any ideas

    Why does my IOS7 update after downloading say " not available at this time try again later" any ideas?

    With everyone and their iDogs trying to update at the same time, things are gonna be a bit bumpy off the bat trying to update and/or activate.
    All anyone can really recommend is to keep trying or wait until a bit later, after the hubub has died down.

  • TS1389 I purchased a song on iTunes that is now appearing twice on my library; the first download only plays 37 seconds of the song, the second download will not play & prompts me to authorize the computer to allow it to play.  Suggestions?

    I purchased a song on iTunes that is now appearing twice on my library; the first download only plays 37 seconds of the song, the second download will not play & prompts me to authorize the computer to allow it to play.  Suggestions?

    Im having a similar promblem! Only its doesnt work on my Itunes library and the song ends at 49 seconds. Have you fixed your problem yet?
    p.s. my discussion is on the following page but no one has responded yet as I only just posted it.
    https://discussions.apple.com/thread/4097402

  • Sound plays on first time when called by VI

    Hi, I am trying to create a VI that creates noise bursts of specific durations in sequences. My problem is that the sound generation VI only plays the sound the first time it is called. I have tried putting the VI in a for loop to see if I can get it to play multiple times, but regardless of what I do it only plays the generated sound once.
    Solved!
    Go to Solution.
    Attachments:
    Doc1.doc ‏116 KB

    I figured out the problem. Thanks. The problem was with the timer not resetting in the loop (fixed it with a shift register) on second or further calls. Thus the loop was skipped as the timer was greater than the specified value after first time the loop was run.

  • Clips on time line are not playing at right time.

    I dragged my movie clips and photos onto my timeline, but when I play the movie back the clips and photos are not playing at the time they are placed on the timeline. What do I do? Thanks.

    Hi
    TimeLine in iMovie - any version - doesn't behave as in other video editors as FCE/P or Premiere.
    Here each new video-clip or photo snapps to the one to it's left. One can't fix them in Time else putting in "Dummy" clips in between.
    If they still don't playback in a continous way - there can be several problems
    • free space on Start-up hard disk low - I never go under 25Gb free space
    (free space on other second/external hard disks - doesn't matter)
    • iMovie pref file might have been corrupted - close iMovie, trash it and re-start iMovie
    • Use of strange video and photo and audio file format might also do this - iMovie HD6 wants
    video - streamingDV as from miniDV tape Camera via FireWire
    photos - .jpg and .png
    audio - .aiff 48kHz 16-bit (or from Audio-CD) - NO .mp3 or direct from iTunes
    Yours speculating Bengt W

  • Tried to reinstall PS CS6 from download, will not load after download and install, need assistance

    I tried to reinstall PS CS6 from download, will not load after download and install, need assistance.
    Thank you.

    Thanks for the suggestion - but I eventually tried again and was able to contact via "chat" to someone qualified to help. The problem was that in my existing "bridge" - preference was (I think by default) - checked to startup in background on Login. I did not realize this - because I don't think I set it that way in the first place (maybe I did a few years ago) - and I could not see anything in task manager to suggest that bridge was running an application or any process - but when I learned this - I was successful in installing PS CS6.
    Yes, I'm still not on solid ground re: whether or not I want to change from "owning" the tool or renting it -- what concerns me is that is sounds like regardless of users wishes, Adobe is headed in this direction and will eventually make it financially more feasible to go that route. At the moment I think they are "asking" for everyone to get on their bandwagon, but who knows. They have a powerful set of tools, that they continue to support and advance - and along with those development and support costs, they also would like to make a profit - so I understand if their past marketing model is no longer sufficient.
    Thanks again.
    John

Maybe you are looking for

  • Skype account balance not showing on android

    My account balance shows a few dollars when view online but the balance shown in my profile on my device shows zero???

  • 7.0.9

    How do I install adobe reader 7.0.9?

  • DePixelating a picture Or Removing Lines From Fabric Tex

    I have a image of a BAG and the photo was shot in HD 3.4mb in size i have to print the photo in catalouge and in small size it shows lines (curved) and when the photo is zoomed lines remove as much as i zoom at 35% zoom in picture viewer and 45% in p

  • Auto Download "Stream" data

    Hey all, The issue I'm facing is part iTunes and part iCloud. I got my iPhone 4S a few days after it came out and restored it as an iCloud backup from my old 3GS. I was extatic that all my apps, contacts, calendars, etc. came down exactly how I had i

  • Whether this function module K_DOCUMENT_UPDATE can send IDOC to Non SAP Sys

    Hi, I know function Module K_DOCUMENT_UPDATE can sent IDOC to R/3 systems. 1.Whether this function module can sent the IDOC to Non SAP System?. 2.How to make sure, that the function module can sent IDOC to Non SAP System?. Please advise.Thanks. Regar