Can i display 4 apps on the screen at once

Hi I would like to display 4 Tv/amp apps on the iPad screen at once, which will make it easier to control my home entertainment gear any help if i can do this

Sorry, can't be done. One app at a time is all you can use.

Similar Messages

  • HT2731 How can I update apps when the screen just goes blank?

    How can I update apps on my iPad my screen is just blank. My phone updates fine.

    There are a number of other threads from people reporting a problem with a blank Updates tab in the App Store app on their iPads - it looks like there is a problem at Apple's end which they need to fix.
    Some posts are suggesting that you if you go into the Purchased tab in the App Store app you might be able to update the apps from there, though you will need to scroll through the list (potentially going through the A to Z list on the left-hand side of the screen, and similarly tapping the 'iPad Apps' button at the top left of the screen and selecting 'iPhone Apps') to find those with updates and individually update them.

  • Why can't I fit my AIR app to the screen of the device ??

    Hi all,
    I've made some apps on device but it's the first time that I can't make the app fit the screen and I really don't understand why.
    I've downloaded an exemple of the game Flappy bird and I would like to play with my device.
    Can you help me make the app fit the device screen please ?
    Here's my main.as
    package{
      import citrus.core.starling.StarlingCitrusEngine;
        import flash.display.Stage;
      import flash.events.*;
        import flash.display.StageAlign;
       import flash.display.StageScaleMode;
      [SWF(frameRate="60")]
      public class Main extends StarlingCitrusEngine {
      public function Main() {
            stage.align = StageAlign.TOP_LEFT;
      stage.scaleMode = StageScaleMode.EXACT_FIT;
      override public function initialize():void {
      setUpStarling();
      //starling is ready, we can load assets
      override public function handleStarlingReady():void
      state = new FlappyBirdGameState();
    Here's my FlappyBirdGameState.as :
    public function FlappyBirdGameState()
      super();
      override public function initialize():void
      super.initialize();
      ce = CitrusEngine.getInstance();
      // load assets, then draw screen
      loadAssets();
      // fly with the spacebar, alternatively
      kb = ce.input.keyboard;
      kb.addKeyAction("fly", Keyboard.SPACE);
      private function loadAssets():void {
      assets = new AssetManager();
      assets.verbose = true;
      assets.enqueue(Assets);
      assets.loadQueue(function(ratio:Number):void
      trace("Loading assets, progress:", ratio);
      if (ratio == 1.0)
      // add game elements
      drawScreen();
      private function drawScreen():void
      var bg:CitrusSprite = new CitrusSprite("bg", {x: 0, y: 0, width: 320, height: 480});
      bg.view = new Image(assets.getTexture("bg.png"));
      add(bg);
      box = new CitrusSprite("box", {x: 40, y: -200, width: 240, height: 200});
      box.view = new Image(assets.getTexture("box.png"));
      add(box);
      textField = new TextField(200, 200, "CLICK TO FLY", "Flappy", 20, Color.NAVY);
      textField.x = 60;
      textField.y = -200;
      addChild(textField);
      // box and textField have synced tweens
      eaze(box).to(0.4, { y: 150 } );
      eaze(textField).to(0.4, { y: 150 } );
      ce.stage.addEventListener(MouseEvent.MOUSE_DOWN, start);
      function start(e:MouseEvent):void
      eaze(box).to(0.2, { y: -200 } );
      eaze(textField).to(0.2, { y: -200 } );
      newGame();
      ce.stage.removeEventListener(MouseEvent.MOUSE_DOWN, start);
      public function newGame():void
      // get a random Y position for first pipe
      randomizePipeY();
      pipe1 = new CitrusSprite("pipe", {x: 380, y: pipeY, width: 60, height: 160});
      pipe1.view = new Image(assets.getTexture("pipe.png"));
      add(pipe1);
      pipeBoundsTop1 = new Rectangle(0, 0, 50, 355);
      pipeBoundsBottom1 = new Rectangle(0, 0, 50, 364);
      // get a random Y position for second pipe
      randomizePipeY();
      pipe2 = new CitrusSprite("pipe2", {x: 620, y: pipeY, width: 60, height: 860});
      pipe2.view = new Image(assets.getTexture("pipe.png"));
      add(pipe2);
      pipeBoundsTop2 = new Rectangle(0, 0, 50, 355);
      pipeBoundsBottom2 = new Rectangle(0, 0, 50, 364);
      // the character
      thing = new CitrusSprite("thing", {x: 100, y: 200, width: 40, height: 50});
      thingImage = new Image(assets.getTexture("thing.png"));
      thing.view = thingImage;
      add(thing);
      thingBounds = new Rectangle(0, 0, 35, 45);
      ce.stage.addEventListener(MouseEvent.MOUSE_DOWN, fly);
      // move box to top
      var container:Sprite = view.getArt(box).parent;
      container.swapChildren(view.getArt(box) as DisplayObject, view.getArt(pipe1) as DisplayObject);
      container.swapChildren(view.getArt(box) as DisplayObject, view.getArt(pipe2) as DisplayObject);
      container.swapChildren(view.getArt(box) as DisplayObject, view.getArt(thing) as DisplayObject);
      // score text field
      scoreText = new TextField(300, 50, "", "Flappy", 20, Color.NAVY);
      scoreText.hAlign = "right";
      scoreText.x = -10;
      scoreText.y = 0;
      addChild(scoreText);
      // a few more things
      clicked = true;
      score = 0;
      velocity = -7;
      // click to fly
      public function fly(e:MouseEvent):void
      velocity = -7;
      assets.playSound("whoosh");
      // get a new Y position for a pipe
      private function randomizePipeY():void
      pipeY = new Number(Math.floor(Math.random() * -330) + -40);
      override public function update(timeDelta:Number):void
      super.update(timeDelta);
      if (clicked)
      if (!gameOver)
      // move pipes
      pipe1.x -= 2;
      pipe2.x -= 2;
      // after pipes go off screen, move them
      if (pipe1.x <= -60)
      //randomize pipe Y
      randomizePipeY();
      pipe1.x = 380;
      pipe1.y = pipeY;
      if (pipe2.x <= -60)
      // randomize pipe Y
      randomizePipeY();
      pipe2.x = 380;
      pipe2.y = pipeY;
      // fly through a pipe, gain a point
      if (pipe1.x == thing.x || pipe2.x == thing.x)
      score++;
      scoreText.text = String(score);
      assets.playSound("ding");
      // spacebar to fly
      if (ce.input.justDid("fly"))
      if (!gameOver)
      velocity = -7;
      assets.playSound("whoosh");
      // character falls with gravity
      velocity += gravity;
      thing.y += velocity;
      // prevent flying through the top and bottom of screen
      if (thing.y <= 0)
      thing.y = 0;
      if (thing.y >= 430)
      thing.y = 430;
      // collision
      thingBounds.y = thing.y + 2.5;
      thingBounds.x = thing.x + 2.5;
      pipeBoundsTop1.x = pipe1.x + 5;
      pipeBoundsTop1.y = pipe1.y;
      pipeBoundsBottom1.x = pipe1.x + 5;
      pipeBoundsBottom1.y = pipe1.y + 495;
      pipeBoundsTop2.x = pipe2.x + 5;
      pipeBoundsTop2.y = pipe2.y;
      pipeBoundsBottom2.x = pipe2.x + 5;
      pipeBoundsBottom2.y = pipe2.y + 495;
      // lose the game
      if (thingBounds.intersects(pipeBoundsTop1) || thingBounds.intersects(pipeBoundsBottom1)
      || thingBounds.intersects(pipeBoundsTop2) || thingBounds.intersects(pipeBoundsBottom2))
      die();
      // death, show score and click to play again
      private function die():void
      if (!gameOver)
      gameOver = true;
      assets.playSound("smack");
      ce.stage.removeEventListener(MouseEvent.MOUSE_DOWN, fly);
      // prevent clicking briefly to let the player see their score
      var t:Timer = new Timer(500, 1);
      t.addEventListener(TimerEvent.TIMER_COMPLETE, cont);
      t.start();
      function cont(e:TimerEvent):void
      textField.text = "Score: " + score;
      scoreText.text = "";
      eaze(box).to(0.4, { y: 150 } );
      eaze(textField).to(0.4, { y: 150 } );
      ce.stage.addEventListener(MouseEvent.MOUSE_DOWN, startOver);
      // reset everything, start the game again
      private function startOver(e:MouseEvent):void
      eaze(box).to(0.2, { y: -200 } );
      eaze(textField).to(0.2, { y: -200 } );
      score = 0;
      pipe1.x = 380;
      pipe2.x = 620;
      thing.x = 100;
      thing.y = 200;
      velocity = 0;
      gravity = 0.4;
      gameOver = false;
      randomizePipeY();
      ce.stage.removeEventListener(MouseEvent.MOUSE_DOWN, startOver);
      ce.stage.addEventListener(MouseEvent.MOUSE_DOWN, fly);
    Thanks,

    Yeah, it should. But, weirdly, it's not...
    Here's what I see on the device emulator with Adobe Flash Pro :
    And here's what I see when I install the apk on my Android device :
    Can't understand why it's happening.
    The game was in an example package of the citrus engine : https://drive.google.com/file/d/0B5-MjJcEPm3lMU5jSzB0dDBualk/view?usp=sharing

  • I have update to iOS 8.1.3, and I cannot open both centers, or use and cancel apps, or the screen change color to gray, or the display do not recognise that I touch it, and more. If I restart it, I find another mistake in next five hours.Help me pls.

    I have update to iOS 8.1.3, and I cannot open both centers, or use and cancel apps, or the screen change color to gray, or the display do not recognise that I touch it, and more. If I restart it, I find another mistake in next five hours. Help me please.
    iOS 8.1.3
    iPhone 5s 32 GB
    CPU 64 bit

    If you have an iPad 1, the max iOS is 5.1.1. For newer iPads, the current iOS is 6.0.1. For the iPad Mini the iOS is 6.0.2. The Settings>General>Software Update only appears if you have iOS 5.0 or higher currently installed.
    iOS 5: Updating your device to iOS 5 or Later
    http://support.apple.com/kb/HT4972
    How to install iOS 6
    http://www.macworld.com/article/2010061/hands-on-with-ios-6-installation.html
    iOS: How to update your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/HT4623
    If you are currently running an iOS lower than 5.0, connect the iPad to the computer, open iTunes. Then select the iPad under the Devices heading on the left, click on the Summary tab and then click on Check for Update.
    Tip - If connected to your computer, you may need to disable your firewall and anitvirus software temporarily.  Then download and install the iOS update. Be sure and backup your iPad before the iOS update. After you update an iPad (except iPad 1) to iOS 6.x, the next update can be installed via wifi (i.e., not connected to your computer).
     Cheers, Tom

  • Can I change where on the screen the "get info" display pops up?

    Can I change where on the screen the "get info" display pops up? I have dual 23" cinema displays and the Get Info box always pops up inconveniently on the far, far left. Is there a way to change the default location, more towards the middle, where it would fit better into my work flow?

    treetopstudio,
    I'm not sure to change the default of Get Info but what you could do is open the Inspector instead it 1 remembers it location when you close it and 2 when you click on another icon in finder changes to that. To open it instead of the get info window Option + Command + i or hold Option and click File show Inspector.
    Hope that helps,
    Weston

  • I have an Ipod touch. Since this morning I am not able to open any of my purchased apps. The screen briefly flashes but the apps don't start. Can anyone help?

    I have an Ipod touch. Since this morning I am not able to open any of my purchased apps. The screen briefly flashes but the apps don't start. Can anyone help?

    - Try resetting the iPod. Nothing will be lost.
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Then download/install new app.
    - iOS: Troubleshooting applications purchased from the App Store

  • I can not erase an app from the screen

    I can not erase an app from the screen

    It is kinda complicated. It's an app from appstore. it won't download fully. There's just an incomplete grey app on my screen now that i cannot get rid of.
    I'Ve tried to redownload the app but it wont finnish. I have done about five reboots but the "grey app" will not disappear. It is markt with the "x" in the upper lefye corner. And yes, i can erase other apps. I will be happy if someone can help me.

  • HT201401 My iPhone3GS has started crashing. I'll be mid-phone call, or using an app, when the screen will go dark. I have to restart it. Then it shows low battery sign (even though it was 100%). Within 1 minute of charging, iphone starts. Pl. resolve.

    My iPhone3GS has started crashing. I'll be mid-phone call, or using an app, when the screen will go dark. I'll have to do a restart. It dumps to the warning screen that there's no power and needs to be plugged in.
    Once I connect the phone to a power source, in a couple of minutes it's ready to roll again, and displaying a "full battery" icon.
    The phone is almost always fully charged when this happens, and I don't get a crash when the phone is plugged into a power source.
    Took my iphone to apple store, they informed that battery is very good and there is no need for replacement. Might be there is a problem with iphone motherboard. But they can't repair it as my 3GS crossed warranty.
    Where should I go to repair this. Within 2 years...this 32GB 3GS is almost garbage for me with no support from apple. I am ready to send it to apple for repairs and pay the repair charges.
    I tried everything... deep reset ... factory settings .... nothing is working... Apple staff pl. take care of your customers ...

    This is a User to User Forum... You are Not Addressing Apple here...
    iPhone User Guide
    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414

  • HT1267 Q  I keep getting a repeat screen that says "unable to download" [name of a song] and gives me the choice to "try again" or "done".  I don't want the song and can't get rid of the screen.  Ideas?

    I keep getting a screen that says "Unable to Download"   [song] with two choices - "done" or "try again".   I have tried both and can't get rid of the screen ( and don't want the song which I never ordered to begin with.   Ideas on getting rid of the screen??

    Purplehiddledog wrote:
    I do backup with iCloud.  I can't wait until the new iMac is available so that I can once again have my files in more than 1 location without needing to rely solely on the cloud. 
    I also rely on iTunes and my MacBook and Time Machine as well as backing up to iCloud. I know many users know have gone totally PC free, but I chose to use iCloud merely as my third backup.
    I assume that the restore would result in my ability to open Pages and Numbers and fix the problem with deleting apps, but this would also mean that if my Numbers documents still exist solely within the app and are just not on iCloud for some reason that they would be gone forever.  Is that right?
    In a word, yes. In a little more detail.... When you restore from an iCloud backup, you must erase the device and start all over again. There is no other way to access the backup in iCloud without erasing the device. Consequently, you are starting all over again. Therefore, it would also be my assumption that Pages and Numbers will work again and that the deleting apps issues would be fixed as well.
    If the documents are not in the backup, and you do not have a backup elsewhere, the documents could be gone forever.

  • TS1702 I am trying to download and app but the screen froze at the end where it said ready to download  and I was required to press OK

    I am trying to download an app. but the screen on my iphone 4S has frozen when I reached the screen saying it was ready to download and I was
    seeing an "OK" button to press.  Nothing happens and I can't get out of the screen.  When I shut off the phone and cut it back on and go to "apps"
    the frozen screen appears again.  Any help???

    Have you had an issue with a previous purchase from iTunes or has your credit card expired? Even though it is a free app, you may have to update your payment information, since you already have a credit card on file. They have to be updated in iTunes.
    If none of that applies, try signing out, Restrt and sign in again.
    Settings>iTunes & App Store>Apple ID. Tap your ID and sign out. 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.
    Go back to Settings>iTunes & App Store>Sign in and then try again.
    if that doesn't work, you may have to contact iTunes Store Support and seek their assistance.
    https://expresslane.apple.com/Issues.action

  • TS1702 My app store does not load the featured apps, also in charts. Everytime i open the app store, the screen remains blank. Im using ipad3, ios6.

    My app store does not load the featured apps. The screen remains empty everytime I open it.

    Saw this on another post.
    Applecare Senior Advisor Txx Bxxx (I have his contact info in an email he just sent) just confirmed with me that the problem people are having with the App Store not loading is an apple issue with there servers, ITS NOT YOUR IPAD so don't go restoring it!   It's not happening to everyone however but they are looking into it, its really hit or miss.
    In the meantime ...........
    The Complete Guide to Using the iTunes Store
    http://www.ilounge.com/index.php/articles/comments/the-complete-guide-to-using-t he-itunes-store/
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    Best Fixes for ‘Cannot Connect to iTunes Store’ Errors
    http://ipadinsight.com/ipad-tips-tricks/best-fixes-for-cannot-connect-to-itunes- store-errors/
    Try this first - 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.
    This works for some users. Not sure why.
    Go to Settings>General>Date and Time> Set Automatically>Off. Set the date ahead by about a year.Then see if you can connect to the store.
     Cheers, Tom

  • I have Iphone 5 and updated to IOS 8... I can not receive a call, the Screen become black and I can not answer the phone call

    I have Iphone 5 and updated to IOS 8... I can not receive a call, the Screen become black and I can not answer the phone call

    Hey there jjroca,
    It sounds like you are unable to make or recieve phone calls because the screen goes black. I would start by quitting all the running apps on the device:
    iOS: Force an app to close
    Double-click the Home button.
    Swipe left or right until you have located the app you wish to close.
    Swipe the app up to close it. 
    When you have done that restart the device and test the issue again:
    iOS: Turning off and on (restarting) and resetting
    If that does not resolve the issue, I would use the troubleshooting in the following article, named:
    iPhone: Troubleshooting issues making or receiving calls
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • Was just scrolling through my apps when the screen suddenly froze. A force shutdown didn't work and when I pressed the silent on/off button, there was no vibration either. The frozen screen faded to white with a few lines and about 10 minutes later, the

    I was just scrolling through my apps when the screen suddenly froze. A force shutdown didn't work and when I pressed the silent on/off button, there was no vibration either. The frozen screen faded to white with a few lines and about 10 minutes later, the edges started to turn black, forming a ring which got larger till about 4 hours later, the screen turned completely black. I tried connecting to iTunes but it wasn't detecting the phone and I can't do anything with it now... When it turned completely black, I charged it and after a while, the low batt screen came on but it was fuzzy and flickering with the white ring... What to do know ???????

    Restart your computer while holding down left mouse key. That will eject the CD and your Mac will start as normal.
    Lupunus

  • HT1212 So my phone is messed up and you can't do anything with the screen...in order for me to sink it to back up i have to enter the passcode because it had a lock on it...and i can't due to it being messed up...is there any way around this...

    So my phone is messed up and you can't do anything with the screen...in order for me to sink it to back up i have to enter the passcode because it had a lock on it...and i can't due to it being messed up...is there any way around this...

    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...  Be sure to Follow ALL the Steps...
    Take your time... Pay particular attention to Steps 3 and 4.
    Make sure you have the Current Version of iTunes Installed on your computer
    iTunes free download from www.itunes.com/download
    After you have Recovered your Device...
    Re-Sync your Content or Restore from the most recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766

  • How can I delete apps from the app store? There seems to be every app I have ever downloaded and deleted since I got my phone in 2007. When I go to app store and select update apps there's a menu at the top that says purchased! I would like to delete hist

    How can I delete apps from the app store? There seems to be every app I have ever downloaded and deleted since I got my phone in 2007. When I go to app store and select update apps there's a menu at the top that says purchased and when I select it it shows every app I've ever had! I would like to delete the history please.
    Many thanks

    You cannot.
    The entire point of this is that you can redownload any and all of your past purchases.

Maybe you are looking for

  • I set up an apple id for my 12 year old, a verfication email was sent, but google has locked her out because of age.  How do I get the verfication email?

    I set up an apple id for my 12 year old, a verfication email was sent, but google has locked her out because of age.  How do I get the verfication email? Should each person in my house have their own apple id and password? Can each of the different I

  • Error while running WDJ application using jxl.jar

    Hi Experts, I am using jxl.jar in my webdynpro java application in CE7.2. I added jxl.jar in java build path and place the jar file in lib directory of webdynpro DC. It shows error in development configuration perspective while building, then i creat

  • Starting Java Applet Slowly

    Hi Folks, I have problem with my application. user Oracle Developer Suite 10g file server use Win XP SP 2. sometimes java applet start slowly in several client but quickly in other time. sometimes form runs slowly but sometimes very quick. in service

  • Problem with Snow Leopard disc

    I just bought the Snow Leopard boxed set and I cannot get the drive to recognize the SL disc. Before I even began, I backed up my files to my external drive and used the Disc Utility to repair permissions and ensure my HD was ready for the upgrade. W

  • GGB0 Operator Status IN

    Hi all, I am modifying existing FI Document Validation Rules in GGB0.  I saw a prerequiste like this : BSEG-HKONT IN Z_GL_QTY.  It is using the GL Account in the line item for comparison.  This Z_GL_QTY seems to be a list of predefined GL Account val