Everything is extra large and off the screen

I was in a iPhone app at 2x, closed the app and everything was so large the iPad was unusable. I rebooted it and the screen came up the same. Nothing I tried would restore the screen. Brought it to an Apple store and they never seen that and it must be a undocumented bug. My iPad is unusable and was told to bring it back Monday for a replacement. What is the fix?

Since you didn't tell us what all you tried, I have to ask - did you try to "pinch" the screen back to size? One time I managed to blow up my screen like that and I was able to get it back by pinching the screen in. Hopefully you know what I am talking about here - the touch movements to increase and decrease items on the screen. It may be worth a try.

Similar Messages

  • Finder window resizing lower left corner is off the screen - Help!

    Moving from a 17" PowerBook to the 13" MBA, my Finder windows are too big. If I could only change my default window size from the 17" to the 13" I could Command-A Command-C Command-V the contents of my larger old windows to the smaller new screen...or a global resize of the windows would be even better. Any suggestions?

    That won't work when it is too big and off the screen.
    You have to click OPTION and the GREEN button to be able to resize it when it's off the screen.

  • Sliding images off the screen with javafx

    I am writing my first javafx app and I am trying to get images to slide on and off the screen. I have accomplished this to some degree using the below code.
    the problem is that the images slide off just fine but when they come back on they stop before they get to their original locations.
    Any chance someone can tel me what I'm doing wrong?
    function slideOut(index:Integer, len:Integer):Void{
        def timeline = Timeline {
                keyFrames: [
                     for(itr in [0..len]){
                         if(itr != index){
                              KeyFrame {
                                  time: 0s, values: [
                                            page.content[itr].translateX => page.content[itr].translateX tween Interpolator.EASEOUT
                              KeyFrame {
                                  time: 1s, values: [
                                            page.content[itr].translateX => page.content[itr].translateX + 300 tween Interpolator.EASEOUT
                         }else{
                             KeyFrame {
                                  time: 0s, values: [
                                            page.content[itr].translateX => page.content[itr].translateX tween Interpolator.EASEOUT
                              KeyFrame {
                                  time: 1s, values: [
                                       page.content[itr].translateX => page.content[itr].translateX tween Interpolator.EASEOUT
            timeline.play();
    function slideIn(index:Integer, len:Integer):Void{
        def timeline = Timeline {
                keyFrames: [
                     for(itr in [0..len]){
                         if(itr != index){
                              KeyFrame {
                                  time: 0s, values: [
                                            page.content[itr].translateX => page.content[itr].translateX tween Interpolator.EASEIN
                              KeyFrame {
                                  time: 1s, values: [
                                            page.content[itr].translateX => page.content[itr].translateX - 300 tween Interpolator.EASEIN
                         }else{
                             KeyFrame {
                                  time: 0s, values: [
                                            page.content[itr].translateX => page.content[itr].translateX tween Interpolator.EASEIN
                              KeyFrame {
                                  time: 1s, values: [
                                       page.content[itr].translateX => page.content[itr].translateX tween Interpolator.EASEIN
            timeline.play();
    def page:Group = Group{
        content: [
             for(i in [0..ImageLoader.length.intValue()]){
                   ImageView {
                       var bool = true;
                       translateX: 210 * (i+1)
                       translateY: 175 //* (i+1)
                       scaleX: 1.0
                       scaleY: 1.0
                       preserveRatio: true
                       smooth: true
                       image: Image {
                           width: 75
                           height: 75
                           url: "file:/{image_folder}/{imgArray}"
                   onMouseClicked: function( e: MouseEvent ): Void {
                   if(bool){
                   bool = false;
                   slideOut(i,ImageLoader.length.intValue());
                   zoomIn(page.content[i]);
                   }else{
                   bool = true;
                   zoomOut(page.content[i]);
                   slideIn(i,ImageLoader.length.intValue());

    Actually, I am not even sure why it worked... Using the same variable on both sides of the => is probably a bad idea.
    I could get some result with the following code:
    function slideOut(index:Integer, len:Integer):Void{
      def timeline = Timeline {
          keyFrames: [
            for(itr in [0..len]){
              if(itr != index){
                KeyFrame {
                  time: 3s, values: [
                      page.content[itr].translateX => getOrig(itr) + page.boundsInLocal.width tween Interpolator.EASEIN
              } else { null; }
        timeline.play();
    function slideIn(index:Integer, len:Integer):Void{
      def timeline = Timeline {
          keyFrames: [
            for(itr in [0..len]){
              if(itr != index){
                KeyFrame {
                  time: 3s, values: [
                      page.content[itr].translateX => getOrig(itr) tween Interpolator.EASEOUT
              } else { null; }
        timeline.play();
    def image_folder = "D:/Documents/Images/Misc";
    def imgArray = [ "beetle1.gif", "beetle2.gif", "beetle3.gif", "butterfly.gif", "LeftAnt.gif" ];
    def IMG_NB = sizeof imgArray;
    function getOrig(index: Integer) { return 210 * (index + 1); }
    def page:Group = Group{
      content: [
        for(i in [0..IMG_NB]){
          ImageView {
            var bool = true;
            translateX: getOrig(i)
            translateY: 175 //* (i+1)
            scaleX: 1.0
            scaleY: 1.0
            preserveRatio: true
            smooth: true
            image: Image {
              width: 75
              height: 75
              url: "file:/{image_folder}/{imgArray}"
    onMouseClicked: function( e: MouseEvent ): Void {
    if(bool){
    bool = false;
    slideOut(i,IMG_NB);
    //~ zoomIn(page.content[i]);
    }else{
    bool = true;
    //~ zoomOut(page.content[i]);
    slideIn(i,IMG_NB);
    Commented out the zoomIn/zomOut you don't provide, and replaced some unknown variables by my own...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Downloaded iOS 7.0.2 and one of my apps (ultimate history quiz) changed size. It is so large I am not able to play the game because most of the print is off the screen on my iPad. Help!!!!

    Had an app (Ultimate History Quiz) that I played frequently. It came up on the screen in the smaller iPhone version. Then I downloaded iOS 7.0.2, and now the app is so big that the printing goes off the screen, making it impossible to play. I checked the app sore to buy another one, and it is no longer available on there.  WHAT CAN I DO TO RESTORE THE GAME TO ITS ORIGINAL SIZE???????

    Wait for apple to tweak things....or talk to the app developer. they haven't updated since the update and unless APple happens to fix whatever the issue is, then the burden is on history to make their app work with the iOS

  • I was holding my i phone in my hand for a while and suddenly the screen is very large...what do i do??? how do i reboot???

    I was holding my iphone in my hand for a while and suddenly the screen is gi-normous...what do I do??? how do I reboot???

    to reboot you hold the power on/off button and the large home button together until you see the little apple logo.
    However if you take three fingers together you can tap the screen back to its former size.
    See article below.
    My iPhone Icons Are Large. What's Happening?
    Good Luck

  • I created thirty pages using ipages and my web manager is having difficulty placing them on my website, some change color, some slide off the screen.  Is there a place for problem solving for ipages and website?

    Hi, I thoroughly enjoy the ipage program and prefer it to the similar one offered by Word.  But my web manager is having countless difficulties.  I converted everything to PDF's for him but several of the ipages are loading with a different backround color.  He says he has to meta tag each page since this cannot happen automatically.  On my Mac, the pages are loading after the navigation bar is selected, and it takes about three to four seconds.  On my iphone, however, each page takes at least eight seconds to load and then it slides right off the screen before it can be read.  I really want to continue using ipages to update my website but I am a rookie and do not understand why each ipage cannot simply open when someone goes to my website.  It would be great to do away with the loading of each page and I would like to also minimize any of my margins.  Thanks for any help on this strange matter.  Mary

    Converting pages to pdf is not the usual way make a website.  You may want to try some other app where you can directly create the html which is the customary format for the web.

  • The text goes off the screen and I can't move the screen to see what's not showing.

    The text does not fit on my screen. It goes off the side and there's no bar at the bottom to move it over. I have been using Mozilla Firefox for years but last week I downloaded the new toolbar and ever since then, I've had problems like this. I tried to fix it through "zoom" but that did not work. It only made the print smaller but it still went off the screen. Anything to the far right I could not see. To get it back to normal, I had to uninstall Firefox completely off my computer last week. Everything was fine then, by using Internet Explorer. I tried again today and downloaded Firefox but the same thing happened. Therefore, I'm going to uninstall Firefox...again and use Internet Explorer. Any suggestions for this problem? Once again, the "Zoom" solution DOES NOT WORK. Help!

    Hold keyboard key down for a second or two and select undock.
    http://i1224.photobucket.com/albums/ee374/Diavonex/a47dcbea54f27d03e3b7f4d411724 6c3_zps0388ccd4.jpg

  • I bought an iPhone 5S in the USA, however he warmed up and took off the screen, I live in Brazil and they do not give assistance to my device, but I can not go back to the U.S. just to change the iphone, what should I do to solve my problem ?

    I bought an iPhone 5S in the USA, however he warmed up and took off the screen, I live in Brazil and they do not give assistance to my device, but I can not go back to the U.S. just to change the iphone, what should I do to solve my problem ?

    I live in China as well and my iPhone5s is the model A1530 I bougth outside China. I have the same problem as Nikatnight with the iPhone while the iPad Air (wifi only) is working like a charm. It must be definitely something related to the carrier since I was abroad few days ago and everything worked well.
    If you pay attention at the source of your maps, you'll discover they are provided by AutoNavi instead of TomTom and make them appear in chinese with their own border interpretation. Queries are only acceppted in Chinese (p.e. if I type in english "Los Angeles International Airport"  it replies it cannot locate it)
    I suppose everything will be fine when you'll be out of censorship....
    Perhaps iOS  Apple Maps are absolutely useless for expatriate in China.
    Use Google Maps instead
    BTW, I'm surprised how much Apple might prostrate towards hard power Governments.... No matter what, money are always on top!

  • Imac display problem, the resolution seems to be unusual, top bar and all folders on the desktop background is off the screen

    Need help with 21" imac display problem. The resolution seems to be unsual, everything on the desktop background goes off the screen. The resolution is set at 1920 x 1080

    Quit the game and restart the iPad.
    To quit the game - Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Restart the iPad. 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.
    If that doesn't work try this.
    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 am new to iphones and went to Itunes and it said my new iphone needed a software update. Now the apps that I put on wont work and when pressed just flash on then off the screen. I paid £20 for one of them so any help would be appreciated.

    I have a new iphone and went into Itunes and it said my new iphone needed a software update. I let it do this and now the apps that I put on won't work and when pressed just flash on then off the screen. I paid £20 for one of them so any help would be appreciated.

    Memory Map:  http://www.memory-map.co.uk/iphone/
    0870:  http://www.simonmaddox.com/
    Viber:  http://support.viber.com/home
    VoucherCloud: http://questions.vouchercloud.com/

  • Presentation starts 5" from the left side of screen and pushes intellegence off the screen to the right.

    The top of my screen is normal: the tool bar starts "File, Edit...
    The body of the screen while running Firefox-and during typing of this message- is full of lite. The actual data: starting from the top of this page- "Firefox Help... Ask a new..." etc. starts 5 1/4 inches from the left of the page.
    It's as if Firefox were presenting a wider page with the presentation moved to the right. This pushes the last, normal, 5" of the presentation off the screen.
    The rite end of the bar which starts out: http://www.mozilla.com/en-US/firefox/fx/
    is off the page, so the facilities at the rite end are lost.
    Any presentation, including Amazon.com and Youtube.com are similarly pushed off the rite side of the screen by 5".
    I have no access to the rite-most 5" of any internet presentation.
    The sliders that move the presentation up and down and left/ rite are off the screen.
    I have shrunk the display down so small, i can barely see the numbers: Control panel\ display \ settings \ 1920 by 1200. This gives the ILLUSION of centering the presentation, but still no sliders. At this setting, i can see the full width of Amazon. Youtube appears centered, with 4 1/4" on both left and rite, but no edge sliders.
    I dropped the 'setting' to 1440 x 900.
    Lost about 3" off the rite side of Amazon; barely on the rite edge of Youtube.
    None of my local programming has a problem: Excel, pictures, videos, Word, even Internet Explorer goes full page and centered.
    I un-installed Firefox and downloaded it fresh. It did NOT ask me to reboot my puter, so i didn't .
    I can supply pictures (screen shots) of the phenomenon on request.

    - Open Firefox -> got to Help Menu -> select "Restart with Add-ons Disabled"
    Firefox will close then it will open up with just basic Firefox. You can enable the Add-ons later. Check if its working.

  • Hi i am have had a lot of trouble emptying my trash. when i go to put something in there it asks from my password and the item goes off the screen, but this does not clear any space on the hard drive.

    Hi i am have had a lot of trouble emptying my trash. when i go to put something in there it asks from my password and the item goes off the screen, but this does not clear any space on the hard drive.

    1. Triple-click the line below to select it:
    ~/.Trash
    2. Right-click or control-click the highlighted line and select
    Services ▹ Show Info
    from the contextual menu. An Info dialog should open.
    3. The dialog should show "You can read and write" in the Sharing & Permissions section. If that's not what it shows, click the padlock icon in the lower right corner of the window and enter your password when prompted. Use the plus- and minus-sign buttons to give yourself Read & Write access and "everyone" No Access. Delete any other entries in the access list.
    4. In the General section, uncheck the box marked Locked if it's checked.
    5. From the action menu (gear icon) at the bottom of the dialog, select Apply to enclosed items and confirm.
    6. Close the Info window and test.

  • I was using my MacBook Pro Mid-2010 and then the screen went blank, I did a hard restart and went to restart again and it won't startup.  The white light comes on and then the computer kinda "clicks" off!

    I was using my MacBook Pro Mid-2010 and then the screen went blank, I did a hard restart and went to restart again and it won't startup.  The white light comes on and then the computer kinda "clicks" off!

    Execute the procedures in this support article:
    http://support.apple.com/kb/TS1367?viewlocale=en_US
    Ciao.

  • My iPad is stuck with a small blue screen saying iCloud Backup, this iPad hasn't been backed up in 4 weeks.Backups blah blah- Click OK. I can't get it off the screen and I can't use the iPad because of it. Can anyone out there help?

    my iPad is stuck with a small blue screen saying iCloud Backup, this iPad hasn't been backed up in 4 weeks.Backups blah blah… Click OK. I can't get it off the screen and I can't use the iPad because of it. Can anyone out there help?

    Have you tried restarting or resetting your iPad?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after the iPad shuts down, then press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds).

  • I dropped my ipod touch in the street and there is a large crack in the screen can i take it to the apple store and pay to have it fixed there or do i have to send it out?

    i dropped my ipod touch in the street and there is a large crack in the screen can i take it to the apple store and pay to have it fixed there or do i have to send it out?

    They can fix it at the Apple Store. I wish you could get it fixed for free, but the warranty doesn't cover accidents like this . It sounds like you understand this, I just want to make sure you know.

Maybe you are looking for

  • SIMPLE FIX TO KEEP MOISTURE OUT OF THE REMOTE

    _I am a new poster, so I am sorry if this is not in the right section on the forum._ Two days ago I noticed the problem with the remote while I was skateboarding. After moisture hits the controls they cease to work properly, so I tried to find a way

  • 2 Node RAC standby database

    Hi, I am planning to create a 2-node RAC physical standby database which uses ASM from 2-node RAC production database. I am familiar with RMAN duplicate (11g) network based backup to create the physical standby database, but not sure how this will wo

  • How to get day of the date in Arabic

    Hi All, Can any one please let me know how we can get the DAY of the date in arabic . for english i know that if we write the below command we will get the day if the date . i need the similar kind of thing for arabic select to_char(sysdate,'DAY') fr

  • Settings required for Forecast Consumption with Sales Order

    Hello Folks, I have one scenario: Forecast for Finsihed Product  - "PNG_Fert" in Location "1000". I have forecast quantity of 500, now our requirement is - when SNP heuristic run will take place (without any sales order quantity) then there should no

  • Simple and fast Preloader ?

    I know there are preloaders on the web, and tutorials for them but most of them are pretty complex. Does someone know a website or can someone tell me how I can make a very simple preloader with minimal work. (I'm a beginner with flash)