Search found 66 matches
- 09 Feb 2021, 04:17
- Forum: Offtopic
- Topic: Useless post
- Replies: 2
- Views: 115
Useless post
So you have already read the title, this post is useless, don't waste your time on it. If you have time to waste, i would like to have your opinion about this: I love autohotkey, it is powerful, and it incredibly simplify my work life. BUT Everytime I talk about AHK to my programmer friends they rep...
- 02 Feb 2021, 02:28
- Forum: Ask For Help
- Topic: internet COM Object
- Replies: 5
- Views: 212
Re: internet COM Object
Thank you all!
GeekDude helped me in various scripts and i know he's a pro!
I will try the way that you suggested me!
GeekDude helped me in various scripts and i know he's a pro!
I will try the way that you suggested me!
- 29 Jan 2021, 16:18
- Forum: Ask For Help
- Topic: internet COM Object
- Replies: 5
- Views: 212
internet COM Object
Hi all, in my job i make massive use of Autohotkey and i save so much time. I use very much the browser via COM like this wb := ComObjCreate("InternetExplorer.Application") So, now i am a little bit worried because i am aware that Internet explorer is on the way to be dismissed. My question is: coul...
- 05 Aug 2020, 10:45
- Forum: Ask For Help
- Topic: trigger listbox via enter and doubleclick Topic is solved
- Replies: 6
- Views: 2778
Re: trigger listbox via enter and doubleclick Topic is solved
I don’t understand what the issue was. The script as I posted it worked without problems, either with Enter or double-click. Also, using Goto should generally be avoided. There is almost always a better solution. Dear boiler, i don't know why, but when i added the lines that you suggested to my scr...
- 05 Aug 2020, 09:24
- Forum: Ask For Help
- Topic: trigger listbox via enter and doubleclick Topic is solved
- Replies: 6
- Views: 2778
Re: trigger listbox via enter and doubleclick Topic is solved
Thank you so much! Brillant idea! There has been another problem but i managed to resolve it and i am proud of myself :lol: i modified the code in the way below, because when i was pressing "Enter" the flow was jumping before the (A_GuiControlEvent != "DoubleClick"), so after the "Enter" the script ...
- 05 Aug 2020, 04:55
- Forum: Ask For Help
- Topic: Changing values for Data Entry
- Replies: 1
- Views: 995
Re: Changing values for Data Entry
there are several ways to resolve the problem. the unreliable way could be Winactivate, Excel winwaitactive, Excel send, ^c sleep, 500 Send, {down} Winactivate, Internet Explorer winwaitactive, Internet Explorer sleep, 500 Send, ^v Send, {enter} sleep, 500 the reliable way consist in loading the web...
- 05 Aug 2020, 04:02
- Forum: Ask For Help
- Topic: trigger listbox via enter and doubleclick Topic is solved
- Replies: 6
- Views: 2778
trigger listbox via enter and doubleclick Topic is solved
Hello, the code below trigger an element into a listbox when i doubleclick it. I want to modify it in order to react either if doubleclick it or if i go over it with the arrows and press "Enter". It have to work in both ways. Any ideas? Thank you so much Gui, font, s10, Arial Gui, Add, ListBox, x10 ...
- 19 Jun 2020, 09:37
- Forum: Ask For Help
- Topic: selecting in listbox by keyboard Topic is solved
- Replies: 4
- Views: 1062
Re: selecting in listbox by keyboard Topic is solved
Works as expected!
Thank you so much!
Thank you so much!

- 19 Jun 2020, 04:43
- Forum: Ask For Help
- Topic: selecting in listbox by keyboard Topic is solved
- Replies: 4
- Views: 1062
Re: selecting in listbox by keyboard Topic is solved
Thank you Bobo.
Unfortunately I am not so good in coding. I tried to modify the script but i can't make it work.
Could I ask you to modify my original script in the first post to make it work either with the mouse or with the cursor keys and the "enter"?
Sorry to bother you again about this
Unfortunately I am not so good in coding. I tried to modify the script but i can't make it work.
Could I ask you to modify my original script in the first post to make it work either with the mouse or with the cursor keys and the "enter"?
Sorry to bother you again about this

- 19 Jun 2020, 03:16
- Forum: Ask For Help
- Topic: selecting in listbox by keyboard Topic is solved
- Replies: 4
- Views: 1062
selecting in listbox by keyboard Topic is solved
Hi all, i have this script that i use as "launcher" for other scripts: lista= (join| script1 script2 script3 ) Gui, font, s10, Arial Gui, Add, ListBox, x10 y10 w350 h600 vMyScript gRunScript, %lista% Gui, Show Return RunScript: Gui, Submit, Destroy Run, % A_ScriptDir . "\" MyScript . ".ahk" ExitApp ...
- 12 Jun 2020, 02:36
- Forum: Ask For Help
- Topic: Execution step by step
- Replies: 4
- Views: 421
Re: Execution step by step
Thank you all!
I will try to install DgbP and i will see if it works!
I will try to install DgbP and i will see if it works!
- 11 Jun 2020, 03:08
- Forum: Ask For Help
- Topic: Execution step by step
- Replies: 4
- Views: 421
Execution step by step
Hi all, is there a way...i don't know...by using SCITE, or AHKStudio or some other stuff to execute a script in autohotkey step by step (debug mode)? What i want do to is to execute a line and wait for a key pressed, then execute a line, then wait for a key pressed. Please note that the way have to ...
- 05 Nov 2019, 11:18
- Forum: Ask For Help
- Topic: Hotkey to pause a cycle launched by another hotkey
- Replies: 2
- Views: 279
Re: Hotkey to pause a cycle launched by another hotkey
unfortunately the solution doesn't work...
- 05 Nov 2019, 04:42
- Forum: Ask For Help
- Topic: Hotkey to pause a cycle launched by another hotkey
- Replies: 2
- Views: 279
Hotkey to pause a cycle launched by another hotkey
Hi, could someone give me a hint to resolve this? Thank you SetKeyDelay, 10, 10 ^F12:: loop, 100 { Send, %a_index% Send {enter} Sleep, 1000 } return ^F11:: ;with this hotkey i would like to PAUSE, in any time, the cycle launched by the ^F12 hotkey return ^F10:: ;with this hotkey i would like to RESU...
- 24 Sep 2019, 01:40
- Forum: Ask For Help
- Topic: function to submit Gui data into variables
- Replies: 3
- Views: 522
Re: function to submit Gui data into variables
swagfag i modified your script to match my needs and it works so I thank you so much. However, i have a similar problem that would take months to me to resolve and i think you could resolve it in ten minutes, so i am coming back to you to ask if you could save my life once again. I have just the sa...
- 23 Sep 2019, 03:46
- Forum: Ask For Help
- Topic: function to submit Gui data into variables
- Replies: 3
- Views: 522
- 23 Sep 2019, 03:07
- Forum: Ask For Help
- Topic: function to submit Gui data into variables
- Replies: 3
- Views: 522
function to submit Gui data into variables
Hello, what i wanna do, if possible, is to create a function that open a GUI, submit data into variables then close the gui and go on with the rest of the script. It has to work with multiple guis aswell. Everytime i had to write guis i had to write the rest of the code in the buttonOk label and i d...
- 14 Sep 2019, 05:10
- Forum: Ask For Help
- Topic: [COM] Control a new tab auto opened by site Topic is solved
- Replies: 1
- Views: 356
Re: [COM] Control a new tab auto opened by site Topic is solved
Hello again, i have found a solution: from this post i just CopyPasted this code and this works like a charm WBGet(WinTitle="ahk_class IEFrame", Svr#=1) { ; based on ComObjQuery docs static msg := DllCall("RegisterWindowMessage", "str", "WM_HTML_GETOBJECT") , IID := "{0002DF05-0000-0000-C000-0000000...
- 11 Sep 2019, 02:50
- Forum: Ask For Help
- Topic: [COM] Control a new tab auto opened by site Topic is solved
- Replies: 1
- Views: 356
[COM] Control a new tab auto opened by site Topic is solved
Hello, i have this issue. I usually navigate a site using the COM commands so: URL :="https://www.mysite.bla" wb := ComObjCreate("InternetExplorer.Application") wb.Navigate(URL) wb.Visible := True but when i navigate, after a click the site open another tab. I need that the script from this point sw...
- 06 Aug 2019, 06:55
- Forum: Ask For Help
- Topic: attributes of an object by a csv
- Replies: 2
- Views: 351
Re: attributes of an object by a csv
Thank you! i will try this way!