Search found 11 matches
- 08 Mar 2020, 21:10
- Forum: Ask For Help
- Topic: Send {Rbutton} itself didn't work in Total Commander
- Replies: 0
- Views: 509
Send {Rbutton} itself didn't work in Total Commander
I want to make click Rbutton in edge to play or stop the music, and the other position click Rbutton didn't change. But I found it didn't worked in Total Commander. I had try the other application, it doing well. And try other hotkey to Send {Rbutton}, TC worked too, just can't send itself. Here is ...
- 14 Oct 2019, 04:44
- Forum: Ask For Help
- Topic: Can't send right click to Explore.exe on a tray icon
- Replies: 0
- Views: 367
Can't send right click to Explore.exe on a tray icon
Hello, could somebody help ? ! ! ! When i want to simulate mouse button click on a tray icon . The Explorer.exe process like network connection and sound didn't work, the other worked perfect. Run as admin didn't work too. Here is my code: #SingleInstance Force SetWorkingDir %A_ScriptDir% if not A_I...
- 08 Oct 2019, 02:52
- Forum: Scripts and Functions
- Topic: [LIB] TrayIcon - Sean's TrayIcon for Unicode and 64 bit
- Replies: 77
- Views: 41521
Re: [LIB] TrayIcon - Sean's TrayIcon for Unicode and 64 bit
Thanks for lib. It's awesome. But when i used TrayIcon_Button , the network connection and sound didn't work, the other worked perfect. Run as admin didn't work too. Here is my code: I used RiseUp's version, and add event in listview. Used hWnd as id. And changed TrayIcon_GetInfo() If ( !sExeName ||...
- 07 Oct 2019, 23:51
- Forum: Ask For Help
- Topic: It's any way to actviate system windows like "Date and Time Information" Window and "Network Connections" Window so on Topic is solved
- Replies: 4
- Views: 695
Re: It's any way to actviate system windows like "Date and Time Information" Window and "Network Connections" Window so Topic is solved
So, you want to hide the taskbar, but still have access to a list of tray icons? Is that it? Perhaps this: [LIB] TrayIcon - Sean's TrayIcon for Unicode and 64 bit - AutoHotkey Community https://autohotkey.com/boards/viewtopic.php?f=6&t=1229 Alternatively, the oTrayInfo code, here: GUIs via DllCall:...
- 07 Oct 2019, 07:37
- Forum: Ask For Help
- Topic: It's any way to actviate system windows like "Date and Time Information" Window and "Network Connections" Window so on Topic is solved
- Replies: 4
- Views: 695
Re: It's any way to actviate system windows like "Date and Time Information" Window and "Network Connections" Window so Topic is solved
Run, timedate.cpl ;Date and Time Run, ncpa.cpl ;Network Connections Source: jeeswg's Explorer tutorial - AutoHotkey Community https://autohotkey.com/boards/viewtopic.php?f=7&t=31755 Cheers. Thanks for help. :beer: But it's not what i want.I want display the windows when we click the right bottom da...
- 06 Oct 2019, 23:45
- Forum: Ask For Help
- Topic: It's any way to actviate system windows like "Date and Time Information" Window and "Network Connections" Window so on Topic is solved
- Replies: 4
- Views: 695
It's any way to actviate system windows like "Date and Time Information" Window and "Network Connections" Window so on Topic is solved
Hello,
I want to hidding task bar, and use short cut to actviate application of tray, and other like "Date and Time Information" Window and "Network Connections" Window , and so on.
It's any way to make it?
So happy if somebody can help.
I want to hidding task bar, and use short cut to actviate application of tray, and other like "Date and Time Information" Window and "Network Connections" Window , and so on.
It's any way to make it?
So happy if somebody can help.
- 06 Oct 2019, 22:35
- Forum: Ask For Help
- Topic: Activate chrome can't use shortcut, only after click can use shortcut Topic is solved
- Replies: 2
- Views: 362
Re: Activate chrome can't use shortcut, only after click can use shortcut Topic is solved
boiler wrote: ↑06 Oct 2019, 11:49Works for me, but maybe try this so it automatically clicks on the window after activating it:Code: Select all
CoordMode, Mouse, Window WinActivate,ahk_exe chrome.exe WinWaitActive,ahk_exe chrome.exe Click, 10, 5
Thanks for help.
- 06 Oct 2019, 11:38
- Forum: Ask For Help
- Topic: Activate chrome can't use shortcut, only after click can use shortcut Topic is solved
- Replies: 2
- Views: 362
Activate chrome can't use shortcut, only after click can use shortcut Topic is solved
when i use code like below activating chrome, I use shortcut like Ctrl + T doesn't work, only after I use mouse cilck, Ctrl + T worked. So happy if someone can help .
Code: Select all
WinActivate,ahk_exe chrome.exe
- 27 Nov 2018, 07:28
- Forum: Ask For Help
- Topic: "Send, ^{key}" doesn't work in Microsoft-Word Occasionally
- Replies: 4
- Views: 614
Re: "Send, ^{key}" doesn't work in Microsoft-Word Occasionally
maybe try a:: Send,^i return b:: Send,^b return should do the same thing though thanks for help . it's so weird. it doesn't work just started. Many times later, it works !!!! I have change nothing! actually , I have tried to used " send " first , It doesn't work . after that, I change to used "send...
- 26 Nov 2018, 20:42
- Forum: Ask For Help
- Topic: "Send, ^{key}" doesn't work in Microsoft-Word Occasionally
- Replies: 4
- Views: 614
Re: "Send, ^{key}" doesn't work in Microsoft-Word Occasionally
Thanks for help.Rohwedder wrote: ↑26 Nov 2018, 11:46Hallo,
only at try:Code: Select all
$a up::SendInput, ^i $b up::SendInput, ^b
but still the same result~~~
other application works well, just doesn't work in Microsoft Word once in a while
- 26 Nov 2018, 05:30
- Forum: Ask For Help
- Topic: "Send, ^{key}" doesn't work in Microsoft-Word Occasionally
- Replies: 4
- Views: 614
"Send, ^{key}" doesn't work in Microsoft-Word Occasionally
script:
i want to change the word's format in Microsoft-Word by sending shortcut key, sometimes it works , sometimes just send the key, without ctrl.
you can see the phenomenon from gif .
thanks for help.
Code: Select all
a::
SendInput,^i
return
b::
SendInput ,^b
return
you can see the phenomenon from gif .
thanks for help.