06-02-2022 14:13
06-02-2022 14:13
I got weary of moving the Fitbit sim settings window to where I want it whenever it reopens, so I wrote a simple AutoHotKey script to do it automatically:
Loop {
WinWait, Companion Settings
WinMove, , , 3435, -47
WinWaitClose, Companion Settings
}
3435,-47 are pixel x,y co-ordinates on your desktop.
You'll probably want to stop the script when you've finished your debugging session. (I wrote a script to do that too.)
Obviously you can move the sim device window as well, but this only needs to be done once because it doesn't reopen whenever you restart your app.
This will only work in MS Windows.
06-02-2022 21:34