How to make PA fullscreen or Windowed Fullscreen?

Discussion in 'Planetary Annihilation General Discussion' started by Damo116, June 25, 2013.

  1. Damo116

    Damo116 New Member

    Messages:
    13
    Likes Received:
    1
    The question is in the title ^^^ :eek: if anybody knows please help :)
  2. BulletMagnet

    BulletMagnet Post Master General

    Messages:
    3,263
    Likes Received:
    591
    You don't. At least not yet. It's a feature that hasn't been implemented yet.
  3. cola_colin

    cola_colin Moderator Alumni

    Messages:
    12,074
    Likes Received:
    16,221
    ZaphodX mentioned this tool: http://pcgamingwiki.com/wiki/Borderless ... eCompanion

    I use an autoit script to do the same, however it is hardcoded for 1080p:

    Code:
    #include <WinAPI.au3>
    #include <Constants.au3>
    #include <WindowsConstants.au3>
    WinMove("Planetary Annihilation", "", -8, -8, 1936, 1096)
    
    $h = WinGetHandle("Planetary Annihilation")
     
    $iOldStyle = _WinAPI_GetWindowLong($h, $GWL_STYLE)
    $iNewStyle = BitXOr($iOldStyle, 0xC00000);$WS_BORDER;0xC40000
     
    _WinAPI_SetWindowLong($h, $GWL_STYLE, $iNewStyle)
    _WinAPI_SetWindowPos($h, 0, 0, 0, 0, 0, BitOR($SWP_FRAMECHANGED, $SWP_NOMOVE, $SWP_NOSIZE))
    I've attached the script as exe (unpack it). Run it once PA is started if you are using 1080p.

    If you are using not 1080p and you don't know how to edit the script it is probably easier to install the tool mentioned in the first line of this post.

    Attached Files:

  4. Damo116

    Damo116 New Member

    Messages:
    13
    Likes Received:
    1
    thankyou very much downloaded the application and works perfectly :)

Share This Page