Don't know shit about AHK, but improved a tiny bit on the auto-position script that was floating around here (forgot where I got it... sorry..).
Did this for myself and LS, but well... might as well put it out here.
Basically, this does the most basic of XI's Windower functionality (and nothing more): fake fullscreen mode. I.e. you run XIV windowed but it looks fullscreen and you retain alt-tab functionality.
You need to configure XIV to run in Windowed mode at your desktop resolution for this to work.
If you have AHK (AutoHotKey), here's code:
If you don't have AHK and just want a standalone binary, use this:Code:p = FINAL FANTASY XIV Beta Version x = 0 SysGet, ScreenWidth, 0 SysGet, ScreenHeight, 1 Loop { ifWinExist, %p% { if (x = 0) { ;WinActivate WinGetPos, , , w, h, %p% if (h > 400) { ; avoid resizing patcher window WinSet, Style, -0xC00000, %p% ; remove borders WinMove, %p%, , 0, 0, ScreenWidth, ScreenHeight x = 1 } } }else{ x = 0 } } return
http://www.filefront.com/17271998/w_ffxiv.rar
There's an exe inside, compiled AHK script. As always, scan it before you run an exe, no use me telling you it's clean. When you launch it, it goes straight to your icon tray (green "H" icon). You can run it even after XIV is launched.
Note #1: Any one who feels like taking the script and improving it, go ahead. I just made this in 10 mins, far from perfect.
Note #2: Will not work anymore in 2 weeks since "Beta Version" is coded in the script, need to improve that too.
Note #3: Will not work with multi-monitor setup, I guess.
Note #4: You can close the script/binary after launching XIV, if you like. If you do so, you'll have to run it again next time you launch XIV though.
Disclaimer: Not my fault if your PC explodes etc...
XI Wiki




