(Formerly filled by Victor@Viev)
What I notice is that when I look up, and my head won't go any higher...so that's as high as the mouse will ever go (and my head)...so that 'has' to be the top of the screen.
The same is true for down/left and right.
eViacam can make small adjustments to the callibration while it's running, and get a feel for the extent of Up/Down and Left/Right movements/boundaries and compensate accordingly.
i.e. Auto-Calibrate on the fly.
I feel this would be a great feature and relatively easy to implement.
Together, I feel these would make the tool so much easier to use.
(Commented by georgn)
Regarding the calibration I am of the opinion that the wizard in Eviacam is rather for the rough estimation of settings that need extensive fine tuning. To me it is not desirable to have to move my face very far in any direction. I like the idea of constant adjustments on the fly but again I suggest to make it an option.
For the moment, I've created a shortcut to center the cursor. Maybe that will be also useful.
iI someone need it, I used autohoykey, pssuspend and a batch file.
For some reason, it is necesary to use a shortcut(lnk) to the bat instead the .bat file.
F9: Restart
F8:Pause
Alt+Z Center Screen
Alt+X: Reading Mode (Middle Click of Mouse)
PsSuspend https://technet.microsoft.com/en-us/sysinternals/bb897540.aspx
AutoHotkey: http://www.autohotkey.com/
This is the code if someone needs it:
File: ResumeEviacam.bat
pssuspend -r eviacam
File: PauseEviacam.bat
pssuspend eviacam
File: Start-Stop.ahk
F8::
Run "D:\RSI\SuspendEviacam.lnk"
Return
F9::
Run "D:\RSI\ResumeEviacam.lnk"
Return
!z::
CoordMode, Mouse, Screen
MouseMove, (A_ScreenWidth // 2), (A_ScreenHeight // 2)
return
!x::
CoordMode, Mouse, Screen
MouseMove, (A_ScreenWidth // 2), (A_ScreenHeight // 2)
mouseclick, middle
return