Home
Forum
Software
Mouser's Software
NANY: New Apps for the New Year
Friends of DC
Forum Coding Snacks
Editorials
Daily Blog
Monthly Newsletter
Mini Reviews
Favorite Websites
Archives
Articles
Historical Archives
Testimonials: What Folks Say About Us
Licensing
Get a License Key
Commercial Licensing
Help
Search
FAQs
DonationCoder Sitemap
Live Chat (Discord)
Contact Us
About Us
Donate
Home
Forum
Software
Mouser's Software
NANY: New Apps for the New Year
Friends of DC
Forum Coding Snacks
Editorials
Daily Blog
Monthly Newsletter
Mini Reviews
Favorite Websites
Archives
Articles
Historical Archives
Testimonials: What Folks Say About Us
Licensing
Get a License Key
Commercial Licensing
Help
Search
FAQs
DonationCoder Sitemap
Live Chat (Discord)
Contact Us
About Us
Donate
This topic
This board
Entire forum
Website and forum (google)
Member search
Welcome,
Guest
. Please
login
or
register
.
Did you miss your
activation email
?
1 Hour
1 Day
1 Week
1 Month
6 Months
Forever
Login with username, password and session length
Saturday December 14, 2024, 1:09 pm
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.
Forum Home
Search
Login
Register
Recent Topics
Go To..
Recently updated topics
Recent posts (compact)
Recent posts (full text)
DonationCoder.com Forum
»
DonationCoder.com Software
»
Mouser's Zone
»
Find And Run Robot
»
FARR Plugins and Aliases
»
Using an Alias on a plugin
« previous
next »
New Topic
Print
Pages: [
1
] •
bottom
Author
Topic: Using an Alias on a plugin (Read 2767 times)
naveed
Supporting Member
Joined in 2007
Posts:
19
Using an Alias on a plugin
«
on:
August 28, 2020, 01:32 PM »
Using an Alias on a plugin
I'm trying to set a custom alias (tilde) on this plugin, but it doesn't save when I close this dialog or work. I tried with other characters and it still doesn't work.
I'm using the latest version of FARR v2.239.03. Am I doing something wrong or is it a bug?
Nod5
Supporting Member
Joined in 2006
Posts:
1,169
Re: Using an Alias on a plugin
«
Reply #1 on:
September 01, 2020, 03:23 PM »
I don't know how to fix the plugin itself. But you could try an external AutoHotkey script as a workaround. This might do the trick, if I understand the plugin screenshot correctly.
Code: Autohotkey
[Select]
#NoEnv
#SingleInstance
force
; use ' as hotkey to send string "tab " if pressed when FARR is active and searchbox is empty
#IfWinActive
,
ahk_exe FindAndRunRobot
.
exe
'::
ControlGetText
,
FarrText
,
TEdit1
,
ahk_exe FindAndRunRobot
.
exe
if
!FarrText
Send
tab
%A_Space%
Return
#IfWinActive
naveed
Supporting Member
Joined in 2007
Posts:
19
Re: Using an Alias on a plugin
«
Reply #2 on:
September 01, 2020, 03:29 PM »
Thank you! This is a good stop-gap.
I suspect it's a bug with FARR not the plugin, as I imagine FARR's the one that handles the alias.
New Topic
Print
Pages: [
1
] •
top
« previous
next »
DonationCoder.com Forum
»
DonationCoder.com Software
»
Mouser's Zone
»
Find And Run Robot
»
FARR Plugins and Aliases
»
Using an Alias on a plugin