Welcome to our NEW forum! We invite you to sign up today
so it can grow to be a valuable resource to all Toolbox users!
Quote from: oblivion on June 05, 2026, 03:36:06 AMFair enough.Just to make that perhaps a bit better expressed: one of my gadgets is a notes program called Cintanote. Something it can do, which often comes in useful, is I can highlight some text somewhere, hit a hotkey, and Cintanotes will create a new note with the selected text as the content. So it's that sort of functionality I'm thinking of here.
However, I do wonder if a command to create / edit a note from an action might be a useful thing?

I promise to do it soon. I don't want to do the add-to-note thing because that's more of a custom request and I prefer to avoid those. To find backed-up actions, I'll see what I can do.(Start)
HOW TO USE: Copy from Start to End, and then paste into an action.
REFERENCE : See an example of pasting at alomware.com/paste.png
0001 Window: Assign active ""
0002 Wait: For action hotkey to be released ""
0003 Clipboard: Clear all content ""
0004 Keyboard: Copy ""
0005 Action: Abort if no clipboard text ""
0006 String: Assign from clipboard text ""
0007 Alert: Ask for a choice "Case modification type?~iNVERT~lower case~Sentence case~Title Case~AL¬
L CAPS~MiXeD cAsE"
0008 Action: Do next step if "alert$=iNVERT"
0009 String: Case swap ""
0010 Action: Do next step if "alert$=Title Case"
0011 String: Case title ""
0012 Action: Do next step if "alert$=Sentence case"
0013 String: Case sentence ""
0014 Action: Do next step if "alert$=lower case"
0015 String: Case lower ""
0016 Action: Do next step if "alert$=ALL CAPS"
0017 String: Case upper ""
0018 Action: Do next step if "alert$=MiXeD cAsE"
0019 String: Case mixed ""
0020 Clipboard: Assign text "string$"
0021 Keyboard: Paste ""
(End)
(Start)
HOW TO USE: Copy from Start to End, and then paste into an action.
REFERENCE : See an example of pasting at alomware.com/paste.png
0001 Window: Assign active ""
0002 Computer: App launch "D:\[Apps]\Winamp\Winamp.exe"
0003 Wait: For a window to appear "Winamp.exe"
0004 Wait: For milliseconds to pass "25"
0005 Action: Allow failure messages "0"
0006 Window: Activate for use ""
(End)
So far I've mainly used it for text autocompletion of things like my email and some website logins, but as a newbie I'd like to know if it's possible for me to open my music player but not lose the focus of the window that I'm currently using? Because it's annoying to click the taskbar to return to where I was after my music player opens. I'm guessing this is not a hard thing to do, but I'm not sure yet how to do it. Thanks in advance.