Posted March 17, 2016
TL;DR - Please help test me this thing.
Hi so uh,,, my real job is junior programmer of automated tests and sometimes we use AutoIt at work.
But it can work with Windows. So I tried to put something together that "should" launch the KoDP in windowed mode (as you would with the -w) but then sorta tries to align the Windows and put them into your main monitor top left corner, you can move them later.
The idea for that came from user named jerfa who did something similar in python. The AutoIt script does not need python installed. AutoIt can do .exe version of the scripts, so I did two of them,
Now the problém is, would there be a volunteer to test it, it works for me.
The source code for the AutoIt, if you want to try is this:
;-----------------------------------------------------------------------------------------------------------
RunKingOfDragonPass()
Func RunKingOfDragonPass()
$aGame = "KoDP.exe -w"
Run($aGame)
Local $aMainWindow = WinWaitActive("mTropolis Windows Player - mPlayer")
Local $aMainControl = ControlGetHandle($aMainWindow,"","")
ControlMove($aMainControl,0,0,0,0)
WinMove($aMainWindow,"",0,0,650,550)
EndFunc
;-----------------------------------------------------------------------------------------------------------
and you run it from the same folder as the game is. You stil need to forbid it from runnin in 640x480 mode though
The script as .exe runnables are here:
https://www.dropbox.com/s/yw8v7uj187b5l96/KoDP-Windowed_32b.exe?dl=0
https://www.dropbox.com/s/dxl34xhi8cyw8qy/KoDP-Windowed_64b.exe?dl=0
Hi so uh,,, my real job is junior programmer of automated tests and sometimes we use AutoIt at work.
But it can work with Windows. So I tried to put something together that "should" launch the KoDP in windowed mode (as you would with the -w) but then sorta tries to align the Windows and put them into your main monitor top left corner, you can move them later.
The idea for that came from user named jerfa who did something similar in python. The AutoIt script does not need python installed. AutoIt can do .exe version of the scripts, so I did two of them,
Now the problém is, would there be a volunteer to test it, it works for me.
The source code for the AutoIt, if you want to try is this:
;-----------------------------------------------------------------------------------------------------------
RunKingOfDragonPass()
Func RunKingOfDragonPass()
$aGame = "KoDP.exe -w"
Run($aGame)
Local $aMainWindow = WinWaitActive("mTropolis Windows Player - mPlayer")
Local $aMainControl = ControlGetHandle($aMainWindow,"","")
ControlMove($aMainControl,0,0,0,0)
WinMove($aMainWindow,"",0,0,650,550)
EndFunc
;-----------------------------------------------------------------------------------------------------------
and you run it from the same folder as the game is. You stil need to forbid it from runnin in 640x480 mode though
The script as .exe runnables are here:
https://www.dropbox.com/s/yw8v7uj187b5l96/KoDP-Windowed_32b.exe?dl=0
https://www.dropbox.com/s/dxl34xhi8cyw8qy/KoDP-Windowed_64b.exe?dl=0
Post edited March 18, 2016 by Noir_CZ