How can I Enable/Disable an Add-on with a Hotkey?
I want to Enable/Disable certain Add-on(s) with Hotkeys. Is there ANY way to do this? I've searched A LOT but couldn't find a solution.
Chosen solution
NVM, made a Hotkey by myself and it works!
Read this answer in context 👍 0All Replies (7)
A hotkey (Control + Shift + A) opens the Add-ons Manager. As to turning on/off a specific add-on, only if it has that option.
Modified
Chosen Solution
NVM, made a Hotkey by myself and it works!
That was very good work. Well done.
Happy112 said
NOWRANKHANORIN saidNVM, made a Hotkey by myself and it works!Would you care to share it with us ?
I used the AutoHotKey and made this:-
- enable*
^!+\:: Send, ^+a Sleep, 500 Send, {Tab 4} Sleep, 200 Send, {Down 15} Sleep, 200 Send, {Tab 2}{Enter}{Tab 5}{Enter} Sleep, 500 Send, ^{f4} return
- disable*
^!+]:: Send, ^+a Sleep, 500 Send, {Tab 4} Sleep, 200 Send, {Down 9} Sleep, 200 Send, {Tab 2}{Enter}{Tab 5}{Enter} Sleep, 500 Send, ^{f4} return
it'll most likely be different if you want to do it but pretty similar
Happy112 said
Thank you ! This is what you used then ? https://www.autohotkey.com/
Welcome! and Yeah :)
Modified