topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Sunday April 28, 2024, 7:05 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Last post Author Topic: Lintalist - searchable interactive text to copy & paste with plugins  (Read 67507 times)

Lintalist

  • Participant
  • Joined in 2015
  • *
  • Posts: 120
    • View Profile
    • Lintalist
    • Donate to Member
Re: Lintalist - searchable interactive text to copy & paste with plugins
« Reply #50 on: September 27, 2023, 02:25 PM »
... use it to tab to the first editable box on a page and nothing happens.
That is not surprising as it doesn't send the text but pastes it, so it isn't sending "tab tab tab + text" but just "^v"

You could try make it a script, if you know it is always 3 tabs:

Code: Autohotkey [Select]
  1. Send {Tab 3}
  2. Sleep 100
  3. Send ^v

When it comes to browser automation relying on clicks and tabs is too tricky and you should really look into other options (also via AutoHotkey) - in no particular order:
* Rufaydium (using webdriver) https://www.autohotk...php?f=6&t=102616
* UIAutomation with a focus on Chrome https://www.autohotk...ewtopic.php?t=104999
* Chrome.ahk https://www.autohotk...iewtopic.php?t=42890