this little utility
Windowed Borderless Gaming is very handy for this method.
i've actually set up a .bat file that uses the utility
qres (described in another method for getting ftl going on a netbook here:
http://www.ftlgame.com/forum/viewtopic. ... 522#p14522) and windowedborderlessgaming.exe to streamline the entire process. if anyone more proficient with command line type stuff could compile this into an easy-to-install sort of setup, because i don't really know how to deal with files being in different locations (like the standalone vs steam version of ftl) and so forth.
if anyone wants to copy my method, this is how I did it for the standalone version of FTL (i figure this is best for netbooks since i dont want steam using any of the already meager available processing power);
uncheck the "hide modes that this monitor cannot display" box described in the first post, change to 1280x720
put qres.exe and windowedborderlessgaming.exe in C:\
run windowedborderlessgaming, then FTL, and set it up (1280x720, 0x0y position)
quit both
create a .bat file and edit it to contain the following:
Code: Select all
@ECHO OFF
taskkill /f /im explorer.exe
cd C:\
start WindowedBorderlessGaming.exe
c:\qres /x:1280 /y:720
cd "C:\Program Files\FTL\"
start /high ftlgame.exe
pause
taskkill /f /im windowedborderlessgaming.exe
c:\qres /x:1024 /y:600
START %SystemRoot%\explorer.exe
exit
then just run the .bat file. it should swap to the correct resolution, align and remove the border from the ftl window, and kill explorer. then when you're finished with ftl just quit and press any key on the command line window and it'll restart explorer, kill the borderless utility, and change back to the normal resolution
for the steam version the .bat file would be (i believe), although again i have not tested this
Code: Select all
@ECHO OFF
taskkill /f /im explorer.exe
cd C:\
start WindowedBorderlessGaming.exe
c:\qres /x:1280 /y:720
start steam://run/212680
pause
taskkill /f /im windowedborderlessgaming.exe
c:\qres /x:1024 /y:600
START %SystemRoot%\explorer.exe
exit
again if anyone wants to clean this up or prepackage the two utilities/.bats into an easier setup, please go right ahead. props to zauron for the original .bat/qres idea, and to the creators of the qres and borderless utility.