Tôi chỉ muốn một tiện ích nhỏ theo dõi các lần nhấp chuột để khi xảy ra hiệu ứng bong bóng thị giác (hoặc một cái gì đó tương tự) xảy ra, tương tự như một cái gì đó bạn có thể thấy trong một screencast.
Tôi chỉ muốn một tiện ích nhỏ theo dõi các lần nhấp chuột để khi xảy ra hiệu ứng bong bóng thị giác (hoặc một cái gì đó tương tự) xảy ra, tương tự như một cái gì đó bạn có thể thấy trong một screencast.
Câu trả lời:
~LButton::
Send {Ctrl}
return
~LButton UP::
Send {Ctrl}
return
Mỗi lần nhấp chuột (xuống & lên) sẽ bắn Ctrlnhanh.
Như được chỉ ra bởi Paolo, bạn thậm chí có thể thay đổi cài đặt Chuột như một phần của tập lệnh:
DllCall("SystemParametersInfo", UInt, 0x101D, UInt, 0, UInt, 1, UInt, 0) ;SPI_SETMOUSESONAR ON
OnExit, ExitSub
ExitSub:
DllCall("SystemParametersInfo", UInt, 0x101D, UInt, 0, UInt, 0, UInt, 0) ;SPI_SETMOUSESONAR OFF
ExitApp
Đây là một biến thể của câu trả lời của RJFalconer, kết hợp những thay đổi từ Paolo Fulgoni. Tôi không muốn luôn nhìn thấy chuột của mình khi nhấn nút CTRL và tôi hy vọng việc DllInfo
sửa đổi sẽ tự động bật và tắt cài đặt, nhưng tôi không thể làm cho nó hoạt động (tập lệnh sẽ thoát ra). Không nghi ngờ gì ai đó tinh vi hơn trong AHK có thể giải thích những gì tôi đã làm sai, nhưng tôi đã tiếp tục và tạo ra phiên bản của riêng mình.
Nó tự động chuyển tùy chọn "Hiển thị chuột khi nhấn điều khiển" BẬT khi nhấn nút chuột, sau đó chuyển sang TẮT sau đó. Nó hoạt động tốt trong thử nghiệm hạn chế, mặc dù đôi khi con trỏ chuột biến mất sau khi ra mắt. Nếu bất cứ ai biết cách khắc phục nó, hoặc có bất kỳ cải tiến nào khác, vui lòng nhảy vào.
Nó (quá mức) được ghi lại, bởi vì tôi nhanh chóng quên đi mọi thứ và khi tôi cần xem lại, tôi muốn các kịch bản của mình cung cấp đủ thông tin mà tôi không cần tìm kiếm để tìm tất cả các tài liệu tham khảo cũ mà tôi đã sử dụng ở nơi đầu tiên.
;Visualize mouse clicks by showing radiating concentric circles on mouse click
;Author: traycerb
;Date/Version: 01-31-2018
;
;Source:
;/superuser/106815/how-do-you-add-a-visual-effect-to-a-mouse-click-from-within-windows
;https://autohotkey.com/board/topic/77380-mouse-click-special-effects-for-presentationsdemos/
;Dynamically switch on the Windows accessibility feature to show the mouse when the control key is pressed
;when the script is executed, then switch off afterwards
;Windows settings > Mouse > Pointer Options tab > Visibility group > Show location of pointer when I press CTRL key
;Window's SystemParametersInfo function, retrieves or sets the value of one of the
;system-wide parameters. AHK DllCall fxn with SystemParameterInfo parameter is used to access
;this Windows API.
;https://msdn.microsoft.com/en-us/library/windows/desktop/ms724947(v=vs.85).aspx
;BOOL WINAPI SystemParametersInfo(
; _In_ UINT uiAction,
; _In_ UINT uiParam,
; _Inout_ PVOID pvParam,
; _In_ UINT fWinIni
;);
;uiParam [in]
;Type: UINT
;
;A parameter whose usage and format depends on the system parameter being queried or set.
;For more information about system-wide parameters, see the uiAction parameter.
;If not otherwise indicated, you must specify zero for this parameter.
;pvParam [in, out]
;Type: PVOID
;
;A parameter whose usage and format depends on the system parameter being queried or set.
;For more information about system-wide parameters, see the uiAction parameter.
;If not otherwise indicated, you must specify NULL for this parameter.
;For information on the PVOID datatype, see Windows Data Types.
;fWinIni [in]
;Type: UINT
;
;If a system parameter is being set, specifies whether the user profile is to be updated,
;and if so, whether the WM_SETTINGCHANGE message is to be broadcast to all top-level
;windows to notify them of the change.
;This parameter can be zero if you do not want to update the user profile
;or broadcast the WM_SETTINGCHANGE message or it can be set to the following [...]
;Accessibility parameter
;S0x101D PI_SETMOUSESONAR
;Turns the Sonar accessibility feature on or off. This feature briefly
;shows several concentric circles around the mouse pointer when the user
;presses and releases the CTRL key.
;The pvParam parameter specifies TRUE for on and FALSE for off.
;Press the control button each time mouse button is pressed, showing location of mouse pointer.
~LButton::
{
DllCall("user32\SystemParametersInfo", UInt, 0x101D, UInt, 0, UInt, 1, UInt, 0)
Send {Ctrl}
DllCall("user32\SystemParametersInfo", UInt, 0x101D, UInt, 0, UInt, 0, UInt, 0)
return
}
~RButton::
{
DllCall("user32\SystemParametersInfo", UInt, 0x101D, UInt, 0, UInt, 1, UInt, 0)
Send {Ctrl}
DllCall("user32\SystemParametersInfo", UInt, 0x101D, UInt, 0, UInt, 0, UInt, 0)
return
}
#SingleInstance force
dòng để tránh thông báo bật lên gây phiền nhiễu trong khi nhấp đúp.
~
) cho phép hoạt động bình thường của chuột đi qua. Tôi cũng đã sửa đổi ví dụ để không chỉ phát hành nhấp chuột mà cả nhấp chuột nội bộ cũng tạo ra hiệu ứng.