STEAM 组
Steam Client Beta SteamBeta
STEAM 组
Steam Client Beta SteamBeta
9,557
游戏中
67,285
在线
成立于
2013 年 1 月 8 日
所有讨论 > Beta Feedback > 主题详情
Stutterteturtle 2024 年 6 月 27 日 下午 7:14
How do I hide mouse cursor?
Recorded video shows mouse cursor. is there any way to hide mouse cursor?
最后由 Stutterteturtle 编辑于; 2024 年 6 月 27 日 下午 7:14
< >
正在显示第 1 - 1 条,共 1 条留言
Pandro 10 月 19 日 下午 1:21 
Not as an option by the steam client as far as I can tell.
I've been annoyed by the same issue and found a work-a-round that is acceptable for me.
Obviously it doesn't replace a proper solution like an option that hides the mouse cursor from the recording entirely.

Depending on your usecase a work-a-round might be to have a script running that moves the cursor into a corner of your screen when the cursor hasn't moved for a while.

A simple script using AutoHotkey could be for example:
#SingleInstance CoordMode("Mouse", "Screen") SetTimer(CheckIdle, 250) CheckIdle() { MouseGetPos(&lastX, &lastY) Sleep(10000) MouseGetPos(&nowX, &nowY) if (lastX == nowX and lastY == nowY) { MonitorGet(1, &left, &top, &right, &bottom) MouseMove(right, bottom) } }

I hope this helps anyone looking for *some* solution.
< >
正在显示第 1 - 1 条,共 1 条留言
每页显示数: 1530 50

所有讨论 > Beta Feedback > 主题详情