Search found 10 matches
- 01 May 2024, 07:32
- Forum: Scripts and Functions (v1)
- Topic: [Script] WinHole
- Replies: 19
- Views: 10137
Re: [Script] WinHole
Dragging files from Explorer to other programs used to be such a pain, but with your script (and a couple of tiny tweaks), it's now a breeze! You've saved me so much time and frustration, and I can't express how grateful I am!
- 02 Jun 2019, 06:27
- Forum: Ask for Help (v1)
- Topic: How to make the GUI appear immediately
- Replies: 3
- Views: 902
How to make the GUI appear immediately
When I use the hotkey to show this GUI, there is always a delay in its appearance. I think it's the window animation effect causes this delay. Is there any way to get rid of the animation effect so that the GUI can appear as instantly as the right-click menu?
- 19 May 2019, 07:11
- Forum: Ask for Help (v1)
- Topic: Right mouse button is pressed more than 300 ms, trigger action
- Replies: 5
- Views: 1509
Re: Right mouse button is pressed more than 300 ms, trigger action
hi vsub, Thank you very much for your quick reply. I tested your script and the long press can trigger the action. However, it cannot open the normal right-click menu. I modified it to this and it worked: $RButton:: Keywait,RButton,t0.3 If Errorlevel = 1 Msgbox,More than 300ms Else { Suspend on Clic...
- 19 May 2019, 03:51
- Forum: Ask for Help (v1)
- Topic: Right mouse button is pressed more than 300 ms, trigger action
- Replies: 5
- Views: 1509
Right mouse button is pressed more than 300 ms, trigger action
What I want: The right mouse button is pressed more than 300 ms, Even if I don't release the right button, it triggers the action. If the right mouse button is released less than 300 ms, trigger the original right-click function. I tried: The SetTimer. It must release the right mouse button to trigg...
如何控制鼠标释放
按住ctrl时,鼠标左键单击马上释放鼠标(不让鼠标长按超过一定的时间)如何实现?
- 03 Mar 2015, 10:45
- Forum: 请求帮助
- Topic: 如何控制某一个程序的音量?
- Replies: 3
- Views: 3398
Re: 如何控制某一个程序的音量?
谢谢,借助nircmd成功实现。tmplinshi wrote:搜索了下论坛 http://www.autohotkey.com,相关的主题比较少。lexikos 的一个函数 VA.ahk 里面有相关的代码,但并不能直接使用。
命令行工具 nircmd 有这个功能,有三个命令 setappvolume、changeappvolume 和 muteappvolume。
- 02 Mar 2015, 09:19
- Forum: 请求帮助
- Topic: 如何控制某一个程序的音量?
- Replies: 3
- Views: 3398
如何控制某一个程序的音量?
win7系统托盘的音频合成器可以单独设置某一个应用程序的声音。AutoHotkey能不能实现同样的功能?
查看了SoundSet的说明,貌似不能。
查看了SoundSet的说明,貌似不能。
- 15 Aug 2014, 04:13
- Forum: Ask for Help (v1)
- Topic: Problem getting Photoshop tool panel WM_COMMAND
- Replies: 14
- Views: 4972
Re: Problem getting Photoshop tool panel WM_COMMAND
One way is to check a_ptrsize if its 4 = 32 | 8 = 64 Hmm i'm unsure of the issue as this simply works on my end Besides, I am also wondering if the Vector Edit Tool on the top bar can be selected with your method. I don't know at the moment as i'm not at a pc. I try your code on Photoshop CC 2014 (...
- 12 Aug 2014, 20:31
- Forum: Ask for Help (v1)
- Topic: Problem getting Photoshop tool panel WM_COMMAND
- Replies: 14
- Views: 4972
Re: Problem getting Photoshop tool panel WM_COMMAND
Hi, Blackholyman. Thanks for your sharing. I downloaded PhotoshopTools.ahk but it failed to select the MoveTool when I pressed ctrl+0. It popuped a error window: error1.png Infomation: Windows 7 64-bit SP 1 Photoshop 13.0 x64 (Actually I use PS CC 2014, which failed. So I tried CS6 to get close to y...
- 12 Aug 2014, 03:46
- Forum: Ask for Help (v1)
- Topic: Problem getting Photoshop tool panel WM_COMMAND
- Replies: 14
- Views: 4972
Problem getting Photoshop tool panel WM_COMMAND
I want to use AHK to select tools from Photoshop tool panel via PostMessage. so I tried to get their WM_COMMANDs first. In order to capture WM_COMMAND, I tried Winspector and found it didn't work on Win7. Then I turnd to Window Detective; failed. Finally I found API Monitor. I could get WM_COMMANDs ...