Search found 76 matches

by A_Perry_1984
16 Mar 2020, 16:24
Forum: Off-topic Discussion
Topic: Covid-19 Letting everyone know
Replies: 1
Views: 1985

Covid-19 Letting everyone know

I am reaching out to you my fellow AHK users to take action wherever you are. I implore everyone here to get the word out ASAP to their community online and offline to stay home and avoid contact with others. The next few weeks are critical in slowing and containing the virus. I don't wish to spread...
by A_Perry_1984
20 Dec 2019, 19:50
Forum: Ask for Help (v1)
Topic: Computer nooob
Replies: 1
Views: 414

Re: Computer nooob

I'm not clear what you want to do. Is this what you mean?

Code: Select all

Loop
{
send -
sleep 5000
send {=}
sleep 5000
MouseClick, left
sleep 5000
send -
sleep 5000
}
by A_Perry_1984
20 Dec 2019, 19:37
Forum: Ask for Help (v1)
Topic: Exact Match in listbox
Replies: 5
Views: 816

Re: Exact Match in listbox

Will something like this work? #SingleInstance, Force List = Kopie1ofFirstTime||Kopie2ofFirstTime|Kopie3ofFirstTime|Kopie3ofFirstTime Gui, +Alwaysontop Gui, Add, listbox, vMyList, % list Gui, Add, button, gChoose ,Choose Gui, Show, w180 return Choose: Gui, Submit, nohide Loop { i++ GuiControl, Choos...
by A_Perry_1984
20 Dec 2019, 18:25
Forum: Ask for Help (v1)
Topic: Running links in a portable browser?
Replies: 1
Views: 478

Running links in a portable browser?

I am currently using a script to run web pages. I would like to be able to run them in portable browsers (Firefox). Initially when I run a link - \firefox.exe https://www.duckduckgo.com - it will open up just fine. However if the browser is already open I get an error message stating the process is ...
by A_Perry_1984
12 Dec 2019, 10:37
Forum: Wish List
Topic: We want AHK for Linux!
Replies: 78
Views: 61972

Re: We want AHK for Linux!

What exactly was the main reason for ending IronAHK development? This and the other are hard questions. I will give what I know about it, but there might be more to the story than I know, in regards to both. Chris, the original creator of AutoHotkey, originally handed over AutoHotkey leadership to ...
by A_Perry_1984
10 Dec 2019, 16:32
Forum: Wish List
Topic: We want AHK for Linux!
Replies: 78
Views: 61972

Re: We want AHK for Linux!

What exactly was the main reason for ending IronAHK development? If I even had the brain for developing, I would already be working on it, but I'll gladly support developers any way I can. Is it possible there exists some C++ to Pascal conversion programs? Also DLL's could be converted to .SO files ...
by A_Perry_1984
10 Dec 2019, 09:36
Forum: Wish List
Topic: We want AHK for Linux!
Replies: 78
Views: 61972

Re: We want AHK for Linux!

The claim I hear often is that not enough Linux users would use AHK, and I just don't believe that. The problem I am seeing is based on the fact that advanced Linux users work with the console where there is less need for automation, but every Linux user still interacts with the desktop to a large d...
by A_Perry_1984
10 Dec 2019, 09:05
Forum: About This Community
Topic: Guestbook: say hi, thank you, whatever!
Replies: 107
Views: 84537

Re: Guestbook: say hi, thank you, whatever!

Where do I begin? There are so many amazing contributors who I've benefited from but I think the most notable are Jeeswg, Lexikos, Joe Glines, and Hellbent. I never imagined myself doing so many great things with AHK! Thank you!
by A_Perry_1984
30 Nov 2019, 10:52
Forum: Ask for Help (v1)
Topic: Functions inside objects questions
Replies: 2
Views: 599

Functions inside objects questions

I am just now starting to get the grasp using arrays and objects, and would like to better understand them. The tutorial is great, but I find it easier to learn when I have real examples. Can someone provide some simple examples of when functions inside objects come in handy? Is a method just a func...
by A_Perry_1984
30 Nov 2019, 10:42
Forum: Ask for Help (v1)
Topic: Create named arrays from rows Topic is solved
Replies: 8
Views: 1279

Re: Create named arrays from rows Topic is solved

Okay, mind blown here. Thank you.
by A_Perry_1984
27 Nov 2019, 11:51
Forum: Ask for Help (v1)
Topic: Create named arrays from rows Topic is solved
Replies: 8
Views: 1279

Re: Create named arrays from rows Topic is solved

Sorry. My initial post wasn't exactly clear. I was just using the list above as an example. I am actually reading from a csv file with an indeterminate number of lines. When it reads a line, I want each line to be stored as an array but have that array named after the first column. So basically List...
by A_Perry_1984
27 Nov 2019, 11:33
Forum: Ask for Help (v1)
Topic: Create named arrays from rows Topic is solved
Replies: 8
Views: 1279

Re: Create named arrays from rows Topic is solved

Problem is I actually don't know the number of rows.
by A_Perry_1984
27 Nov 2019, 10:52
Forum: Ask for Help (v1)
Topic: Create named arrays from rows Topic is solved
Replies: 8
Views: 1279

Create named arrays from rows Topic is solved

I have been trying to figure this out. I have a list and want to create arrays from every line, but I want also to name the array for each line after the first column. I am just not sure what I am missing here. #SingleInstance, Force TaskX := [] List = ( ListA Info more Info ListB Data more Data ) L...
by A_Perry_1984
27 Nov 2019, 10:32
Forum: Ask for Help (v1)
Topic: VBS Files Not Moving Topic is solved
Replies: 9
Views: 1149

Re: VBS Files Not Moving Topic is solved

Those are some great suggestions! Thank you!
by A_Perry_1984
25 Nov 2019, 18:47
Forum: Ask for Help (v1)
Topic: Manipulating multiple lists Topic is solved
Replies: 4
Views: 933

Re: Manipulating multiple lists Topic is solved

This is great! Thanks Tidbit.
by A_Perry_1984
25 Nov 2019, 17:32
Forum: Ask for Help (v1)
Topic: Manipulating multiple lists Topic is solved
Replies: 4
Views: 933

Re: Manipulating multiple lists Topic is solved

That is actually, a very good idea. In fact, I think I'll turn the entire CSV into an array. That way I can delete lines and add new lines as needed.
by A_Perry_1984
25 Nov 2019, 17:07
Forum: Ask for Help (v1)
Topic: VBS Files Not Moving Topic is solved
Replies: 9
Views: 1149

Re: VBS Files Not Moving Topic is solved

I often have better results with

If WinExist(Window Title)
WinActivate, WinMove, etc
by A_Perry_1984
25 Nov 2019, 16:54
Forum: Ask for Help (v1)
Topic: VBS Files Not Moving Topic is solved
Replies: 9
Views: 1149

Re: VBS Files Not Moving Topic is solved

@Xtra,

I am curious. I have had mixed results with Winwait. I often find it doesn't work, and use the If winexist. Have you had consistant results?
by A_Perry_1984
25 Nov 2019, 16:49
Forum: Ask for Help (v1)
Topic: Manipulating multiple lists Topic is solved
Replies: 4
Views: 933

Manipulating multiple lists Topic is solved

This is more of a general question about how to approach a task than about a specific piece of code. My question is how to go about this or if there is a better way? I have a CSV file. I am parsing the CSV file line by line. The first column contains the categories. So for example any lines, contain...
by A_Perry_1984
22 Nov 2019, 22:16
Forum: Ask for Help (v1)
Topic: Color individual rows in a listview.
Replies: 2
Views: 581

Re: Color individual rows in a listview.

. Looks promising Thanks 'll check it out. Is there any way to do it without additional scripts? I just need something very basic.

Go to advanced search