The program for entering text using hotkeys does not work
-
Hello!
There is a Key Manager program in which you can create hotkey combinations and assign them to insert one or another text. In Chrome or Firefox browser, this function works fine. No reaction occurs in Vivaldi.
The same thing happens with the autoclicker, which should simulate the left mouse button clicks on the selected coordinates of the active window (browser). There is no reaction in Vivaldi, while everything is fine in all other browsers.
Please help me figure it out.
-
@Gwen-Dragon
Yes. Below are links to the portable versions of the programs that I am using.
Clickerman: https://drive.google.com/file/d/178d3VutFaMeuwak5gzR4kgD_XKo0MjOg/view?usp=sharing
Key Manager: https://drive.google.com/file/d/1nuQOEHR4pW-iOboQx5xxJm4M6A4EwskF/view?usp=sharingThe scenario is simple. I open Key Manager and Clickerman. After that I launch the browser. In any window in which you can enter text (including the search bar of the browser), I press a keyboard shortcut, for example Alt + Shift + 1 or Alt + 5, and the specified text is inserted into the input field. In the case of Clickerman, I press Alt + A and run a pre-recorded macro: clicking on certain places on the screen.
-
@Gwen-Dragon
If necessary, I am ready to record a video demonstrating the work and non-work of the programs I have described.
-
@ikotlovedayandex I don't know about those programs, but using AutoHotKey works perfectly for me in Vivaldi.
I set up this script for
Alt
+Shift
+1
that outputs the text "Hello Vivaldi
":#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% ; Ensures a consistent starting directory. ; Alt = !, Shift = + !+1:: Send {Text}Hello Vivaldi
As for an autoclicker, I made a script that repeatedly clicks the left mouse button after pressing
Ctrl
+Alt
+Left-Mouse-Button
and stops whenEscape
is pressed:#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% ; Ensures a consistent starting directory. ; Ctrl = ^, Alt = !, LButton = left click ^!LButton:: if (Running != 1) { Running = 1 Loop { if (Running = 0) break Sleep 1 GetKeyState, LButtonState, LButton, P if LButtonState = U MouseClick, Left } } return ; Cancel auto clicking Esc:: Running = 0
You can also have it click specific coordinates. Check out the documentation here.
-
Ppafflick moved this topic from Vivaldi for Windows on