Search found 21 matches

by anotherautohotkeyusr
03 Jul 2020, 01:49
Forum: Ask for Help (v1)
Topic: Controlling Windows Firewall Control (WFC) dialogues
Replies: 8
Views: 4130

Re: Controlling Windows Firewall Control (WFC) dialogues

What I really appreciate about WFC is that it works via an approve rather than deny list, and it provides a notification when an application tries to access the internet - presumably from the log files. I would like to know what frameworks can be used in Windows such that AHK cannot find any control...
by anotherautohotkeyusr
02 Jul 2020, 23:50
Forum: Ask for Help (v1)
Topic: Controlling Windows Firewall Control (WFC) dialogues
Replies: 8
Views: 4130

Re: Controlling Windows Firewall Control (WFC) dialogues

At the risk of another snotty reply, the Windows Firewall Control 's keyboard shortcuts are listed on pages 8/9 of the user guide ( https://www.binisoft.org/pdf/guides/Malwarebytes-WFC-User-Guide.pdf ). Note also the specific restriction on scripting/automation in section 2 of the EULA ( https://ww...
by anotherautohotkeyusr
30 Jun 2020, 02:59
Forum: Ask for Help (v1)
Topic: Controlling Windows Firewall Control (WFC) dialogues
Replies: 8
Views: 4130

Re: Controlling Windows Firewall Control (WFC) dialogues

gregster wrote:
29 Jun 2020, 22:38
Also. the Window Spy screenshot clearly doesn't show information for the window pictured above it, but some other window.
Thank you for letting me know. Pain in the neck to get a screen capture of Window Spy. I've updated the image in the OP.
by anotherautohotkeyusr
30 Jun 2020, 02:58
Forum: Ask for Help (v1)
Topic: Controlling Windows Firewall Control (WFC) dialogues
Replies: 8
Views: 4130

Re: Controlling Windows Firewall Control (WFC) dialogues

TAC109 wrote:
29 Jun 2020, 22:33
If firewall rules could be changed easily by software, it wouldn’t be much of a firewall. :lol:
Hmmm...I'll remove my retort.
by anotherautohotkeyusr
29 Jun 2020, 20:44
Forum: Ask for Help (v1)
Topic: Controlling Windows Firewall Control (WFC) dialogues
Replies: 8
Views: 4130

Controlling Windows Firewall Control (WFC) dialogues

Windows Firewall Control (WFC) is software written by Binisoft - recently acquired by MalwareBytes - that manages Windows Defender Firewall rules. WFC does not provide built-in keyboard shortcuts for customizing rules in the Notification Dialogue , so I have spent many hours trying and failing to e...
by anotherautohotkeyusr
19 Oct 2019, 21:33
Forum: Ask for Help (v1)
Topic: KeyWait Fails with XButton1 and XButton2
Replies: 3
Views: 924

Re: KeyWait Fails with XButton1 and XButton2

So... when Logitech Options is running, the issue occurs.
by anotherautohotkeyusr
17 Oct 2019, 07:12
Forum: Ask for Help (v1)
Topic: KeyWait Fails with XButton1 and XButton2
Replies: 3
Views: 924

Re: KeyWait Fails with XButton1 and XButton2

So far, I can't reproduce it. It shows here 'short click' or 'long click', depending on how long I hold XButton1 . (Latest AHK version on Win10... well, I didn't run it as admin, but I don't think that's the reason) Is this your only running and complete script ? Thank you for your reply gregster! ...
by anotherautohotkeyusr
16 Oct 2019, 21:52
Forum: Ask for Help (v1)
Topic: KeyWait Fails with XButton1 and XButton2
Replies: 3
Views: 924

KeyWait Fails with XButton1 and XButton2

AutoHotkey v1.1.31.01 Unicode 64-bit Windows 10 64-bit v1903 build 18362.418 Is this a bug, or my stupidity? KeyWait seems to ignore the key state for XButton x . Here's the test code, executed with no other scripts in memory: If Not A_IsAdmin { Run *RunAs "%A_ScriptFullPath%" ; Requires v1.0.92.01+...
by anotherautohotkeyusr
11 Mar 2019, 00:20
Forum: Notepad++
Topic: Setup Notepad++ for AutoHotkey
Replies: 167
Views: 517008

Re: Setup Notepad++ for AutoHotkey

I also use the LanguageHelp plugin from https://sites.google.com/site/fstellari/nppplugins to provide context sensitive searching of the AutoHotkey help file.


moderation note: fixed legitimate link that was altered by forum spam filter - gregster
by anotherautohotkeyusr
09 Mar 2019, 23:00
Forum: Notepad++
Topic: Enable Function List in Notepad++ for AHK Scripts (with classes now)
Replies: 64
Views: 75994

Re: Enable Function List in Notepad++ for AHK Scripts (with classes now)

For my future reference, I edited the parser so that it is valid XML: <parser displayName="AHK" id ="ahk_function" commentExpr="((/\*.*?\*)/|((?<=[\s]);.*?$))" > <classRange mainExpr="^[ \t]*(class|struct)[ \t]+[\w]+([ \t]+|[ \t]+(extends)[ \t]+)?\w*([\s]|(/\*.*?\*)/|((?<=[\s]);[^\r\n]*?$))*?[\s]*\{...
by anotherautohotkeyusr
22 Feb 2019, 14:04
Forum: Ask for Help (v1)
Topic: Windows Command Prompt Console ~
Replies: 6
Views: 1491

Re: Windows Command Prompt Console ~

Classes in AHK!?! D'oh! Thank you very much for the guidance evilC, it is much appreciated. After seeing your example I am now suspecting that AHK might support arrays, in which case we could eliminate the key specific functions too. This is fun! I'm off to investigate arrays.

-rob-
by anotherautohotkeyusr
21 Feb 2019, 16:08
Forum: Ask for Help (v1)
Topic: Windows Command Prompt Console ~
Replies: 6
Views: 1491

Re: Windows Command Prompt Console ~

Hi evilC, There are certain symbolic characters that are invalid in labels. I wanted the code to be generic, so that it can be functioned to handle any key. ~ is just an example. I wanted the labels to be dynamically generated based on the key. I do not wish to be contrary, however I would ask you t...
by anotherautohotkeyusr
21 Feb 2019, 11:56
Forum: Ask for Help (v1)
Topic: Windows Command Prompt Console ~
Replies: 6
Views: 1491

Windows Command Prompt Console ~

After years of annoyance that the Windows Command Prompt console does not use tilde as Bash et cetera does I had enough and put together the below script. Please share any opportunities you see for improvement. #IfWinActive, ahk_exe cmd.exe ~:: If ( A_ThisHotKey = "~" ) { Key := "Tilde" } Loop, 1 { ...
by anotherautohotkeyusr
29 Oct 2018, 18:33
Forum: Ask for Help (v1)
Topic: Windows.Media.SpeechSynthesis.SpeechSynthesizer Class
Replies: 10
Views: 2697

Re: Windows.Media.SpeechSynthesis.SpeechSynthesizer Class

Can anyone shed light on to how to instantiate a UWP object? If I could get that starting line of code, then I hope I could work out the rest.
by anotherautohotkeyusr
28 Oct 2018, 01:29
Forum: Ask for Help (v1)
Topic: Windows.Media.SpeechSynthesis.SpeechSynthesizer Class
Replies: 10
Views: 2697

Windows.Media.SpeechSynthesis.SpeechSynthesizer Class

Good day everyone, I would like to learn how to use the Windows.Media.SpeechSynthesis.SpeechSynthesizer Class in AutoHotkey, but there do not appear to be any examples of anyone having done this yet. I am really struggling to find AutoHotkey examples of working with Windows 10 API objects. Is there ...
by anotherautohotkeyusr
22 Oct 2018, 12:19
Forum: General Discussion
Topic: Virus detected when compiling from v1.1.30.00
Replies: 15
Views: 13366

Re: Virus detected when compiling from v1.1.30.00

I am getting a Trojan:Win32/Fuery.B!cl detection from Defender with 1.1.30.00. Submitted file to Microsoft.
by anotherautohotkeyusr
22 Oct 2018, 11:26
Forum: Scripts and Functions (v1)
Topic: Taskbar "Automatically hide the taskbar in desktop mode"
Replies: 2
Views: 2827

Taskbar "Automatically hide the taskbar in desktop mode"

Hello fellow AHKers, Apologies in advance if this is redundant, but after years of wanting this; I've finally been able to accomplish it. Turns out it was ridiculously simple, at least in Windows 10. I work via Remote Desktop (RDP/VNC/etc) connections all the time, via a window instead of full scree...
by anotherautohotkeyusr
29 Oct 2015, 20:34
Forum: Off-topic Discussion
Topic: RuneDream Spam
Replies: 12
Views: 6335

Re: RuneDream Spam

lexikos wrote:anotherautohotkeyusr, you say you received spam on an account used with the old forum? What was your username?

Edit: Never mind, I assume it was anotherautohotkeyuser.
:D One character too much for the new board...
by anotherautohotkeyusr
29 Oct 2015, 20:33
Forum: Off-topic Discussion
Topic: RuneDream Spam
Replies: 12
Views: 6335

Re: RuneDream Spam

jNizM wrote:Dunno if this is the same person: http://autohotkey.com/board/topic/15027 ... ls-leaked/
Thank you very much for the link jNizM. I am pleased that the culprit was identified so quickly, and that there were no nefarious actions by this sites administrators. :superhappy:
by anotherautohotkeyusr
28 Oct 2015, 20:40
Forum: Off-topic Discussion
Topic: RuneDream Spam
Replies: 12
Views: 6335

Re: RuneDream Spam

No i have not! Spammers often use lists of great size witch may have already had your email in it... Hi Blackholyman, I am sorry that my message was not clear. I created an extremely unique new e-mail address only for registering at the old forum on this web site. I have never used that e-mail addr...

Go to advanced search