Search found 655 matches

by amateur+
27 Feb 2022, 16:03
Forum: Ask for Help (v1)
Topic: Browse chrome tabs looking for a specific one Topic is solved
Replies: 38
Views: 6339

Re: Browse chrome tabs looking for a specific one Topic is solved

Seems that there are some limitations. #Include D:\utils\acc.ahk Links := " (Join| https://www.autohotkey.com/ https://www.autohotkey.com/docs/commands/Hotkey.htm https://www.autohotkey.com/docs/commands/Hotkey.htm#Related https://www.autohotkey.com/docs/commands/Hotkey.htm#ErrorLevel https://www.au...
by amateur+
27 Feb 2022, 00:24
Forum: Ask for Help (v1)
Topic: Browse chrome tabs looking for a specific one Topic is solved
Replies: 38
Views: 6339

Re: Browse chrome tabs looking for a specific one Topic is solved

You may create gui with titles+links. Link
And about your message to mikeyww, I think it may be reasonable for you to re-read the topic from the very beginning. Re-read carefully. And you'll understand what mikeyww meant in his recent post.
by amateur+
26 Feb 2022, 16:39
Forum: Ask for Help (v1)
Topic: Browse chrome tabs looking for a specific one Topic is solved
Replies: 38
Views: 6339

Re: Browse chrome tabs looking for a specific one Topic is solved

submeg , you can combine both loops in one: #IfWinExist ahk_exe chrome.exe F3:: ; F3 = Get Chrome tab names and urls, and store them in a string urlActiveField := Acc_Get("Object", "4.1.1.2.1.2.5.3") loop 2 urlActiveField.accDoDefaultAction(0) ActiveUrl := urlActiveField.accValue(0), urlActiveField...
by amateur+
26 Feb 2022, 11:25
Forum: General Discussion
Topic: Where to get AHK freelancers (for small projects)?
Replies: 6
Views: 3538

Re: Where to get AHK freelancers (for small projects)?

I think, everyone who needs the help and is ready to pay for it, should just post a task at "Ask for help" subforum and mention that the job will be paid (for $/hour or $ fix). I'm personally ready to write some not very complex code, for example, for $15/hr or maybe even cheaper since I just like c...
by amateur+
25 Feb 2022, 17:53
Forum: Ask for Help (v1)
Topic: Learning IniWrite & IniRead Topic is solved
Replies: 26
Views: 2824

Re: Learning IniWrite & IniRead Topic is solved

You may use any variables names as you like. MyEdit1 or Edit1 all are nice, obviously. But since you've chosen Edit1 these line becomes buggy:
Spoiler
And you've forgotten about OnExit of OnExit() to save Edit content before you close your gui. Read about it here: OnExit.
by amateur+
25 Feb 2022, 13:44
Forum: Ask for Help (v1)
Topic: Learning IniWrite & IniRead Topic is solved
Replies: 26
Views: 2824

Re: Learning IniWrite & IniRead Topic is solved

Try to do that by your own. If you'll fail, post here your best attempt and we'll fix it.
by amateur+
25 Feb 2022, 13:25
Forum: Ask for Help (v1)
Topic: Learning IniWrite & IniRead Topic is solved
Replies: 26
Views: 2824

Re: Learning IniWrite & IniRead Topic is solved

I think it will look something like this: Gui, Show, x131 y91 h296 w300, New GUI Window Gui, Add, Edit, x46 y50 w100 h30 vMyEdit1, Gui, Add, Button, x46 y180 w100 h40 , Save Gui, Add, Button, x166 y180 w100 h40 , Load gosub, ButtonLoad OnExit, ExitSub Return ButtonSave: Gui, Submit, NoHide IniWrite,...
by amateur+
25 Feb 2022, 12:11
Forum: Ask for Help (v1)
Topic: Learning IniWrite & IniRead Topic is solved
Replies: 26
Views: 2824

Re: Learning IniWrite & IniRead Topic is solved

1.
Filename
The name of the .ini file, which is assumed to be in %A_WorkingDir% if an absolute path isn't specified.
2. What do you mean saying "automatically"?
by amateur+
25 Feb 2022, 12:06
Forum: Ask for Help (v1)
Topic: Replaced key getting stuck
Replies: 9
Views: 770

Re: Replaced key getting stuck

Just to clear this out for you:

Code: Select all

#IfWinActive ahk_exe notepad.exe
F2::Send, I'm writing this in Notepad after pressing F2.
#IfWinActive

F3::MsgBox, % "And this message appears after pressing F3 anywhere! And inside Notepad too."
by amateur+
25 Feb 2022, 11:54
Forum: Ask for Help (v1)
Topic: Help loading browser and URL.
Replies: 5
Views: 575

Re: Help loading browser and URL.

Code: Select all

#IfWinNotActive ahk_exe msedge.exe
^+u::
Run, C:\Program Files\Waterfox\waterfox.exe postimages.org
WinWaitActive, Postimages ahk_exe waterfox.exe
Sleep 1000	; Give it some more time.
Click 964 524
return
#IfWinNotActive
by amateur+
25 Feb 2022, 11:49
Forum: Ask for Help (v1)
Topic: InputHook() OnEnd returns 0
Replies: 8
Views: 868

Re: InputHook() OnEnd returns 0

Good work! Thanks for beer buying offer :). But this issue wasn't a lot of time consuming for me and I was glad to help you to clear some things. Or you may buy a beer to mikeyww , if you will insist on thanking me materially, since he among other active users (but I suppose that most of all of them...
by amateur+
25 Feb 2022, 11:36
Forum: Ask for Help (v1)
Topic: Softperfect hotkey
Replies: 12
Views: 1159

Re: Softperfect hotkey

Definitely the best way is to use native SCE start/stop hotkey once they have added it :).
by amateur+
24 Feb 2022, 21:16
Forum: Ask for Help (v1)
Topic: running command line commands Topic is solved
Replies: 1
Views: 340

Re: running command line commands Topic is solved

Code: Select all

F5::RunWait, %ComSpec% /c shutdown /a,, Hide
Related: ComSpec
https://www.google.com/search?q=ComSpec+site%3AAutoHotkey.com
P.S. And welcome to the world of AHK!
by amateur+
24 Feb 2022, 21:08
Forum: Ask for Help (v1)
Topic: Replaced key getting stuck
Replies: 9
Views: 770

Re: Replaced key getting stuck

I think this example will help you to undestand the reason:

Code: Select all

#IfWinActive ahk_exe notepad.exe
F3::Send, I'm writing this in Notepad.
#IfWinActive

F3::MsgBox, And this message appears after pressing F3 anywhere else except Notepad.
by amateur+
24 Feb 2022, 19:26
Forum: Ask for Help (v1)
Topic: Replaced key getting stuck
Replies: 9
Views: 770

Re: Replaced key getting stuck

Try this: #IfWinActive ahk_class TFruityLoopsMainForm ;_____________Automation for last tweaked parameter_____________. !a::send, {f6}{f3}{Left 2}LA ;_____________Link automation for last tweaked parameter_____________. !l::send, {f6}{f3}{Left 2}LL ;_____________Copy last tweaked parameter value____...
by amateur+
24 Feb 2022, 18:43
Forum: Ask for Help (v1)
Topic: Replaced key getting stuck
Replies: 9
Views: 770

Re: Replaced key getting stuck

Can you post here all parts of your script? About cut feature, about RShift, about LShift. All the stuff.
by amateur+
24 Feb 2022, 16:18
Forum: Ask for Help (v1)
Topic: Softperfect hotkey
Replies: 12
Views: 1159

Re: Softperfect hotkey

Hi! First of all, I'm an idiot that told you to use comcpec instead of comspec . Really sorry for that. You must not use semicolon this way: consim.exe; it isn't implied in AutoHotkey syntax. You should use just consim.exe You can add a space before a semicolon to insert a comment: Runwait, %comspec...
by amateur+
24 Feb 2022, 14:51
Forum: Ask for Help (v1)
Topic: Replaced key getting stuck
Replies: 9
Views: 770

Re: Replaced key getting stuck

These commands will never be executed:
Spoiler
And where is your script for holding RShift?

Go to advanced search