I want to record the mouse position when the screen recording stops and then have the mouse in the recorded position when I start recording the screen.
Is there a solution for this?
I know no technical solution for this. If you want to avoid mouse pointer jumps while you're cutting video, I propose you move the mouse out of the recorded app/window/screen to the bottom before you stop recording. For screen recording, move it below the task bar. And before starting recording, make sure the mouse is down below out of view, and you move it in after starting. This way your viewers will see the mouse move down and disappear at the bottom, then appear at the bottom and move in. Better than a jump.
Thank you for your answer, but this is not a good method for me.
For now, I'm trying a temporary solution with the following autohotkey codes.
However, it would be better if a similar feature was added to the OBS program.
C:
; Saves the mouse position
^+NumpadSub:: ; Ctrl shift numpad -
MouseGetPos, xpos, ypos
; winTitle = ahk_exe obs64.exe
; Send ^!{NumpadAdd} ; Ctrl+Shift+(Numpad+) 'OBS stop record
; SetKeyDelay, 25, 25
; ControlSend,,^!{NumpadAdd}, %winTitle% ;
return
; The mouse moves to its saved location.
^NumpadMult:: ; Ctrl numpad *
MouseMove, xpos, ypos
return
; The mouse moves to its saved location.
^+NumpadMult:: ; Ctrl shift numpad *
MouseMove, xpos, ypos
return
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.