Search found 1361 matches

by Nextron
04 Feb 2019, 16:37
Forum: Forum Issues
Topic: Requesting an Admin to handle a spam post
Replies: 19
Views: 5044

Re: Requesting an Admin to handle a spam post

Spam Officer are already here: https://www.autohotkey.com/boards/memberlist.php?mode=group&g=10 ;) I think a big problem is that -by default- phpBB doesn't give much options to prevent/combat this behavior, which forces the use of modifications, which can be cause problems with updates of the forum ...
by Nextron
04 Feb 2019, 14:24
Forum: Forum Issues
Topic: Requesting an Admin to handle a spam post
Replies: 19
Views: 5044

Re: Requesting an Admin to handle a spam post

More like an exploit of a legit feature. When you're quoted you will get a notification. The spam posts just add a quote tag for as many user names as is possible, regardless of whether you've posted in those topics.
by Nextron
04 Feb 2019, 13:39
Forum: Forum Issues
Topic: Requesting an Admin to handle a spam post
Replies: 19
Views: 5044

Re: Requesting an Admin to handle a spam post

User is banned. But with 7 posts full of quotes triggering e-mail notifications, you may still get some delayed ones.
by Nextron
19 Jan 2019, 07:52
Forum: Ask for Help (v1)
Topic: Order of pressing modifier keys affects the result
Replies: 51
Views: 12540

Re: Order of pressing modifier keys affects the result

After you used the hotkey, go to AHK's key history and copy/paste the output here.
by Nextron
18 Jan 2019, 12:33
Forum: Ask for Help (v1)
Topic: Order of pressing modifier keys affects the result
Replies: 51
Views: 12540

Re: Order of pressing modifier keys affects the result

This explains it pretty well:https://autohotkey.com/docs/Hotkeys.htm#combo
So for Control, Shift, Alt or Windows, I'd stick with ^, +, ! and #.
by Nextron
16 Jan 2019, 12:34
Forum: Ask for Help (v1)
Topic: Order of pressing modifier keys affects the result
Replies: 51
Views: 12540

Re: Order of pressing modifier keys affects the result

Any reason you're using custom combination hotkeys for modifier keys instead of the conventional way?

Code: Select all

<#Right::Send {End}
<#+Right::Send +{End}
by Nextron
01 Jan 2019, 11:04
Forum: Ask for Help (v1)
Topic: Lenovo Legion Y520 Keys Replacement
Replies: 2
Views: 1778

Re: Lenovo Legion Y520 Keys Replacement

Run the code below, press the key you want to identify and then press F5 to see if the button is identified. #Persistent #InstallKeybdHook KeyHistory I think the keyboard outputs F22 (Y530 does so), so try something like: F22::Home . Although there is a chance the Lenovo software intercepts it in or...
by Nextron
11 Dec 2018, 06:48
Forum: Ask for Help (v1)
Topic: Numpad script in double figs
Replies: 4
Views: 1087

Re: Numpad script in double figs

You have a key which has the number '10' on it?
by Nextron
10 Dec 2018, 13:06
Forum: Ask for Help (v1)
Topic: can Loop help repeated "Send" more steady
Replies: 8
Views: 1914

Re: can Loop help repeated "Send" more steady

To target browser elements, I usually send ^f///' to search for the matching (or nearest selectable) text/link.
by Nextron
10 Dec 2018, 12:58
Forum: Ask for Help (v1)
Topic: Does IsWinPartiallyHidden exists? Topic is solved
Replies: 5
Views: 1107

Re: Does IsWinPartiallyHidden exists? Topic is solved

A while ago I needed something similar. I couldn't find such a function. I thought about getting all windows z-order and checking whether the bounding coordinates encompassed the target window bounding coordinates or vice versa, but with transparancy and non-rectangular overlapping windows that woul...
by Nextron
10 Dec 2018, 12:45
Forum: Ask for Help (v1)
Topic: Enable / disable specific USB port?
Replies: 3
Views: 940

Re: Enable / disable specific USB port?

Although it's possible to logically disable a USB root hub or perhaps individual ports, which would prevent devices from being detected. The fan is probably not a true USB device, but merely uses the USB's power line. The lines between ports maybe have some polarity protection, but aren't usually sh...
by Nextron
08 Dec 2018, 10:10
Forum: Ask for Help (v1)
Topic: Tradestation Windows
Replies: 2
Views: 624

Re: Tradestation Windows

Get all relevant window handles so you can individually identify them. But you need to still find a way to differentiate them.

Code: Select all

WinGet,Tradestation,List,TradeStation
Loop,% Tradestation {
	WinGetTitle,Title,% "ahk_id " Tradestation%A_Index%
	MsgBox,% Title
}
by Nextron
08 Dec 2018, 08:54
Forum: Ask for Help (v1)
Topic: Cannot find my keys' codes Topic is solved
Replies: 14
Views: 3528

Re: Cannot find my keys' codes Topic is solved

It's becoming difficult. :silent:

There's quite a bunch of multimedia keys, that may not be on your keyboard: https://autohotkey.com/docs/KeyList.htm#multimedia
by Nextron
07 Dec 2018, 08:26
Forum: Gaming Help (v1)
Topic: changing hotkeys in warcraft 3
Replies: 1
Views: 901

Re: changing hotkeys in warcraft 3

After you read the remapping page, you probably know what to do. Maybe you need to take a look at the Key list too, but I doubt it.

Mod edit: Moved to gaming.
by Nextron
07 Dec 2018, 08:23
Forum: Ask for Help (v1)
Topic: Cannot find my keys' codes Topic is solved
Replies: 14
Views: 3528

Re: Cannot find my keys' codes Topic is solved

Too bad... if those keys don't work it's likely that other keys not commonly found on regular keyboards will not work either. I think your next best option would be the numpadkeys of the mode you normally don't use. So NumpadHome instead of Numpad7 (or reversed) etc.
by Nextron
07 Dec 2018, 07:48
Forum: Ask for Help (v1)
Topic: How do I find what's causing the delay? Topic is solved
Replies: 7
Views: 1712

Re: How do I find what's causing the delay? Topic is solved

Good to hear that. So you can work around by just using AHK?
Only thing that remains is to find out whether the 'anonymous' part works?
by Nextron
06 Dec 2018, 16:54
Forum: Gaming Help (v1)
Topic: xbutton2 bind help
Replies: 1
Views: 780

Re: xbutton2 bind help

Read up on this page: https://autohotkey.com/docs/misc/Remap.htm
You already have the correct names for the key/button, just substitute them in the first example.
by Nextron
06 Dec 2018, 16:43
Forum: Ask for Help (v1)
Topic: Name of the activated window Topic is solved
Replies: 2
Views: 796

Re: Name of the activated window Topic is solved

Each window or control has a unique ID, also known as a HWND (short for handle to window). This ID can be used to identify the window or control even if its title changes. The ID of a window is typically retrieved via WinExist() or WinGet. The ID of a control is typically retrieved via ControlGet H...
by Nextron
06 Dec 2018, 16:30
Forum: Ask for Help (v1)
Topic: How do I find what's causing the delay? Topic is solved
Replies: 7
Views: 1712

Re: How do I find what's causing the delay? Topic is solved

Perhaps the release of LCtrl triggers the delay through the custom clipboard? I'm just speculating.. is that custom clipboard really required? On the other hand, if testing is not really possible sine it's a production setup (?), it becomes a slow testing route.

Go to advanced search