Results 1 to 8 of 8

Hybrid View

  1. #1
    Player
    Raikki's Avatar
    Join Date
    Mar 2011
    Posts
    760
    Character
    Raikki Zero
    World
    Jenova
    Main Class
    Ninja Lv 90
    You're just missing a step in the AutoHotKey script. Here's mine:

    ^+a::
    WinSet, Style, -0xC00000,a ; remove the titlebar and border(s)
    WinSet, Style, -0x40000,a ; remove sizing border
    WinMove, a, , 1680, 0, 1360, 768 ; move the window to 1680, 0 and resize it to 1360x768
    return
    Edit "1680, 0" to be the desktop coordinates you want the upper left corner of the screen to be (0, 0 for your primary display) and "1360, 768" to be the resolution you're running the game. Edit "^+a" to be whatever keyboard shortcut you want for it.
    (0)

  2. #2
    Player
    Sylkis's Avatar
    Join Date
    Mar 2011
    Location
    Gridania
    Posts
    613
    Character
    Sylkis Tea
    World
    Sophia
    Main Class
    Scholar Lv 100
    Quote Originally Posted by Raikki View Post
    You're just missing a step in the AutoHotKey script. Here's mine:



    Edit "1680, 0" to be the desktop coordinates you want the upper left corner of the screen to be (0, 0 for your primary display) and "1360, 768" to be the resolution you're running the game. Edit "^+a" to be whatever keyboard shortcut you want for it.
    Even better:
    WinMove, A, , 0, 0, A_ScreenWidth, A_ScreenHeight
    This detects your monitor resolution so theres no editing
    (0)