What setting for ipad2 full screen.

I am creating an animation in blender for use on the ipad. The full retina resolution is too big to create an animation in a reasonable amount of time so ipad2 resolution will be fine. What setting should I use for creating a movie for use on the iPad2 full screen. Surely 1024 x 768 (as this is the screen resolution) but there is no available option that i can see.
thanks
matt

matb1 wrote:
… Still seems like there should be an easier way like a preset for the ipad or something.
sure:
create your 720p project
drag your Blender stuff into it
resize it to full screen
share/Apple devices: iPad
done
best-practice would be to export from within Blender in 720p and drag resulting mov/mp4 into iTunes to sync with iPad … if you don't need any editing ........

Similar Messages

  • Unable to set safari in full-screen mode

    Hi folks,
    I just factory reset my 15-inch MBP running 10.9.3. After doing so, I notice that I am unable to set Safari in full-screen mode. Any ideas??

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • I accidently click for a full screen view on Firefox and now I can't undo it. My bar with tools, bookmarks, etc. is not visible. As the browser opens, the bar appears but then jumps up where it can't be reached. How do I turn off the full screen?

    I accidently clicked for a full screen view on Firefox and now I can't undo it. My bar with tools, bookmarks, etc. is not visible. As the browser opens, the bar appears but then jumps up where it can't be reached. How do I turn off the full screen without access to view options?

    Co-el, This wasn't possible as there wasn't a navigation bar available. The F11 did the trick though. Thanks for adding to the discussion.

  • Okay...what happened to the full screen contact picture?

    Okay...what happened to the full screen contact picture? Is there a way to get it back? I'd like to see the full picture of the person I'm  calling-not just an ugly blank screen with little round circles on it!!!!

    I wrote my feedback there. Please everyone leave your feedback. The new 7.1 design is very impractical.
    Why they crave so much about these ugly circles? There are lots of unused space available on the screen.
    Please bring back the big rectangular buttons!!!!!!
    And full-screen contact picture when someone's calling.

  • Statement in tutorial for useing full screen i dont get ?

    When in full-screen exclusive mode, you don't have to worry
    anymore about the window being resized, moved, exposed, or occluded
    (unless you've ignored my suggestion to turn off resizing). now how do i turn of resizeing ? it doesn't say in the tutorial or i missed it somewhere .
    thanks in advance.

    ackkk im totally stumped can someone run this and
    tell me how i draw to the screen or were to go from were im at
    what im missing what i need to do ect...
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.Image.*;
    public class fullscreentest extends Frame
      // VARIABLES OR USED CLASSES
         private static DisplayMode OD_Mode;
         private static DisplayMode D_Mode;
         Frame mainFrame;
      // CONSTRUCTOR
      public fullscreentest(){
         go(); // call go method
               // could make render loop here as main thread should exit go
               // and stay in full screen mode
      // METHODS
      public static void main(String[] args) {
               try {
            fullscreentest test = new fullscreentest();// call constructor to begin
            } catch (Exception e) {
                e.printStackTrace();
            System.exit(0);
         public void go(){
         GraphicsEnvironment env = GraphicsEnvironment.getLocalGraphicsEnvironment();
      // grab monitor device so we can use it to change the monitor resolution
      GraphicsDevice device = env.getDefaultScreenDevice();
       // i already know the mode im going to set is support so ill skip by this
       if(device.isFullScreenSupported() == false){System.out.println(" Warning full screen is not supported "); }
       if(device.isFullScreenSupported() == true){
        device.setFullScreenWindow(this);
        //device.setFullScreenWindow(Window w);
        System.out.println(" full screen is supported ");
       // graphics configuration class not to sure about this
       // looks like were grabing the default config which is in full screen becacuse we set device to fullscreen
       // or not? because were geting the default configuration  im a lil confused here
       GraphicsConfiguration gc = device.getDefaultConfiguration();
       // create a frame is it in full screen below or not ?
       mainFrame = new Frame(gc);
       mainFrame.setUndecorated(true);// get rid of title bars and stuff
       mainFrame.setIgnoreRepaint(true);// ignore repainting que
       mainFrame.setResizable(false);// do not allow the frame to be resized
       OD_Mode = device.getDisplayMode();// save the old device configuration
       D_Mode = device.getDisplayMode();// initialy make new config as old
       if (device.isDisplayChangeSupported() == false) {
        System.out.println(" warning display mode change is unsupported ");
       if (device.isDisplayChangeSupported() == true) {// hopefully this is possible
        // set new d_mode to 640,480
        DisplayMode D_MODE = new DisplayMode(640, 480, 32, 0);
        // mow d_mode should basically have all the info for the device and the screen size
        // and the colormodel that is being used
        System.out.println(" display mode change is supported ");
       // is this still correct ?
       // know i have no idea how to use a volitile image or if i even need to
       Graphics pen = mainFrame.getGraphics();
       int acc_mem = device.getAvailableAcceleratedMemory();
       System.out.println(" available accelerated memory or ram left reported "+acc_mem);
       boolean done = true;
       long count = 0;
       while (done) {
       // Draw as appropriate using myGraphics ???? draw to what. memory ??
       // thats kinda a cut off in the tutorial left me hanging.
            count ++;
            //pen = getPaintGraphics();
            //pen = mainFrame.getPaintGraphics();
            //pen.setColor(Color.blue);
            //pen.drawLine(100,100,50,50);
            pen.drawLine(100,100,50,50);
         // check for exit  
         if(count > 200000000){
         System.out.println(" count "+count);
         done = false;
         pen.dispose();
    }thanks in advance for any help.

  • Aspect ratio for old full screen games, advice sought on buying new monitor

    Hi.
    I'm thinking of buying a ThinkVision LT2252p to replace the old monitor my employer threw out because I've found the old one doesn't offer scaling of the aspect ratio meaning that my golden oldie full-screen-only PC games are all stretched out of shape to fit the entire monitor.
    With the LT2252p, will a 1280 × 960 desktop (or a 1024 × 768 fullscreen game...) appear on the monitor with black bars at either side or with a black border all around? (I'm hoping that's what is meant by 'Same Aspect Ratio with input signal'.) Either way is good, just so long as a circle looks like a circle and not an oval.
    If it's the case that I'm behind the times and the LT2252p is getting a bit long in the tooth, what would be a suitable alternative for a graphics card with VGA and DVI only?
    Thanks very much,
    Dave

    yackeroeni wrote:
    Hi,
    I've been trying to get games to work on my new setup and have problems running games in fullscreen mode.
    I can hear the sound of the game, but am unable to see it or, as far as I know, interact with it
    Literally using Xmonad for the first time and I experienced some game issues with fullscreen. Specifically when running CS:GO I had a problem where the resolution was native to my monitor (1920x1080) it was running windowed and I couldn't find a way to resize it unless moving it to a blank workspace (so other windows don't infere with the mouse hook) and your then able to drag the window by xmonad commands:
    mod-button1
    Set the window to floating mode and move by dragging
    mod-button2
    Raise the window to the top of the stack
    mod-button3
    Set the window to floating mode and resize by dragging
    yackeroeni wrote:(running steam games) launching dota 2 with the '-windowed' flag works fine.
    Correct me if i'm wrong, but I believe the linux native games on steam use the concept of '-windowed' by default.

  • Lync SDK- I want to set conversation in full screen mode when someone shares their camera

    I'm able to get the created conversation and the AVModality to share my camera, but i don't know what kind of notification i'm supposed to get or handler should i subscribe in order to set the conversation in full screen when someone shares their camera.
    Right now i'm subscribed to this event handlers:
    AVModality.StreamStateChanged += AV_StreamStateChanged;
    AVModality.ModalityStateChanged += AVModality_ModalityStateChanged;
    VideoChannel.StateChanged += VideoChannel_StateChanged;

    "Codecs For Dummies" sounds like a new project for my Rapidweaver folder...
    nope, sorry, I collected my "knowledge" over the years… I'm no technician, just a user, so my know-how is max. 35%… a good place to start is wiki, for sure… use the mentioned keywords above for a start - video, container, mov, avi, mpeg, divx…
    I'm pretty sure, you get lost...
    just to frighten you: have a look here, a small overview of some video-codecs…
    or, to frighten you more: honorable forum member F Shippey published this website…
    another problem:
    you remember Betamax vs VHS? that fight wasn't "best vs. better", but sheer marketing power… h264 is an excellent codec/compressor, we Euroepans have choosen for HiDefTV (in the future), but little supported in the PC world... because we "Maccies" have invented it...
    or, mentioning PCs:
    .wmv/Windows Media Video (besides... isn't Video a media??) comes in ... how many? ... 5? 9? 11? flavors... and for sure: not compatible within!
    the good point: Mac supports most-used codecs; and you can encode in the most-used codecs…
    last word: quality - never forget: video compression isn't techniqué, it's an art!
    ..... woosh, and gone......
    keep posting!

  • What's with Aperture full screen mode and Books?

    That is, what the heck Apple, why no full screen book layout?  I've used Lightroom from its beginning, and I'm quite happy with if for what it does, which of course doesn't include books.  I first tried iPhoto, which has really nice full screen book layout, but is crippled by limitations for customization.  It's just too restrictive for what I'd like to do.  So I downloaded a trial copy of Aperture.  I found that it has has all of the customization I need, but the UI is not very good, and the lack of full screen results in lots of wated screen space.
    Just venting.

    I agree, but tell Apple about it: Aperture Feedback:
    http://www.apple.com/feedback/aperture.html

  • Using Apple TV/Airplay for a full screen movie and opening new window on laptop

    When I have a full screen movie playing on my TV in AirPlay dual screen mode, and I open a new Safari window or my Mail, the window appears seemingly by default on top of the movie rather than coming up on my laptop monitor.  Is there a spot I can reset the default for new Safari windows and Mail windows to my laptop monitor, so they don't interrupt the movie on my TV?
    Background: my girls love Downton Abbey and Call the Midwife which I find terribly boring, and need to find something to do while the movies are playing rather than fall asleep! And you know what happens if Safari shows up over top of their beloved Downton! 

    it being mirror and many tv's being widescreen 16:9 and the screen of ios device not being widescreen this happen
    most tv's support having top and button chopped or streghed to fill the tv this is something one does with the tv's remote

  • Permission request for going full screen and border alert removal.

    Ok so I play some applications games on facebook and currently everytime I go to full screen via the game it requires me to "allow" the program to go full screen.  Also there is always a border alert if my cursor touches it and causes an alert to pop up and tell me what url im connected too.  It pops up right in the middle of my screen and has gotten so troublesome I have scoured the internet for possible solutions.
      The picture above is the current alert when going to full screen and I want to get rid of this for good after allowing it about 10,000 times enough is enough. How do i shut this off?
    this is what i see in the middle of my screen anytime my cursor touches the outer border of my screen which as you can imagine in a high paced gaming situation can be a killer.... I want to keep this from popping up at all I understand i can hit esc to get out of full screen.  In fact i got the point the first 50,000 times i saw it. 
    PLEASE HELP ME !! i am desperate to remove these and have found nothing on the net after searching vigorously.
    Thank you in advance for any assistance in this matter.

    Check your keyboard settings. Therre are "gaming settings" for things repetitive keypresses, and shortcuts enabling and disabling.

  • Best setting for a big screen projection?

    Hey,
    I'm working on a project that is supposed to be screened on a big screen (I assume something like a small movie theater screen) and I was wondering - what would be the best settings when exporting for something like that? If I compressed it with h.264 but still kept it HD 1440x1080 would that be good enough for a big screen projection or would it be too compressed? I am working in Apple ProRes, the video is about 4 minutes long and when I export it with current settings - it comes out to be about 5.5GB (most of the footage I used was old archived videos though) and I'm trying to get it down to about 2GB so I can send it over the internet.
    Anyone out there ever exported a movie for a movie theater before?

    David Harbsmeier wrote:
    a data dvd as well just to be safe
    How do you know that the playback system will have the codec needed to play your file?
    Anyone by any chance know of a free software that can split the 5.5GB across multiple data dvds?
    Why not use a dual-layer DVD?
    David's suggestion makes sense, but if you really want to know...
    You can break up large files into smaller segments using the Terminal command "Split".
    In the following example, we will break a short (imaginary) movie, "MyFilm.mov" into 5MB pieces, in this form it could be sent piece by piece via email, without blocking the recipients mailbox for everything else.
    Place the file to be split onto the desktop (this keeps it simple, otherwise you will have to "cd" to the directory where your movie resides)
    Open Terminal and...
    TYPE: *cd desktop* and press return
    TYPE: *split -b 5000k MyFilm.mov* and press return
    This will produce a number of files on your desktop named xaa, xab, xac and so on. There is a way to retain the original name or rename the file to something else but I don't have documentation on this at hand.
    The "5000k" part of the command is the size of the individual split files (in this case, the file will be broken into pieces of approx. 5MB each
    Depending on the files total size you might want to break it into say, 50MB pieces - substitute "50m" for "5000k" in this case. This also saves you from having to type all those zeros!
    These days, you are more likely have a movie several Gigabytes in size - as an example, the DV format uses 13GB of disk space for an hour of video. Prepare those files for burning to multiple CDs by typing "650m" after the split -b command.
    This may take some time to process, depending on the size of the resulting files, how much RAM you have and the speed of your Mac.
    At some point, your emailed or archived files will need to be re-assembled into a viewable movie. So....
    Rejoin a set of split files:
    Place all the files "xaa", "xab" etc, that are to be rejoined, onto the desktop
    (keep it simple, remember...)
    In Terminal;
    TYPE: *cd desktop* and press return
    Type *cat x* > MyFilm.mov* and press return. Again, this may take some time, depending on the size of the resulting files.

  • What's with the "Full Screen" movie rentals?

    I"m as ****** as the next guy about the "No HD rentals" issue, but even more ****** off that most of the rentals I'm clicking on aren't just not available is HD, but aren't even available in "Widescreen". All Macs have a "widescreen" display now, and even your iPods, iPod Touch, and iPhone's are widescreen. No one wants to download a rental of a "Full Screen" movie anymore. My God, "300" in Full Screen - What are they thinking? If they want to offer "Full Screen" rentals, it should be an option, like when you go to the video store to buy a DVD, and are offered a "Full Screen" version or a "Widescreen" version. I don't think they even sell Full Screen TVs anymore. I have the same problem with PPV from the cable company... If it is not offered in Widescreen, I don't rent it. The same will be true here. I just never imagined Full Screen would ever even be offered, much less the only option.

    The iTunes store has pretty much everything in widescreen that it can, but as with most televisions and "home theater" setups... Widescreen really doesn't matter. I know that some people prefer widescreen, but I don't. I have a projector not a TV so I have a 20 foot screen and the black lines in most "widescreen" movies eats up 4-5 feet of space. The only movies that come formatted for a widescreen TV in the first place(I am talking about on DVDs) are the Anamorphic Widescreen DVDs. They have a 2.35:1 aspect ratio, but very few DVDs actually have this, most are in 1.85:1 aspect ratio or 16:9 which is actually a fullscreen movie with black lines at the top and bottom.
    As for HD rentals in the iTunes store, this is AppleTV only, and that is not Apple's fault, this is due to DRM. In order for you to play a copy-protected Blu-ray or HD DVD you have to have http://en.wikipedia.org/wiki/HDCP compliant hardware, the apple TV is HDCP, but you computer is not, so therefore Warner Bros/FOX/Sony etc. Can not be guaranteed that you won't be able to pirate their content.
    Most people do not have a widescreen TV, and yes most Computer screen LCDs are capable of just about any resolution, but a lot of people are still in the non-HD zone.
    I agree that many people want HD content, however given how hollywood lost the battle to keep DVDs copy-protected, they have taken enormous steps to protect HD content.....

  • Whats the difference between full screen mode on iLife 09 and 11?

    I had a overview of iLife 11 in store at Apple yesterday, I like the ful screen mode of it. I have iLife 09 but never really used it much to be honest.
    I just fired it up, and it has a full screen mode on it I see, so whats the difference between '09 and '11 full screen version?
    Also I'm a little worried if my iMac would run it fine? Its a 2007 Alu Core 2 Duo 2Ghz, 2Gb RAM, so a little older
    cheers

    If viewing full screen is your primary interest with iPhoto then iPhoto 11 may not be for you. iPhoto 11 has new themes for books, cards and slideshows which are rather slick and offers 2 page spread layouts in the books. In all fairness, it has had its difficulties as you can easily tell by the posts but not by everyone.
    Bottom line: it all depends on what you primarily use iPhoto for. Excellent image management and organization or the frills, bells and whistles of its other features.
    Happy Holidays

  • MacBook to TV via DVI strange for DVD full screen

    The TV has the same resolution as the MacBook (1024x768).
    The display works fine via DVI.
    DVDs displayed inside a window are ok.
    However, when playing a DVD full screen, after a few seconds the visible image part of the movie moves to the top of the TV screen (having a small part, the very top, not visible anymore on TV) - while the MacBook still shows correctly the movie (with the image centered vertically).
    It seems this is caused by the way the DVD player "hides" the commands (in full screen) a few seconds after the user stops moving the mouse. It seems the commands are displayed "below" the visible part of the movie on the Mac - while the TV "tries" to display it anyway, thus moves the whole 1/3 to the top.
    Since the TV shows the correct screen when not playing DVD full screen, it is likely to be a problem with the DVD player.
    Is there a particular setting I should focus on?

    Are you using your external screen in Mirrored Mode? If so, the TV resolution and the MacBook will have the same resolution (1280 x 800 max.). If you uncheck mirrored in Display Preferences, you'll be able to get your TV's maximum resolution. This would be called extended view. Or, you could use it in [Closed Clamshell Mode|http://support.apple.com/kb/ht3131].

  • Air For Android - Full Screen not working

    Opened CS5.5 > Chose "Air For Android" which gave me a stage dimension of 480x800 default. I then created my app.
    I am using a Droid Bionic and testing my app on it. It will not go to full screen, regardless of how I am holding the Droid. When publishing, I clicked "Full Screen" and Portrait, Landscape, Auto Orientation, etc. I tried all of the publishing options, yet still there is white screen on the eastern and southern side of the screen.
    I have a picture on the main screen, and it fits perfectly within the 480x800 dimmensions when playing in Flash. After publishing to an APK file and testing it on Droid, I have that white space as mentioned, as if the stage size grew larger than the picture / app. I also shrank the stage(480x800) dimensions to to (340x600) , but still the same amount of white space. When I move the picture to the right a bit, and publish, it shows the white space on the left hand side of the stage. This can only mean that when I publish, the stage size grows but everything on the stage stays the same. 
    Any ideas?
    Thanks!

    I removed:
    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;
    from AS3 and it works better. Now there is even white space on the north and south side of the screen. Clicking "Full Screen" in the publish settings, makes a little more white space, which is weird. It as if now the stage is expanding its height, rather than its height and width due to me using the above code. Still, would like to get rid of that extra white space.
    Edit: It looks like the stage height grew by 60. If I expand the picture by 60, placing it on the stage at 0x and -30y, it fits fine on the bionic. I don't understand why this is happening, and scared that it may be different for each device.

Maybe you are looking for

  • Adobe Muse CC, Is it possible to achieve this effect?

    Hi everyone, it's me again. Now I was browsing through the internet when I come across these two websites: Supernova – WordPress Theme (This is a website theme/template) http://airnauts.com/ (This is an actual website) So, in the first one, the Wordp

  • Problem with Call Manager in VM ware

    Hi All , Please help I  installed VM worksation in my laptop , and trying to install Call Manager inside it , My laptop connected to LAN with 10.26.152.27 with mask 224 , and gateway 10.26.152.1  . i am confuse what Network adapter i will use for VM

  • Calling report from developer 10g in word program

    My Dears: I Wrote this code to open report in word program web.show_document('http://127.0.0.1:8889/reports/rwservlet?report=c:\emp.rdf&destype=cache&desformat=RTF&userid=scott/tiger@test&paramform=no&MIMETYPE=application/msword'); I use this code in

  • EDesigner on UNIX / LINUX ?

    hi *, i heard from rumors that the new eDesigner ships as Netbeans Plugin and not as a Netbeans Release! 1) is this true? if yes -> 2) would this mean that it is useable on UNIX / LINUX? regards chris

  • I cant access i tunes

    Every I want to download an app from the apple store, it tells me I cant access I tunes