Skip to content
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

Open
chwt163 opened this issue Nov 4, 2023 · 6 comments
Open

关于延迟 #31

chwt163 opened this issue Nov 4, 2023 · 6 comments
Labels
enhancement New feature or request

Comments

@chwt163
Copy link

chwt163 commented Nov 4, 2023

win10,把快捷方式放到开始菜单里面,然后在开始菜单里面打开程序,这个时候的截图会有开始菜单的残影。

能不能程序启动后,延迟几毫秒再截图?

另外,建议在程序功能栏那里增加一个延迟3-5秒截图的按钮,因为如果要对右键弹出菜单进行截图,好像只能通过延迟截图才能实现?

@xland
Copy link
Owner

xland commented Nov 5, 2023

建议很好,记下了,有时间就优化

@xland xland added the enhancement New feature or request label Nov 5, 2023
@xland
Copy link
Owner

xland commented Nov 14, 2023

顺便提一句,建议用AutoHotKey做个系统级快捷键,这样就不要在开始菜单里去启动截图了

@wha4up
Copy link

wha4up commented Nov 20, 2023

作为鼠标手势的补充功能挺好用的

@Mikachu2333
Copy link
Contributor

@chwt163 为啥不通过ahk写快捷键的时候加个延迟呢?这多简单啊,还不用求人(

@chwt163
Copy link
Author

chwt163 commented Dec 8, 2024

@chwt163 为啥不通过ahk写快捷键的时候加个延迟呢?这多简单啊,还不用求人(

是的,但很多人连快捷方式怎么创建都不知道,更不要说延迟启动了。

@Mikachu2333
Copy link
Contributor

Mikachu2333 commented Dec 8, 2024

@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
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

4 participants