-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
关于延迟 #31
Labels
enhancement
New feature or request
Comments
建议很好,记下了,有时间就优化 |
顺便提一句,建议用AutoHotKey做个系统级快捷键,这样就不要在开始菜单里去启动截图了 |
作为鼠标手势的补充功能挺好用的 |
@chwt163 为啥不通过ahk写快捷键的时候加个延迟呢?这多简单啊,还不用求人( |
是的,但很多人连快捷方式怎么创建都不知道,更不要说延迟启动了。 |
emm,总感觉这东西不属于软件本体应尽的义务( 顺手给个示例: /*
C:\Users\[UserName]\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\ScreenCapture.ahk
^ : Ctrl
! : Alt
+ : Shift
# : Win
The hotkey is Ctrl+Alt+A
*/
^!A::{
Sleep 30 ;注:1000代表1秒
Run "D:\path\to\ScreenCapture.exe" '--dir:"D:\dir\to\save"'
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
win10,把快捷方式放到开始菜单里面,然后在开始菜单里面打开程序,这个时候的截图会有开始菜单的残影。
能不能程序启动后,延迟几毫秒再截图?
另外,建议在程序功能栏那里增加一个延迟3-5秒截图的按钮,因为如果要对右键弹出菜单进行截图,好像只能通过延迟截图才能实现?
The text was updated successfully, but these errors were encountered: