Search found 143 matches

by usser
06 Apr 2024, 12:13
Forum: Other Utilities & Resources
Topic: Best way to automate web forms?
Replies: 1
Views: 98

Best way to automate web forms?

Hello I want to automate web forms, i.e. on specific websites, to automatically click radio buttons, select specific regex entries in drop down menus, click buttons etc. Unfortunately, I do not think this can be done by analysing the HTML because those who developed these forms want to prevent autom...
by usser
28 Mar 2024, 10:16
Forum: Ask for Help (v2)
Topic: Any Breaks scheduler in AHK? Topic is solved
Replies: 3
Views: 110

Any Breaks scheduler in AHK? Topic is solved

Hi Has anyone built a Break Scheduler in AHK? There are tons of such programs but I think none combines all preferred features or is lightweight enough. They will either: 1) not detect inactivity to reset screen time counting 2) not have independent notification sound level from the mail device soun...
by usser
28 Mar 2024, 09:11
Forum: Forum Issues
Topic: A couple of Forum issues
Replies: 1
Views: 52

A couple of Forum issues

Hi Using latest Chrome, when moving the cursor inside the white space of the text input box to enter a forum post or reply, it disappears (or maybe becomes white as we cannot longer see it). Is this some kind of bug? Secondly, the AHK Formus run quite slowly, is that due to limited resources for a f...
by usser
28 Mar 2024, 09:08
Forum: Ask for Help (v1)
Topic: Mark emails as read in Outlook
Replies: 10
Views: 172

Re: Mark emails as read in Outlook

An idea is below. #Requires AutoHotkey v1.1.33.11 #If WinActive("ahk_exe OUTLOOK.exe") && mouseOver("OutlookGrid1") ~RButton Up:: Sleep 200 Send k ; Mark as read SoundBeep 1500 Return #If mouseOver(ctl) { MouseGetPos,,,, overCtl Return overCtl = ctl } Unfortunately, this does not seem to work with ...
by usser
28 Mar 2024, 08:51
Forum: Ask for Help (v1)
Topic: Mark emails as read in Outlook
Replies: 10
Views: 172

Re: Mark emails as read in Outlook

Thank you but this was intended to be for AHK v2, can you provide some v2 code to test? When you post obvious v1 code in your original post, but actually want v2 code, it would make sense to mention this from the start. Otherwise, your topic will be (and has been) moved to the v1 help subforum, ass...
by usser
28 Mar 2024, 08:49
Forum: Ask for Help (v2)
Topic: Any AI tool to write AHK code?
Replies: 3
Views: 158

Any AI tool to write AHK code?

Hi

Any AI tool to write AHK code?

Thanks
by usser
27 Mar 2024, 17:23
Forum: Ask for Help (v2)
Topic: Any advanced Autoclicker? Topic is solved
Replies: 1
Views: 118

Any advanced Autoclicker? Topic is solved

Hello Is there any advanced AutoClicker, i.e. one that works, has many features and is customisable? 1) I need to autoclick tabkbar buttons when I hover over them but it's difficult to distinguish them and not autoclick the same which will unintentionally minimise the active window. 2) I need to aut...
by usser
27 Mar 2024, 10:52
Forum: Ask for Help (v1)
Topic: Mark emails as read in Outlook
Replies: 10
Views: 172

Re: Mark emails as read in Outlook

Thank you but this was intended to be for AHK v2, can you provide some v2 code to test?
Thanks!
by usser
26 Mar 2024, 17:09
Forum: Ask for Help (v1)
Topic: Mark emails as read in Outlook
Replies: 10
Views: 172

Mark emails as read in Outlook

Hello I am trying to mark emails as read in Outlook Desktop when I right click on an email in the email list. I tried: #If WinActive("ahk_exe outlook.exe") RButton::Send {LButton down}{LButton up}{LControl down}{q}{LControl up} Return and #If WinActive("ahk_exe outlook.exe") RButton:: KeyWait LButto...
by usser
12 Mar 2024, 14:40
Forum: Ask for Help (v2)
Topic: Problem with hotkeys and IBeam cursor condition
Replies: 7
Views: 204

Re: Problem with hotkeys and IBeam cursor condition

Brilliant thank you! I will be diving into these asap. By the way, I found out that I can make the Blinking Caret whatever colour I want via Windows settings. I was thinking if I can colour it with a colour that is extremely rare, I could then have AHK detect that colour on the screen as a condition...
by usser
01 Mar 2024, 16:51
Forum: Ask for Help (v2)
Topic: Problem with hotkeys and IBeam cursor condition
Replies: 7
Views: 204

Re: Problem with hotkeys and IBeam cursor condition

That's great thanks! It seems quite clunky as you said though :/
Maybe an AHK develop can advise why the first option does not work with web edit fields and maybe even fix it?
That would really be ideal.
by usser
01 Mar 2024, 06:41
Forum: Ask for Help (v2)
Topic: Focusing on text input controls on cursor hover
Replies: 0
Views: 170

Focusing on text input controls on cursor hover

Hello I think I once had a script to achieve the below but I cannot remember if it was functional or not. Basically, I want whenever I move around the cursor in Chrome, to focus on text input controls (as if you click on them) if the cursor is hovering over such controls for few milliseconds. Potent...
by usser
01 Mar 2024, 06:36
Forum: Ask for Help (v2)
Topic: Problem with hotkeys and IBeam cursor condition
Replies: 7
Views: 204

Re: Problem with hotkeys and IBeam cursor condition

Thanks, that could be a good potential strategy but unfortunately I don't think it will be robust because there will be numerous webpages with non editable text where the background colour is white. The cursor over such text will be IBeam but also the cursor would not be inside a text input control ...
by usser
29 Feb 2024, 15:57
Forum: Ask for Help (v2)
Topic: Problem with hotkeys and IBeam cursor condition
Replies: 7
Views: 204

Problem with hotkeys and IBeam cursor condition

Hello I am severely struggling with an issue for years now. So I have set up these AHK hotkeys to basically go to the previous/next tab in Chrome: 1::^PgUp 2::^PgDn I also have this condition: A_cursor!="IBeam" However, the hotkeys do not work as intended. Particularly, when the cursor is IBeam but ...
by usser
01 Nov 2023, 04:47
Forum: Ask for Help (v2)
Topic: Run a loop only when a particular window is active?
Replies: 1
Views: 205

Run a loop only when a particular window is active?

Hello! How can I set to run a loop {Loop} only when a particular window is active? I tried the below with no luck: If WinActive("ahk_exe exe.exe") While 1=1 { Do the loop } Return While WinActive("ahk_exe exe.exe") { Do the loop } Return While 1=1 { If WinActive("ahk_exe exe.exe") Do the loop } Retu...
by usser
09 Jul 2023, 07:58
Forum: Ask for Help (v2)
Topic: Hotkey for my email address?
Replies: 1
Views: 185

Hotkey for my email address?

Hello I want to click: oo And type: email@address.com However I cannot make it run no matter what combinations I tried. Any idea please? Also, the hotkeys v2 help section is quite messy at least for me, not intuitively organised at all, any chance you change it? I can provide a draft if it helps. Th...
by usser
22 May 2023, 05:40
Forum: Ask for Help (v1)
Topic: How to click 'SHIFT+:' when I click ';' in both AHK 1 and 2?
Replies: 3
Views: 331

Re: How to click 'SHIFT+:' when I click ';' in both AHK 1 and 2?

Ah thanks!, missed the escape key :)
Btw, not sure why v2 needs the quotes, it should be a simplification of v1 :(
by usser
17 May 2023, 04:14
Forum: Ask for Help (v1)
Topic: How to click 'SHIFT+:' when I click ';' in both AHK 1 and 2?
Replies: 3
Views: 331

How to click 'SHIFT+:' when I click ';' in both AHK 1 and 2?

Hello!

How to click 'SHIFT+:' when I click ';' in both AHK 1 and 2?

I am struggling to find how to put ';' in front of a statement like:
;::^;

The key list does not include it!

Thanks!
by usser
23 Apr 2023, 18:40
Forum: Ask for Help (v1)
Topic: Why this hotkey does not work? Topic is solved
Replies: 6
Views: 432

Re: Why this hotkey does not work? Topic is solved

Thanks but I was under the impression that both code can run under the same script simultaneously, is that incorrect?

Anyway the below does not seem to work either:

Code: Select all

^ESC::
{
Sleep, 300
Process, Close, voiceaccess.exe
Sleep, 3000 
Run voiceaccess.exe
Return
}
by usser
23 Apr 2023, 15:17
Forum: Ask for Help (v2)
Topic: Is it possible to set FN always on?
Replies: 1
Views: 207

Is it possible to set FN always on?

Hello!

I know you can set num lock and caps lock in a specific state permanently but is it possible to do so for the FN key?

Thank you!

Go to advanced search