Search found 11 matches

by Elermino
May 23rd, ’22, 16:48
Forum: User Commands and Scripts
Topic: Assign an extra button to draw gestures
Replies: 2
Views: 927

Re: Assign an extra button to draw gestures

Marko wrote: May 22nd, ’22, 21:26 Hi, this is currently not possible. Your suggestion will be put on the wish list.
It would be very useful for the limited combinations that can be made, thanks for taking it into account
by Elermino
May 19th, ’22, 21:10
Forum: User Commands and Scripts
Topic: Assign an extra button to draw gestures
Replies: 2
Views: 927

Assign an extra button to draw gestures

I have assigned the right click of the mouse to draw gestures and I was wondering if it is possible to assign that when drawing with another key (F18 for example) another pack of gestures is activated that work apart from those that are activated with the right click. I would really appreciate if th...
by Elermino
Jan 25th, ’22, 14:52
Forum: General Discussion
Topic: Code used to search google for a word or a URL as appropriate
Replies: 5
Views: 800

Re: Code used to search google for a word or a URL as appropriate

Marko wrote: Jan 20th, ’22, 22:39 Great, was it a #Warn statement?
It seems to me that yes, since after clicking "ok" in the box that appeared, the order was already executed. Why is writing code different in FastKeys than writing an AutoHotkey script?
by Elermino
Jan 19th, ’22, 17:50
Forum: General Discussion
Topic: Code used to search google for a word or a URL as appropriate
Replies: 5
Views: 800

Re: Code used to search google for a word or a URL as appropriate

Marko wrote: Jan 17th, ’22, 09:49 This is a warning, not an error. Probably you have added another script which includes a #Warn statement - remove it.

Alternatively you can add a

Code: Select all

text:=""
line just before a Loop, parse statement.
Solved. Thanks
by Elermino
Jan 12th, ’22, 12:35
Forum: General Discussion
Topic: Code used to search google for a word or a URL as appropriate
Replies: 5
Views: 800

Code used to search google for a word or a URL as appropriate

This script is used to search Google as text if what is selected is a text and as a URL if what is selected is a URL, in my case this is activated by drawing a gesture. I have been told that the problem may be that the script requires variable initialization to work in FastKeys, but I don't know how...
by Elermino
Dec 10th, ’21, 22:34
Forum: User Commands and Scripts
Topic: Script error search google
Replies: 3
Views: 1274

Re: Script error search google

Sorry, what is the purpose of the script? It is used to search for the selected text in Google, depending on whether it is a url or a normal text. Validate if it is a url with regEx and it goes directly to the page, if not, it searches the text in google as a normal query. I already managed to get ...
by Elermino
Dec 10th, ’21, 22:30
Forum: User Commands and Scripts
Topic: Script error search google
Replies: 3
Views: 1274

Re: Script error search google

Marko wrote: Dec 10th, ’21, 20:46 Sorry, what is the purpose of the script?
It is used to search for the selected text in Google, depending on whether it is a url or a normal text. Validate if it is a url with regEx and it goes directly to the page, if not, it searches the text in google as a normal query.
by Elermino
Dec 10th, ’21, 02:25
Forum: User Commands and Scripts
Topic: Script error search google
Replies: 3
Views: 1274

Script error search google

I wrote this script and when selecting the urls to search for a page it works correctly, but if I select a word it shows an error in regEx and then it searches for it. This is the code: Clipboard = Send ^c ClipWait, 0 If ErrorLevel MsgBox, 48, Error, An error occurred while waiting for the clipboard...
by Elermino
Nov 15th, ’21, 22:42
Forum: User Commands and Scripts
Topic: Some Autohotkey scripts are not running
Replies: 4
Views: 1511

Re: Some Autohotkey scripts are not running

Tom wrote: Nov 15th, ’21, 21:07 Your script is dependent on a Gdip library which is not found. I suggest you run such advanced scripts using Type: Run.
Placing the code and selecting type run does nothing. I guess you mean creating a separate ahk file and putting its address, in that case it works
by Elermino
Nov 13th, ’21, 16:25
Forum: User Commands and Scripts
Topic: Some Autohotkey scripts are not running
Replies: 4
Views: 1511

Re: Some Autohotkey scripts are not running

It is used to show a wave when the mouse is inactive for a certain time and when any of the mouse buttons are pressed #NoEnv CoordMode Mouse, Screen Setup() ~LButton::ShowRipple(LeftClickRippleColor) ~RButton::ShowRipple(RightClickRippleColor) ~LControl Up::ShowRipple(MouseIdleRippleColor) Setup() ...