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.

Similar Messages

  • Cannot broadcast full screen games on Windows 7 64bit

    I'm going to be as descriptive as possible in this. I'm running a dual-boot system (one OS Windows 7 64 bit, the other Windows XP 32 bit)
    I'm using ManyCams (but i've also tried Supercam, WebcamMax, and VHscrcap) as my virtual cam on both OS and FME. I've installed both programs on both operating systems the exact same way. I use the same exact settings for both, and I've made sure my video card drivers are up to date on both. Whenever I try to broadcast to any website (I'll use Justin.tv for this question) On the Windows 7 64 bit OS, i can capture my whole screen and everything just fine, until i go into a full screen game. I dont mean a game that's in windowed mode and taking up the whole screen, i mean a game that's running in full screen mode. The entire screen is black on the stream, but not on my monitor (obviously) until i alt-tab out of the game. Then the stream is fine and it's my desktop again. I can't capture my full screen games on my Windows 7 64bit OS. If I try this the exact same way on my XP 32 bit, it works fine with 0 problems.
    Just to rule these out, it's not a problem with my internet or my specs. Take my word for it.
    So, any takers on this? Is it just completely unfixable on W7 64bit or is there just something i'm missing here.
    Thanks

    At least you can broadcast at all I have been trying pretty much all day to get mine to stop crashing whenever I try to use my Dazzle dvc 100.. and yes I'm using windows 7 64 bit.. It worked on my old labtop that was Vista..and it still works on that but its too slow.. and its frustrating when I know I have everything I need installed and it wont work on my new labtop ._.

  • 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.

  • Alt tabbing with full screen games in Gnome Shell

    I'm using gnome shell 3.6.2 and whenever I launch a full screen game (like heroes of newerth) I can't alt-tab out of it or change to a different work space. I can do this in XFCE, KDE (with compositing disabled) and unity (have a press it a few times) but I can't do this in gnome shell. Is there a workaround I can use (besides starting it in a different X server).
    EDIT: I tried the package sdl-nokeyboardgrab and the libx11-nokeyboard grab and tried running hon as:
    LD_PRELOAD=libX11-nokeynomouse.so HoN/hon.sh
    but it still doesn't work. When I alt-tab/change workspace it shows the adwaita cursor (instead of the HoN one) and kinda blinks the gnome shell desktop.
    Last edited by Draucia (2012-11-22 13:25:46)

    Hello bferretti...sorry to hear you're having issues with the hot corners.
    I was playing WOW last night and started playing around with the video options. I noticed there are two full screen options now - Fullscreen and Windowed Fullscreen. If in Fullscreen the hot corners are disabled for me. If I use Windowed Fullscreen then the hot corners are still active.
    Not sure if you've taken a look at that...but just thought I'd pass along that info.
    Thanks!

  • Can't go back to a full-screen game after alt-tab switch

    Hi,
    A small problem suddenly appears.
    I always could switch to desktop from games with Alt-Tab and go back in-game by clicking on the icons in the taskbar.
    But since the last update, this make the game crash and I have to kill the process with powershell to relauch it.
    Anyone have an idea of what's going wrong ?

    I'm also having this problem for full screen games. Hope they fix this soon, it's very aggravating.

  • 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.

  • Changing windows in a full screen game

    I play Call of Duty 2 and run TeamSpeex on my iMac. My problem is that, sometimes while I am playing I need to get to the TeamSpeex window without quitting CoD2. I've tried F9, F10, command-tab, and command-m. Nothing seems to work. Is there another way to minimize a full screen game without quitting the application?
    20" iMac   Mac OS X (10.4.9)   Intel C2D 2.33 GHz 1MB RAM

    Yeah, I just tried it. No dice. It seems like all the keyboard shortcuts in the game override the OSX shortcuts.

  • Xserver-1.5.3 doesn't reset resolution after ending a full screen game

    xserver-1.5.3 doesn't reset display resolution after ending a full screen game.
    Is this a issue of the new xserver or the ati driver (i switched from catalyst to xf86-video-ati)?
    And how can i solve it?
    so long
    ukognos
    Last edited by ukognos (2008-11-30 18:01:19)

    I have the same problem with catalyst 8.11 . On the game, if I change the resolution, the game halt.
    I have Kde4 and a ATI HD 3450 and lastet upgrade...

  • Aspect ratio for video assets

    do all video assets need to maintain an aspect ratio of 3:2? for example, i have a QT movie (to be used as a menu header) that i animated in after effects that is 300x40. when i import this into DSP, the inspector says that it is 720x480 and the result is a distorted video. I have manipulated my AE file to maintain a 3:2 ratio (360x240) and that looks fine in DSP. However, the inspector still says that the video asset is 720x480. and, when i place it in a menu, i am prohibited from placing it exactly where i would like for it to be (due to the size of the drop zone). any thoughts or ideas?
    thanks in advance
    J
    Dual 2GHz G5   Mac OS X (10.3.9)  

    yes, 4:3. sorry, i'm used to AE referring to a 720x480 as 3:2. it considers a 720x540 (sq pixels) as 4:3. old habit i guess.
    when i change the drop zone's size by dragging the handles, it works fine unless i try to alter the width of the drop zone. for some reason, when i do that, it scales down the video asset.
    i've also noticed that if i set up a livetype file in a nonstandard 4:3 size (like 300x40), DSP does the same thing to it as it did to the QT that was rendered in AE. it distorts it by stretching it vertically, causing it to look horrible in a drop zone that is the same size as the livetype file. i'm just trying to find easy and efficient ways to animate button text and menu headers without having to compose the enitre menu in AE. but i believe that you are right, i may be better off just doing it that way.
    thanks for the advice,
    J
    Dual 2GHz G5    
    Dual 2GHz G5    
    Dual 2GHz G5    

  • Aspect ratio when exporting full quality -- is this a bug?

    Hi,
    I'm new to iMovie. I'm really enjoying playing around with it and think it's a really nice tool and very intuitive. But there's one thing that is bothering me. I'm working with 16:9 aspect ratio (Widescreeen) as the project type which corresponds to how the movies were recorded (a Canon MVX4i or Optura 600 in the USA I think). Everything works fine until I try to export in full quality format (using Export). The .dv file only plays back in 4:3 aspect ratio. I tried using the Expert settings, with 16:9 set and both PAL and NTSC but QuickTime and Preview still only see the movie in 4:3 aspect. If I understand correctly, the aspect ratio is just a flag that is set somewhere.
    Is this a bug or am I missing something? I don't have QT Pro by the way?
    One more question: in expert settings for DV Export settings, does anyone have a recommendation for what I shold pick for DV Format, and Scan mode?
    Thanks very much in advance,
    David
    Powerbook G4   Mac OS X (10.4.4)  

    Hi David,
    This isn't entirely unique to DV. But in simplistic terms what happens is that the widescreen footage that you capture with your camera is the same resolution as square screen. The number of pixels (the dots that make up the picture) for PAL, which is the format used in Portugal I believe, is 720 x 576.
    The pixels are squashed into a kind of oblong shape but then when played on widescreen kit the pixels become square causing the picture to stretch sideways. When you view the footage in QT it simply shows the picture as is - meaning that it outputs the picture as 720x576 with the oblong display.
    However, when you view the footage in iMovie there's a flag in the file that tells iMovie that the footage is wide and therefore to stretch it accordingly.
    There's a differing opinion of whether this display difference in QT is a bug or a feature. As Dan says, if you want to display widescreen footage in QT you're better off exporting a widescreen QT movie using the expert settings:
    From within iMovie...
    - Select File --> Export from the menu
    - In the Quicktime section choose Compress Movie For "Expert Settings"
    - Click the Share button
    - In the save dialog box that pops up Select "Movie to QuickTime Movie" in the Export section
    - Click Option...
    - In the Movie Settings dialog box click on settings
    - Select DV - PAL from the compression type
    - Keep the Frame Rate at Current
    - In the Compressor settings choose your Quality
    - Set the scan mode to Interlaced
    - Set the Aspect Ratio to 16:9 ( this is the bit that tells QT to play in widescreen)
    - Click OK
    - In the sound section click the Setting button
    - In the sounds settings dialog box set the Format to Linear PCM
    - Set the channels to Stereo (L R)
    - Set the Rate to 48.000kHz
    - Set the Sample Rate Converter settings to Quality Normal and the Linear PCM Settings to a sample size of 16 bits.
    - Uncheck all the other options (Little Endian, Floating Point and Unsigned)
    - Click OK
    - Uncheck the Prepare for Internet Streaming box
    - Click OK and set a destination for your file.
    - Click save to compress the file.
    The resulting file that is created above should now show in QT as widescreen. However you should bear in mind that you should work off the raw DV file rather than this new created one in iMovie. As a rule of thumb you should be thinking a little bit about the output media of the file. So for example if your final output medium is DVD then you can continue to work in iMovie and iDVD without problem. If you want to create a QT file for viewing on your computer then it's advisable to create a seperate QT file for this pupose.
    If you'd like to know a little more about the way aspect ratios works here's some links for you:
    Wikipedia
    World easiest explanation of anamorphic 16:9
    Hope this makes a little more sense now and sorry if I've covered stuff you already know. Hopefully this information will be of use to you but post back if you need more help.
    Cheers.
    David.
    PowerMac G4 Dual 1.25Ghz / 1GB RAM   Mac OS X (10.4.5)   PowerBook 12" 1Ghz / 768MB RAM

  • How to disable menu bar and dock when playing a full screen game? Like sims 4

    i play sims 4 on my MacBook pro and if I go to close to the bottom of the screen or the top the menu bar or dock pops up I was wondering if there is A program or a setting I can use to disable that while in something full screen or gaming

    The game itself should already have the option for full screen. But you can go to system preferences dock and check the hid dock option. Then you would have to go to the very edge of the screen to get the dock to reappear.

  • Correct Aspect Ratio for 4:3 and 16:9 SD output

    Hi guys,
    I've built a slideshow in FC with HD settings (1440 x 1080px), exported via compressor and imported into DVDSP. That's all fine however . . .
    The output requested is a DVD playable at 16:9 SD and this is where I have a small problem with the first tests I've done.
    To cover all bases, my DVDSP settings are SD 4:3 and HD 1440 x 1080i, 16:9 PanScan and Letterbox. The end result played back on the Mac looks great and the aspect is spot on. The ultimate test was to play it on 2 different DVD players on 2 different PAL TVs and the result is world's apart even after playing with the respective aspect ratio adjustments on the TVs.
    My problem is that I don't know what these DVDs will be played on and concerned they'll be cropped off or distorted and unwatchable.
    Is there something I'm missing or a way to avoid this uncertainty? My deadline is imminent and any help would be priceless.
    thanks guys
    Chuck

    What you should do for SD is export the FC timeline out to an SD preset (either PAL or NTSC as applicable) and you need to set the tracks to 16:9 Letterbox, not Pan & Scan or Pan & Scan Letterbox. The track will be 16:9 on 16:9 screens and letterboxed on 4:3 Screens. (You can also set up your own SD Compresser settings, make the aspect raito 16:9.)
    People can always mess with settigs so there is no 100% way to ensure it will always look correct, but the above takes care of matters for the most part.
    As an aside when you say world's apart, what was happening?

  • 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.

  • How should I swipe in iPhoto, when two fingers swipe is for swiping full screen apps? thanks

    I dont know how to swipe phoots in iPhoto using Lion, two fingers swipe swipes full screen apps,,,thanks

    Did you mean three fingers? (the default in Lion).
    Have you tried changing Lion to use a four fingered swipe for spaces (System Preferences > Trackpad > Guestures)? If you do that, maybe iPhoto will be able to use the three fingered gesture (although I only have an old version of iPhoto and it doesn't work in that).
    Sorry if that doesn't help. How about the cursor keys?

  • Thank you for fixing the aspect ratio for 14.1 Dell Notebooks

    All the way up until the last build, it has been rather difficult work around the fact that the windows 8.1 pro or enterprise would allow for full resolution on an E6410 i5 8GB RAM, (was not able to use the full screen of Visual Studio or Expression; which
    was an external monitor that worked quite nicely.  But I did wonder why my OS was stating that below 1080 is the recommended and only setting.
    In the last build the snap function did not work at all especially across two monitors.  Now it works great!
    Only have intermittent issues with wifi but a ipconfig /renew and ipconfig /flushdns works fine for the meantime. 
    Thank you, we are putting it on our phones and our Surfaces, as well as beginning the certification to place it on the eco tabs from OEM China.
    R2DC  I hope this was the right place to offer praise.

    Hi Nick...thanks for taking the time to reply to my question.
    Nick Holmes wrote:
    What you have there is a mess.
    NTSC pixels are never square.
    NTSC is 720x486, even when it is Anamorphic.
    You shouldn't be using an already letterboxed master to make an Anamorphic version. Get the master that was made before the letterboxing stage.
    When you make an Anamorphic DVD it should display as 16:9 full screen automatically on widescreen TVs.
    The same DVD will automatically letterbox on 4:3 TVs.
    Um yeah...duh. That's exactly what I was trying to explain in the preface of my question. I'm sorry if I didn't make it clear...all these things you mention are the reasons I'm putting together a list of the technical specs of the DigiBeta I need so I can have them send that instead of the stupid letterboxed version. 
    Look, I'm sending this request to some intern at their offices in England, asking for a master with which I can make an Anamorphic DVD. They already sent me this master, which as you and I both agree is an idiotic asset to use for these purposes. As such, I was hoping for advice on a more precise way of requesting the master that I need than asking for "the master that was made before the letterboxing stage." Upon reflection, perhaps I'll just do that. If you or anyone else has a suggestion about something I should add to my request that would improve the odds of them sending the tape I need, please repond. Thank you!
    BTW, It's been a long time since anyone has responded to something I've written or said as though I'm an idiot. I remember now that I don't really like it. (Moving along...)

Maybe you are looking for

  • Sending Email using cl_bcs from a badi implementation

    Hi, I have written my code to send Email, inside AFTER_SAVE method of BADI Implementation of DOCUMENT_MAIN01. Now this method of cl_bcs requires COMMIT WORK for the mail to be sent. And inside BADI implementation, we cannot write a COMMIT statement.

  • IPad Sync - Videos not appearing - Blank screen

    I recently updated to 4.2.1 on my iPad. In iTunes it shows as syncing and everything works except for my videos. When I touch the video button a blank screen appears, whereas before the list of videos would come up. I tried to "convert" them for iPad

  • 2 iphones 1 itunes  unterschiedliche kontakte

    Hallo Mein Mann bekommt nun sein erstes Iphone. Ich hab schon lange eins und nun die Frage: Wie mache ich es denn nun mit Itunes?  Damit meine Kontakte,.... nicht auf sein neues Gerät  kommen? Muss ich ein neues Benutzerkonto für ihn anlegen? ( Wie m

  • Concatenate interface fields(string) to Text Field

    Hi experts. I'm looking for solution. I created adobe interactive form displaying in ABAP WebDynpro, using ZCI layout I want to display sample text like: Hello mr. John today is monday. - John and monday are variables from interface. But I have probl

  • Using OID 9.0.4.x  as security provider  for OC4J 10.1.3

    If you upgrade OC4J to release 10.1.3 (needed for new releases of Jdeveloper) and you your Metadata respository is based on 9.0.4.x, you can use Oracle® Containers for J2EE Security Guide 10g Release 3 (10.1.3) B14429-01 Chapter 6 for the steps neede