Search found 20 matches

by homezonebenny
14 Apr 2022, 11:17
Forum: 脚本函数
Topic: AHK源代码加密器 v3.3
Replies: 148
Views: 138735

Re: AHK源代码加密器 v3.2

Wow, thanks for the quick response! If you open the compiled .exe file with Notepad++ you can find something like this in it: <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:v3="urn:schemas-microsoft-com:asm.v3"><assemblyIdentity version="1.1.00.00" name="AutoHotkey" t...
by homezonebenny
13 Apr 2022, 12:21
Forum: 脚本函数
Topic: AHK源代码加密器 v3.3
Replies: 148
Views: 138735

Re: AHK源代码加密器 v3.2

I have a script which will be compiled to an .exe file. But this script needs to put a "sdelete64.exe" file into the user %temp% path. You do that with: FileInstall, sdelete64.exe, %temp%\sdelete64.exe, 1 But if you Encrypt this script now with the method of this post, nothing happening anymore. The...
by homezonebenny
09 Jan 2018, 01:24
Forum: Gaming Help (v1)
Topic: LeftClick rapidfire with modifier and a last LeftClick on key release?! Topic is solved
Replies: 5
Views: 2521

Re: LeftClick rapidfire with modifier and a last LeftClick on key release?! Topic is solved

My last script (after EDIT) do exactly what you want! Just copy paste it. Go into Diablo 3 Hotkey Menu. Change 1 2 3 4 to: Q W E R "Force standing still" on SHIFT "Force movement" on SPACE Now you can use 1 2 3 4 5 6 and so on for: Quest Menu, Paragon, Archivements and so on. However you like it. Wi...
by homezonebenny
08 Jan 2018, 05:49
Forum: Gaming Help (v1)
Topic: LeftClick rapidfire with modifier and a last LeftClick on key release?! Topic is solved
Replies: 5
Views: 2521

LeftClick rapidfire with modifier and a last LeftClick on key release?! Topic is solved

I have a short question: How can I produce a "rapidfire" hotkey when holding CTRL + Left Click?! When I release one of both, the rapidfire have to stop AND do one last Left Click. #IfWinActive Diablo III ahk_class D3 Main Window Class CapsLock::Ctrl Ctrl::Alt <!$LButton:: Loop { Click, L sleep 25 If...
by homezonebenny
22 May 2017, 04:13
Forum: Ask for Help (v1)
Topic: WinActive - If question
Replies: 4
Views: 1594

Re: WinActive - If question

@Rohwedder Thanks for your posts. For the question 3. It's not working since OBS Studio is Multiplatform. See the post my posts here: https://autohotkey.com/boards/viewtopic.php?f=5&t=18720&p=149558 For question 1. I knew that the syntax is wrong. That's why I asked for a method to ask for ahk_clas...
by homezonebenny
22 May 2017, 03:56
Forum: Ask for Help (v1)
Topic: Automatically Switching Scenes in OBS
Replies: 10
Views: 11529

Re: Automatically Switching Scenes in OBS

But it's the same with: !6:: { controlSend,,^!{Numpad3}, ahk_class Qt5QWindowIcon return } And the win key is not in it. I'll try it that way. I'm using a complete automatic scene switcher AHK script. And it only works when I put the controlSend 3x in it... So it works 100% of time. with 2x it works...
by homezonebenny
20 May 2017, 22:07
Forum: Ask for Help (v1)
Topic: Automatically Switching Scenes in OBS
Replies: 10
Views: 11529

Re: Automatically Switching Scenes in OBS

Hi, I know that's a bit older post. But I use this: #o:: controlSend,, ^!{Numpad3},ahk_class Qt5QWindowIcon return Just for testing switching the OBS scene. I have a much longer scene switcher script. But it wont switch my OBS scenes. I set them to: CTRL + ALT + NUM 0 up to 9 So I tested it with Num...
by homezonebenny
20 May 2017, 19:43
Forum: Ask for Help (v1)
Topic: WinActive - If question
Replies: 4
Views: 1594

WinActive - If question

Hi, I have a short question about a IF with WinActive. I use a simple script like that: SetTimer,IsActive,300 return ;Halts script on first run to prevent misfire. ; CTRL + ALT + (num) 0 IsActive: if(WinActive(StarCraft II ahk_class StarCraft II)) { if(SentKey0 = "") ;Verify key wasn't already fired...
by homezonebenny
14 May 2017, 07:34
Forum: Gaming Help (v1)
Topic: Auto use of a hotkey?!
Replies: 3
Views: 1716

Re: Auto use of a hotkey?!

Wow, first I really have to thank you for the help. I did not look into this post for a while now. I really, really have to thank you. Now the thing is. Will this AHK script take less power than a little program which checks for active windows -> press hotkey?! I'm pretty sure there are some small t...
by homezonebenny
10 May 2017, 04:39
Forum: Gaming Help (v1)
Topic: Auto use of a hotkey?!
Replies: 3
Views: 1716

Auto use of a hotkey?!

Hi, is there any chance that I can do the following (automated): 1. When I enter game X autohotkey press a defined hotkey 2. When I leave the game X autohotkey press a defined hotkey 3. When I click on browser (focus) or on Desktop, autohotkey press a defined hotkey Why I'm asking? Well. I have defi...
by homezonebenny
21 Jan 2017, 20:38
Forum: Ask for Help (v1)
Topic: Hide Taskbar + Start Netflix + Always on top
Replies: 5
Views: 2658

Re: Hide Taskbar + Start Netflix + Always on top

@qwerty12: Thanks a lot! Got it to work this way: #n:: { ToggleAutoHideTaskBar() if (!(nfhWnd := WinExist("Netflix ahk_class ApplicationFrameWindow"))) { RunWait netflix://,, UseErrorLevel if (!ErrorLevel) { ; 0 means success WinWait Netflix ahk_class ApplicationFrameWindow,, 3 if (!ErrorLevel) { W...
by homezonebenny
19 Jan 2017, 17:54
Forum: Ask for Help (v1)
Topic: Hide Taskbar + Start Netflix + Always on top
Replies: 5
Views: 2658

Re: Hide Taskbar + Start Netflix + Always on top

@enter8: Registry would mean, it's permanent. That's not what I'm searching for. And registry means that I would need to restart, that it's activated?! O.o @ManualColdLock: Ok I'll have a look into that. Even when the Mouseclick thing seems a bit strange. Let's find out if there is a Windows Hotkey ...
by homezonebenny
17 Jan 2017, 21:24
Forum: Ask for Help (v1)
Topic: Hide Taskbar + Start Netflix + Always on top
Replies: 5
Views: 2658

Hide Taskbar + Start Netflix + Always on top

Hi, at the moment I use this script: #o:: Winset, Alwaysontop, , A return To make a windows "always on top". I like to use my Windows Taskbar. I always have it visible. But when I want to play a game in Fullscreen (Windowed) mode + watch netflix (in a small window, down left corner) I make the Taskb...
by homezonebenny
16 Dec 2016, 09:42
Forum: Gaming Help (v1)
Topic: Different behaviour BUT same script?! (middle click macro) Topic is solved
Replies: 2
Views: 1592

Re: Different behaviour BUT same script?! (middle click macro) Topic is solved

I guess I found the solution: #IfWinActive World of Warcraft ahk_class GxWindowClass *$MButton:: Send, {Blind}{F3}{MButton} return #IfWinActive I tested around with the * in front of the hotkey. But it wasn't working. Because it did not send the SHIFT / CTRL / ALT modificators. But with {Blind} it'...
by homezonebenny
16 Dec 2016, 08:15
Forum: Gaming Help (v1)
Topic: Different behaviour BUT same script?! (middle click macro) Topic is solved
Replies: 2
Views: 1592

Different behaviour BUT same script?! (middle click macro) Topic is solved

Hi, I rebound my "Middle Click" of my mouse to F3 to make this script work: #IfWinActive World of Warcraft ahk_class GxWindowClass $F3:: Send, {F3}{MButton} return #IfWinActive When I press F3 it press: F3 and MiddleClick at the same time When I hold down SHIFT and press F3 it press: SHIFT + F3 and ...
by homezonebenny
16 Dec 2016, 06:48
Forum: Gaming Help (v1)
Topic: Middle Click / F3 Topic is solved
Replies: 6
Views: 59523

Re: Middle Click / F3 Topic is solved

Thanks for your response. I'm a programmer aswell. Mainly in the Web (building website for my living, HTML / CSS, JavaScript, PHP / MySQL sometimes Java). So it's not that big of a deal to code with AHK. It's just the time to look into how everything works. Normally I should read the documentation o...
by homezonebenny
11 Dec 2016, 22:24
Forum: Gaming Help (v1)
Topic: Middle Click / F3 Topic is solved
Replies: 6
Views: 59523

Re: Middle Click / F3 Topic is solved

Thanks, helped alot. Didn't know about $ this simple change fixed it: ;Middle Click Macro $F3:: Send, {F3}{MButton} return About chrome. I realised that it's only in chrome, that you can't active / deactivate the scrolling middle click feature (while moving the mouse). Because F3 enables the "search...
by homezonebenny
08 Dec 2016, 01:27
Forum: Gaming Help (v1)
Topic: Middle Click / F3 Topic is solved
Replies: 6
Views: 59523

Re: Middle Click / F3 Topic is solved

Thx @hugin: ;Middle Click Macro F4:: Send, {F3}{MButton} return This script is (nearly) working. 1. Open Google Chrome 2. Press F3 (without any script) = it opens the "search menu" in the right top corner (normal F3 behaviour) 3. Press MiddleMouseButton = it opens the scroll menu. Press Middle Click...

Go to advanced search