Search found 10 matches

by abellos
07 Mar 2024, 14:04
Forum: Gaming Help (v1)
Topic: Hold down Alt key
Replies: 3
Views: 275

Re: Hold down Alt key

Thank you, now i see the tray tip alt up also with you help, but when i repress 5 to unlock Alt key, is see "alt up" message but it still pressed, i need to press one time the Alt key phisically on keyboard. U can try open a notepad and press f or m u see that open the menu This is my entire script ...
by abellos
06 Mar 2024, 14:37
Forum: Gaming Help (v1)
Topic: Hold down Alt key
Replies: 3
Views: 275

Hold down Alt key

Hello guys, i need a script for a game to hold down the Alt key, i wrote this script 5:: Toggle := !Toggle If not Toggle { Send {Alt up} TrayTip "alt up", "alt up" } else { Send {Alt down} TrayTip "alt down", "alt down" } it hold the key pressed, but i cant stop the pressed alt. I think when alt is ...
by abellos
07 Jul 2021, 07:39
Forum: Ask for Help (v1)
Topic: Retrieve index of combobox
Replies: 4
Views: 458

Re: Retrieve index of combobox

Oh yeah, is what i need!!!! TY so much
by abellos
07 Jul 2021, 07:10
Forum: Ask for Help (v1)
Topic: Retrieve index of combobox
Replies: 4
Views: 458

Re: Retrieve index of combobox

Ty for response, i had copy you example but in the msgbox show zmonk zdh .... and not the index
by abellos
07 Jul 2021, 05:23
Forum: Ask for Help (v1)
Topic: Retrieve index of combobox
Replies: 4
Views: 458

Retrieve index of combobox

Hi all, i have this code #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ens...
by abellos
12 Apr 2020, 06:32
Forum: Ask for Help (v1)
Topic: Text field filling using COM into already open IE11
Replies: 1
Views: 265

Re: Text field filling using COM into already open IE11

Can do that with this code App2Wb(URL){ For pwb in ComObjCreate( "Shell.Application" ).Windows If InStr(pwb.FullName, "iexplore.exe" ) && InStr(pwb.LocationURL, URL) Return pwb } startIE(){ IfWinExist, ahk_exe iexplore.exe { If WinActive ahk_exe iexplore.exe { wb.Navigate(pag_login) ;// Navigate to ...
by abellos
12 Apr 2020, 02:34
Forum: Ask for Help (v1)
Topic: Webbrowser IE comobject click
Replies: 0
Views: 479

Webbrowser IE comobject click

Hello guys, happy easter to all, i maked a script that login on a web page, using com object, and start a cycle that every 5 min refresh the page and click on an icon to check if some slot are free and advise me (i look for a green circle). I tested the script and work fine on my machine with win7 a...
by abellos
08 Apr 2020, 10:15
Forum: Ask for Help (v1)
Topic: Help with use internet explorer comobject Topic is solved
Replies: 4
Views: 980

Re: Help with use internet explorer comobject Topic is solved

Oh yeah now work!!!! Was the wb variable not set as global the problem, IE_DocumentComplete() is an event of internet explorer and is executed when the page is loaded for what i had read in the tutorial https://autohotkey.com/board/topic/47052-basic-webpage-controls-with-javascript-com-tutorial/ edi...
by abellos
08 Apr 2020, 08:53
Forum: Ask for Help (v1)
Topic: Help with use internet explorer comobject Topic is solved
Replies: 4
Views: 980

Help with use internet explorer comobject Topic is solved

Hello i want login in a site with an ahk script but i cannot able to insert login and password in the correct html field, this is my script #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMo...
by abellos
24 Mar 2020, 12:51
Forum: Tips and Tricks (v1)
Topic: ImageSearch Tips & Tricks
Replies: 29
Views: 82019

Re: ImageSearch Tips & Tricks

I just resolve my problem, and want to say here so can help other that can have same.
When u use imagesearch or gdip_imagesearch pay much attention that the file u want search on screen or into an image have the same dpi, because if it is different you will never find anything.

Go to advanced search