Search found 230 matches

by WarlordAkamu67
Today, 06:22
Forum: Gaming
Topic: diablo 2 median xl trigger multiple auras (keys)
Replies: 7
Views: 313

Re: diablo 2 median xl trigger multiple auras (keys)

I started making this before you called out what version you would like to see. As posted above, what was provided does not work for either version for various reasons. I will provide v2 code, since this is the v2 section of the forums. Check out the documentation, and decide how you want the the pr...
by WarlordAkamu67
23 May 2024, 11:09
Forum: Ask for Help (v2)
Topic: When is a text file ready to read?
Replies: 5
Views: 294

Re: When is a text file ready to read?

Hello. This has worked for me, but maybe somebody has a better/more optimal solution. I have AHK that creates text files, then runs JavaScript that reads those files, which in turn creates other text files that AHK reads. I have not run into any issues with it. The spoiler contains some of my code. ...
by WarlordAkamu67
23 May 2024, 08:29
Forum: Ask for Help (v2)
Topic: Help with V2 %clipboard% Topic is solved
Replies: 3
Views: 167

Re: Help with V2 %clipboard% Topic is solved

Hello, try:

Code: Select all

^numpad5::
{
A_Clipboard:=""
SendInput "^c"
ClipWait 1
Run "https://app.hubspot.com/contacts/1234567/record/0-1/" A_Clipboard
}
The variable "A_Clipboard" should not be quoted and "%" are not needed.
by WarlordAkamu67
23 May 2024, 05:42
Forum: Ask for Help (v2)
Topic: Different output depends on how long to hold a key Topic is solved
Replies: 5
Views: 385

Re: Different output depends on how long to hold a key Topic is solved

@akirofe
Thank you for the offer, cheers. :beer:

I am glad to hear it worked out ^.^ ... It is most helpful for topics with solutions to be marked as solved/resolved.
by WarlordAkamu67
22 May 2024, 05:44
Forum: Ask for Help (v2)
Topic: Make ListView selection toggle individual selection Topic is solved
Replies: 5
Views: 376

Re: Make ListView selection toggle individual selection Topic is solved

I changed what I had a bit to behave better. Removed the second function for the double-click, idk why I didn't hook it up to the original function. Thank you very much for providing more approaches and resources! With a few minutes of clicking around, it appears this behaves just as I want it to. ...
by WarlordAkamu67
21 May 2024, 13:35
Forum: Ask for Help (v2)
Topic: Make ListView selection toggle individual selection Topic is solved
Replies: 5
Views: 376

Re: Make ListView selection toggle individual selection Topic is solved

Thank you guys for your time. I did not want to go with checkboxes </3 This is what I ended up with: #Requires AutoHotkey v2.0 deleter := Gui("","File Deleter") demoArray := ["File 1","File 2","File 3"] button_DeleteFiles := deleter.Add("Button", "Default x25 y5 w70 h30", "Delete Files") button_Del...
by WarlordAkamu67
13 May 2024, 06:15
Forum: Ask for Help (v2)
Topic: Make ListView selection toggle individual selection Topic is solved
Replies: 5
Views: 376

Make ListView selection toggle individual selection Topic is solved

Hello. I have a file deleter for old files. It displays the captured files and allows a deselection of files to be made. I would like to convert from a ListBox to a ListView, but I want the selection style of the ListBox. Adding +Multi to the ListBox makes it behave more like the ListView, which is ...
by WarlordAkamu67
11 May 2024, 09:50
Forum: Ask for Help (v2)
Topic: how to store screenshot in a variable, then paste it later?
Replies: 4
Views: 184

Re: how to store screenshot in a variable, then paste it later?

Depending on what you really want, you may be able to send printscreen. Another option is to use a library such as ImagePut by iseahound. Here is GitHub documentation that shows how to use it.
by WarlordAkamu67
09 May 2024, 05:01
Forum: Ask for Help (v2)
Topic: How to define an action if any typing key is pressed?
Replies: 2
Views: 155

Re: How to define an action if any typing key is pressed?

Sorry I can not provide any code at this time. Although you mention wanting to use #HotIf, perhaps you can try with an InputHook() instead.
by WarlordAkamu67
08 May 2024, 05:11
Forum: Ask for Help (v2)
Topic: function doesn't seem to reference a global GUI object variable. Topic is solved
Replies: 2
Views: 231

Re: function doesn't seem to reference a global GUI object variable. Topic is solved

Your function is creating another GUI that can not be referred to later on. I have added two lines and altered one. 1: return(name_GUI) <-- this line returns the newly created gui 2. global mode_GUI <-- allows the f1 function to use the global variable. this can be reduced to just "global" to use bo...
by WarlordAkamu67
19 Apr 2024, 21:32
Forum: Gaming
Topic: Game Randomly Receives Non-Existent Inputs
Replies: 8
Views: 445

Re: Game Randomly Receives Non-Existent Inputs

I did not read the previous posts, but maybe Menu Mask Key?
by WarlordAkamu67
20 Mar 2024, 12:59
Forum: Ask for Help (v2)
Topic: HotKey Sequence
Replies: 4
Views: 89

Re: HotKey Sequence

Hello! Try

Code: Select all

#z::
{
    Send "e"
    KeyWait "LShift", "d"
    KeyWait "LShift", "u"
    Send "ml"
}
by WarlordAkamu67
20 Mar 2024, 11:27
Forum: Ask for Help (v2)
Topic: Numpad on TKL keyboard
Replies: 12
Views: 285

Re: Numpad on TKL keyboard

I have used both Static and Global to make it work. Not sure if Global can replace Static but here goes my updated code. Happy to hear you have been able to get it to work! Here is a demo with global/static/local variables. This is not related to the actual topic so I will hide it in a spoiler. Hit...
by WarlordAkamu67
20 Mar 2024, 06:38
Forum: Ask for Help (v2)
Topic: Different output depends on how long to hold a key Topic is solved
Replies: 5
Views: 385

Re: Different output depends on how long to hold a key Topic is solved

akirofe This will make F3 send Enter on a press, and block mouse movement on a hold. While holding F3, the keys "a", "b", and "c" can be used to display a MsgBox- alter to your liking. #Requires AutoHotkey v2.0 key_is_Held := 0 ; ------------------------- ; ------------------------- ; -------------...
by WarlordAkamu67
20 Mar 2024, 05:53
Forum: Ask for Help (v2)
Topic: GUI with scroll bars
Replies: 1
Views: 127

Re: GUI with scroll bars

There are a few posts about GUI scrolls bars, but I don't know about multiple GUIs. I have used the functions from this post with a GUI.
by WarlordAkamu67
19 Mar 2024, 07:02
Forum: Gaming
Topic: Skillcheck for PVE game Topic is solved
Replies: 2
Views: 250

Re: Skillcheck for PVE game Topic is solved

Hello! You are searching for the yellow bar each time, is that needed? Does the position of the yellow bar change? #Requires AutoHotkey v2.0 yellow := 0 pixelX := 0 Loop { if (GetKeyState("F7")) { if (yellow && PixelGetColor(pixelX, 548) == 0xFBFF00) { while (PixelGetColor(pixelX, 548) == 0xFBFF00) ...
by WarlordAkamu67
18 Mar 2024, 06:35
Forum: Gaming Help (v1)
Topic: OSRS Ahk - Clicking on a monster in random spot
Replies: 7
Views: 538

Re: OSRS Ahk - Clicking on a monster in random spot

It has been awhile since I have used v1. Like I said before, without utilizing a library or some other script, writing your own script is doable; however, it is a slow process. The code below is what I have come up with. You may want to change the CoordMode to window or something. Another option, if...
by WarlordAkamu67
14 Mar 2024, 10:56
Forum: Ask for Help (v2)
Topic: how to make a script a .exe file
Replies: 6
Views: 217

Re: how to make a script a .exe file

samegui.jpg
samegui.jpg (57.83 KiB) Viewed 195 times
by WarlordAkamu67
14 Mar 2024, 05:30
Forum: Ask for Help (v2)
Topic: absolute beginner question looping through excel columns
Replies: 2
Views: 131

Re: absolute beginner question looping through excel columns

Hello! I am unable to contribute much as I do not have the time to test stuff. What you are asking for sounds feasible. You can search through other posts for idea as to what the code would look like, look for topics that are marked as answered. This post has some code to look at as well as links to...
by WarlordAkamu67
12 Mar 2024, 06:32
Forum: Gaming Help (v1)
Topic: OSRS Ahk - Clicking on a monster in random spot
Replies: 7
Views: 538

Re: OSRS Ahk - Clicking on a monster in random spot

The links I provided contain information on the functions and how to use them, for version 2 of AHK. The code you posted uses the same function (command in v1), PixelSearch. What version do you want to write in?

Go to advanced search