HT1657 Help. Movie downloaded on ipad2 but cannot access. No icon. No nothing. Had okayed 2 movie downloads-could that be a problem. Can not access either. A few months ago had seen a movie with no problem.

Help. Movie downloaded on ipad2 but cannot access. No icon. No nothing. Had okayed 2 movie downloads-could that be a problem? Can not access either. A few months ago had seen a movie with no problem?

My problem to as to how to access downloaded movies not solved.

Similar Messages

  • I have downloaded an app but cannot see the icon

    I have downloaded an app but cannot see the icon. I have tried to download again from app store but it says it is installed

    Do you have restrictions enabled on the iPad? Settings>General>Restrictions? Maybe that is why you cannot see it. Have you swiped from screen to screen to look for it?
    You can search for the app to confirm that it is on the iPad, but that will not show you the location of the icon and if the app store says it is installed - then it is installed. But this would let you access the app. Swipe from the right in your first home screen and the search feature appears. Type in the name of the app to find it. you can tap on the icon to launch the app.
    Try restarting the iPad as well and maybe the icon will show up. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    This may even help if all else fails. Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • I have two apple ID's but cannot remember the security question answers and the email address is no longer active - how can I access this account

    I have two apple ID's but cannot remember the security question answers and the email address is no longer active - how can I access this account as it seems to be the one my icloud space is attached to.  I haven't backed up my ipad or photos for a while. 

    Security questions:
    https://discussions.apple.com/docs/DOC-4551
    http://support.apple.com/kb/HT5312
    If you don’t know your security questions, phone Apple (using the number listed here:  http://support.apple.com/kb/HE57  ) and ask for the Account Security Team.
    About 2-step verification of your Apple ID:
    http://support.apple.com/kb/ht5570
    This is also useful:
    http://www.macworld.co.uk/ipad-iphone/news/?newsid=3463233&olo=email

  • A few months ago, my G5 started up with the address book and mail opened at startup. They are not in startup items, and I cannot get this to stop. Any suggestions?

    A few months ago, my power mac G5 began starting up with the address book and mail already open on the desk top.
    Neither of these is in my startup items, so I am at a loss as to stop this behavior.
    Any suggestions?

    Are they in Login items under System Preferences/Users/Login Items?
    In the Dock, right click the Address Book and Mail icons, select Options, and make sure "Open at Login" is not selected.

  • Reflection problem: can not access a member of class java.lang.IllegalAcces

    package org.struts.ets.utility;
    import java.lang.reflect.Constructor;
    import java.lang.reflect.Field;
    import java.lang.reflect.InvocationTargetException;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import org.struts.bean.FieldTrouble;
    import org.struts.bean.GenericDAOBean;
    public class DynamicObjectCreation
         public static void main(String... args)
              FieldTrouble ft = new FieldTrouble();
              try
                   Class<?> c = ft.getClass();
                   //Class<?> c = FieldTrouble.class;
                   /*Class<?> c = null;
                   try
                        c = Class.forName("org.struts.bean.FieldTrouble");
                   } catch (ClassNotFoundException e)
                        e.printStackTrace();
                   Field f = c.getDeclaredField("var1");
                   //f.setInt(ft, 42); // IllegalArgumentException
                   f.set(ft, new String("A"));
                   System.out.println(ft.getVar1());
                   // production code should handle these exceptions more gracefully
              } catch (NoSuchFieldException x)
                   x.printStackTrace();
              } catch (IllegalAccessException x)
                   x.printStackTrace();
    }// If I put FieldTrouble.java in any other package than the current package I am running this code from. I get the following error:
    java.lang.IllegalAccessException: Class org.struts.ets.utility.DynamicObjectCreation can not access a member of class org.struts.bean.FieldTrouble with modifiers ""
         at sun.reflect.Reflection.ensureMemberAccess(Unknown Source)
         at java.lang.reflect.Field.doSecurityCheck(Unknown Source)
         at java.lang.reflect.Field.getFieldAccessor(Unknown Source)
         at java.lang.reflect.Field.set(Unknown Source)
         at org.struts.ets.utility.DynamicObjectCreation.main(DynamicObjectCreation.java:35)
    I tried all possible ways of creating class as:
    Class<?> c = ft.getClass(); OR
    Class<?> c = FieldTrouble.class; OR
                   /*Class<?> c = null;
                   try
                        c = Class.forName("org.struts.bean.FieldTrouble");
                   } catch (ClassNotFoundException e)
                        e.printStackTrace();
    Edited by: ..-__Kris__-.. on Feb 21, 2008 10:26 AM
    Edited by: ..-__Kris__-.. on Feb 21, 2008 10:26 AM

    Any hidden performance or memory issue here?
    Let us consider an object:
    public class SomeObject
         private String fieldA;
         private String fieldB;
         private String fieldC;
         private String fieldD;
         private String fieldE;
         //... say 50 declared fields....
         public SomeObject()
         public SomeObject(String fieldA, String fieldB)
              this.fieldA = fieldA;
              this.fieldB = fieldB;
    // getters and setters..     
    }When I create an object using the constructor with only two fields initialized such as the following code above, and look at what is happening to other fields as shown in the code below, I see that they are also AVAILABLE, now this is important, but they are set to null. What I wanted to know was, if I created an object with many fields, as many as 50 (getDeclaredFields = 50), and used a constructor with only two input fields to initialize an object, I still have 48 other fields available but set as NULL's. When I create more than 100,000 of these objects in a list and send to a .jsp page, I am unable to understand if this has more memory load than when you use a list of another object which has actually has only two declared fields in it. Each of this new object will have only two declared fields, when I say getDeclaredFields() it would return 2.
    This is where I am unable to figure out if this has anything to do with performance or memory, rather, what is the difference between the many possible ways you can initialize an object when there are too many fields which you probably won't use? Either create a new constructor with only two input arguments OR a generic constructor with all fields as input arguments but all those fields which you won't use assigned NULL's OR create another new object with only two declared fields
    SomeObject someObj = new SomeObject("abcd","cdef");
              Field[] fields = someObj.getClass().getDeclaredFields();
              System.out.println("Number of available fields: " + fields.length);
              for(int i = 0 ; i < fields.length ; i++)
                   try
                        fields.setAccessible(true);
                        System.out.println("Field " + i + ", with value: " + fields[i].get(someObj));
                        fields[i].get(someObj);
                   } catch (IllegalArgumentException e)
                        e.printStackTrace();
                   } catch (IllegalAccessException e)
                        e.printStackTrace();
              }Edited by: ..-__Kris__-.. on Mar 23, 2008 5:04 PM
    Edited by: ..-__Kris__-.. on Mar 23, 2008 5:05 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • When trying to download itunes, I get a dialog box that says my computer can not access an itunes.msi file what o I do to fix this?

    Itunes can not locate an itunes.msi file

    MSI problems can ususally be fixed with the Microsoft Installer Cleanup utility.
    Unfortunately the Microsoft Installer Cleanup utility has been withdrawn by Microsoft because of compatibility issues with Microsoft Office so you will need to find a copy elsewhere – the installer is msicuu2.exe. You need version 3.
    Google  msicuu2.exe download
    mydigitallife in the above search has a copy of version 3
    Check for malware before installing it.
    After installing, To run the program  – All Programs>>Windows Install
    If you get  permission denied error, Try Run as Administrator – an option if you right click on the program.
    Use the cleanup utility to remove any insatnce you find of iTunes.

  • HT3964 My Mac OX 10.9.2 is unable to read any disk since I updated the new operating system on it a few months ago. How may I resolve this problem?

    My Mac OS X 10.9.2 is unable to read any disc since I updated the operating system to Marverick a few months back. How can i resolve this problem because I need to retrieve very important information on my discs. Help! Thank you... paul

    Paul,
    Your problem has nothign to do with your installation of Mavericks. I assume you are referring to your SuperDrive not being able to read any discs, is that correct? If so then please advise what troubleshooting steps you have taken?

  • My 5s can not open the screen and use it while charging. Anyone with same problem?

    My 5s cannot open screen and use it when charger is connected. Anyone knows why?

    Do you use the original charger?
    My friend had the same problem with fake chinese charger.
    He changed a charger and everything is fine now.
    Maybe your charger just broken and needed to replace.

  • Hello i lost my ipod touch 5g and I can not find I lost 8 months ago and i try to find whith  find my iphone I need help please

    help

    The battery would be dead by now
    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it unless you had iOS 7 on the device. With iOS 7, one has to enter the Apple ID and password to restore the device.
    - Apple will do nothing without a court order                                                        
    Reporting a lost or stolen Apple product                                               
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • I suddenly can not open pdf files. I have had Adobe Reader Xl and just ran into this problem

    I have had adobe reader xl for some time and suddenly can not open a pdf file. I received an email yesterday with a pdf attachment which I can not open. What could be my problem?

    Hi Pat, My operating system is Windows 7, Home Premium Service Pack 1. My email client (email Provider is Cox Communications - Cox.net).
    Can not in my post means I tried to open a pdf attachment to a email. I received  nothing happens. I do not get a blank screen or any messages. Nothing Nothing happens at all. I can click several times and get no response.
    I did discover that by clicking on the Adobe Icon on my deskt topi get an Adobe box containing  "Do you want to allow changes to your computer. I click Yes and get to my computer where I can find the above mentoned attachment which I think I had previously saved. I then get the attachment whick I can print. This may be printing from my hard drive - I am not sure. I think I could go through this procedure every time I want to open a atachment but it seems a long way around.
    Any help you can give me would be appreciated. I have thought about removing Adobe and reinstalling. Maybe there is a corruption to my Adobe file.
    Jim

  • Can not access calendar, do not remember password, do not have access to cell phone for verify code, please help!

    I had created a calendar for my boss. I can not access the account or get it on his blackberry. It said the password was changed 12 months ago, if so I do not remember the password and I do not have access to his cell phone to receive the verify code. Please help!

    Just to let you know that you are Not alone. This Problem happens with The various new models of RIM. Unfortunatly untill now no Guy from BB sems to recognize The Probleme. I hope some day they will react other than with an aswer telling US to recreate Or recover pur Id account.

  • I have CS2. I shot RAW files with my Nikon D90 and now cannot open them in PS.  I heard there was a plug-in to download for this, but cannot find it. Help?

    I have CS2. I shot RAW files with my Nikon D90 and now cannot open them in PS.  I heard there was a plug-in to download for this, but cannot find it. Help?

    You would need at least CS3 with ACR 4.6 to natively edit NEFs from a D90 in PS:
    http://helpx.adobe.com/creative-suite/kb/camera-raw-plug-supported-cameras.html
    It might also work to use the DNG Converter 4.6 or newer to convert the NEF files to DNGs and then those might open in your older CS2 ACR, but I’m not sure, since it’s a 9 year old program I haven’t used in years.
    The DNG Converter can be found, here:
    http://www.adobe.com/downloads/updates.html

  • Just bought the new i phone 4s, set up my apple id, verified with email. I can sign into it on the computer no problem but cannot get to it through iphone. Unable to download apps or music. let me know if anybody has any solutions, thanks

    Just bought the new i phone 4s, set up my apple id, verified with email. I can sign into it on the computer no problem but cannot get to it through iphone. Unable to download apps or music. let me know if anybody has any solutions, thanks

    If you have an old ID in Settings>iCloud as a result of updating to iOS 7, to change it you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iPhone, then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https//appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, tap Edit, change it back to your old email address and save the change (you should need to verify the old account).  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https//appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • I rented a movie on my iPad but cannot move it to my computer to watch on tv via Apple tv. How do I transfer the rented movie to my computer?

    I rented a movie on my iPad but cannot move it to my computer to watch on tv via Apple tv. How do I transfer the rented movie to my computer?

    I just rented a movie from my iPad2 and tried to play it through my ATV2 with AirPlay and same problem.... This is absurd guys. Apple I know there are copyright hoops to jump through but come on!! The whole pitch behind AirPlay and AppleTV was to make it easy to watch my purchases on my TV no matter what device they were on. Now I've got to hold my iPad in front of my face to watch a movie for nearly 3 hours!! And when I go to the support site I have no option other than to send an email to billing, screw this. I've not bought a DVD since I purchased my ATV2 over a year ago but if you guys are gonna pull this crap then what incentive do I have to continue the use of something that may or may not work the way it was advertised.
    By the way, this is the first time I've had this problem because I normally rent straight off the ATV or my computer, which by the way I was considering replacing my PC with an iPad but looks like you guys aren't ready for me to make that kind of a switch.
    Don't tell us that a product will do XY and Z then put limits on Y sending to Z.
    FIX THIS!!!

  • TS1277 I purchased Brave through Walmart with a digital copy.  I downloaded the copy but cannot transfer it to mobile devices.  It says the computer is not authorized to do it?

    I purchased Brave through Walmart with a digital copy.  I downloaded the copy but cannot transfer it to mobile devices.  It says the computer is not authorized to do it?

    Did you check Walmart's terms for video/movie downloads? Do they allow transfers/copying of a movie to another device?

Maybe you are looking for

  • Report Level issue

    Hi, can u pls help me for the issue which i am facing now Report level Selection screen Date Date1 Date2 output total sales1 total sales in LOC total sales(before Date1) here how we can calc total sales Before Date1 against selection screen thanks, c

  • Isssue in publishingWSDL for @WebServiceProvider

    I wrote an simple JAX-WS webservice for @WebServiceProvider. After deploying it as war while accessing the WSDL i am facing below error. :/GPSProxy spec-version:2.5]] Servlet failed with Exception java.lang.NullPointerException at weblogic.wsee.jaxws

  • RESTful service with EJB 3.1 endpoint cannot be found (404)

    Hi, I have a Resource configured as a EJB 3.1 Stateless Bean. I also have an overridden Application class to customize the context root. However, the client just cannot seem to find the Resource. What am I doing wrong? The Resource is packaged and de

  • How to open https in WebView ?

    How to open https in WebView ? for example : https://mail.google.com/

  • I cannot watch You tube. I get a black box where the video should play with no bar underneath to

    Please I don't know how to deal with this as I'm not at all technically minded. I have Windows Vista Business 32 bit operating system. I cannot watch Youtube since earlyier today, I just get the full page but no bar underneath the video screen which