Search found 3461 matches

by guest3456
01 Jul 2023, 00:18
Forum: Off-topic Discussion
Topic: Technical difference between Robotic Process Automation (RPA) and Test Automation Tools?
Replies: 8
Views: 8297

Re: Technical difference between Robotic Process Automation (RPA) and Test Automation Tools?

tank wrote:
28 Jun 2023, 08:51
what has that to do with the question
nothing, because this entire thread is spam, just so the OP could post a backlink to his personal website, and then get his minion bots to respond to his thread to pump up its relevance
by guest3456
30 Jun 2023, 09:32
Forum: Ask for Help (v2)
Topic: Mousemove doesnt work in a vitrual machine
Replies: 5
Views: 633

Re: Mousemove doesnt work in a vitrual machine

it never worked for me on ahk v1 for years inside virtualbox

i always had to use SetCursorPos

Code: Select all

DllCall("SetCursorPos", "int", 200, "int", 100)
by guest3456
29 Jun 2023, 08:57
Forum: Ask for Help
Topic: How to use autohotkey_H in C++
Replies: 3
Views: 1215

Re: How to use autohotkey_H in C++

I found the project of HotkeyIT on GitHub, and AutoHotkey_H master branch contains lib and exp files without header files or function names. I don't know how to use the AHKDll project either. https://github.com/HotKeyIt/ahkdll this is just the source code for the project I also found AutoHotkey_H v...
by guest3456
21 Jun 2023, 12:50
Forum: AutoHotkey Development
Topic: The meaningless "Invalid memory read/write"
Replies: 14
Views: 3770

Re: The meaningless "Invalid memory read/write"

Unless someone can tell me what exactly is wrong with this line of code and how to modify it to not report an error. If RegExMatch(st, "i)\b([a-zA-Z0-9]{40})\b", &v) how do you use the v variable prior? perhaps that is the problem? Reporting an error on a normal line of code that meets all the rule...
by guest3456
21 Jun 2023, 12:44
Forum: Bug Reports
Topic: [v2.0.2] Unexpected control creation after error Topic is solved
Replies: 7
Views: 954

Re: [v2.0.2] Unexpected control creation after error Topic is solved

RaptorX wrote:
21 Jun 2023, 12:14
I did not, I posted this bug before 2.0.3 was available :P
i was talking about lexikos, he didnt put out an announcement about the new release with the changelog
by guest3456
21 Jun 2023, 06:29
Forum: Bug Reports
Topic: [v2.0.2] Unexpected control creation after error Topic is solved
Replies: 7
Views: 954

Re: [v2.0.2] Unexpected control creation after error Topic is solved

lexikos wrote:
20 Jun 2023, 03:51
v2.0.3
looks like you missed an annoucement post for this
by guest3456
17 Jun 2023, 08:48
Forum: AutoHotkey Development
Topic: [Suggestion] A new icon
Replies: 9
Views: 1214

Re: [Suggestion] A new icon

a nice icon design for sure.. most suggestions are no good, but this one is really nice
by guest3456
15 Jun 2023, 18:03
Forum: Off-topic Discussion
Topic: meme: editors
Replies: 1
Views: 3402

Re: meme

Image
by guest3456
15 Jun 2023, 17:59
Forum: Ask for Help (v2)
Topic: Why is this code not v2? can someone help me?
Replies: 3
Views: 273

Re: Why is this code not v2? can someone help me?

just never use thte 'command' syntax in v2 and then you'll be fine

all old commands are now functions, so just use function syntax

Code: Select all

MsgBox("Found a certain green pixel at " x "," y)
v2 shouldve never pivoted and brought back the command syntax mid way
by guest3456
14 Jun 2023, 12:26
Forum: About This Community
Topic: Constructive criticism
Replies: 24
Views: 8764

Re: Constructive criticism

the biggest mistake was not creating a new extension for v2

.ahk2 would have solved much of this

i am hugely against hiding v1... v1 will likely be the prevalent version for many years in the future, maybe even forever
by guest3456
27 May 2023, 21:27
Forum: Ask for Help (v1)
Topic: recognizing touchpad input
Replies: 2
Views: 460

recognizing touchpad input

touchpads have built in gesture features, such as swiping up/down with two fingers to initiate scrolling how can we detect this type of input in AHK? and then create and detect our own gestures? there is a free app called GestureSign which does this, but the source is in C# so i wouldn't even know w...
by guest3456
22 May 2023, 10:47
Forum: Ask for Help (v2)
Topic: Don't understand this v1 to v2 syntax conversion
Replies: 7
Views: 828

Re: Don't understand this v1 to v2 syntax conversion

now I'm just wondering if I would be seeing more assertions popping up and interrupting the execution of various hotkeys without functions being assigned to the ErrorLevel variable, or if removing the assignments and running the functions without them would result in seeing fewer unnecessary interr...
by guest3456
20 May 2023, 06:39
Forum: Ask for Help (v2)
Topic: Don't understand this v1 to v2 syntax conversion
Replies: 7
Views: 828

Re: Don't understand this v1 to v2 syntax conversion

In this case, I mainly wasn't sure why the v1 to v2 script conversion added a lot of these ErrorLevel assignments (which again, as you explained, actually doesn't make sense in this context) the converter doesn't scroll through your entire script to know what variables you use or not. instead, it m...
by guest3456
19 May 2023, 11:40
Forum: Ask for Help (v2)
Topic: Best practices for obscuring sensitive information Topic is solved
Replies: 5
Views: 540

Re: Best practices for obscuring sensitive information Topic is solved

move the sensitive info to a config file, and have your project read from the config file

then use a .gitignore file to ignore the config file so it doesnt go into the repo
by guest3456
15 May 2023, 11:56
Forum: Scripts and Functions (v2)
Topic: SendText - hotstring, text snippet manager
Replies: 7
Views: 2221

Re: SendText - hotstring, text snippet manager

Extremely tangentially related question - do you align your code manually or do you have a script or function that does it for you? Sorry for the minor post jack! use a good text editor like Vim, endure the learning curve, and find endless plugins like this: https://github.com/junegunn/vim-easy-align
by guest3456
04 May 2023, 12:34
Forum: Scripts and Functions (v2)
Topic: Pulover's Macro Creator for v2 [mod]
Replies: 23
Views: 6794

Re: Pulover's Macro Creator for v2 [mod]

sashaatx wrote:
03 May 2023, 16:57
no harm m8 (:
you've added MIT license but you are required by the GPL to keep your derivative work also as GPL. you should also keep Pulover's original license and copyright in the main dir
by guest3456
04 May 2023, 12:32
Forum: Scripts and Functions (v1)
Topic: v1 -> v2 Script Converter
Replies: 146
Views: 72296

Re: v1 -> v2 Script Converter

sashaatx wrote:
04 May 2023, 05:00
Hi Guest,
I reached out a week ago, I'd love to connect. I'm making a bunch of additions as I work with my EasyAutoGUI modded for v2 script.
I would just need your help with how to navigate the regex vs my instr mods. A brief chat would help me navigate the github.
replied on github
by guest3456
03 May 2023, 23:59
Forum: Ask for Help (v2)
Topic: how to make a func "force-local" ? Topic is solved
Replies: 8
Views: 640

Re: how to make a func "force-local" ? Topic is solved

You have not described your use case. You would only access the var as local if you define it in the function, and it's then local as I also showed. Unless you mean a nested function, but you have not said what you are trying to do. i have not described my use-case. but i did say what i am trying t...
by guest3456
03 May 2023, 13:04
Forum: Scripts and Functions (v2)
Topic: Pulover's Macro Creator for v2 [mod]
Replies: 23
Views: 6794

Re: Pulover's Macro Creator for v2 [mod]

hi guest3456, https://github.com/samfisherirl/Pulovers-Macro-Creator-for-AHKv2/blob/main/important/Documentation/License.md it looks like I placed i t in the wrong folder, Idk why the license.txt wasn't in the application I see its in my zipped version so It did get moved. Thats my fault. ah ok the...
by guest3456
03 May 2023, 12:30
Forum: Ask for Help (v2)
Topic: how to make a func "force-local" ? Topic is solved
Replies: 8
Views: 640

Re: how to make a func "force-local" ? Topic is solved

mikeyww wrote:
03 May 2023, 07:36

Code: Select all

#Requires AutoHotkey v2.0
x := 5
y := 999999999
j
MsgBox y

j() {
 y := 3
 MsgBox x
 MsgBox y
}
this doesn't make the func force-local. as your own example shows, x is read globally.

apparently there is no way, which seems extremely baffling

Go to advanced search