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