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!
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.


Run, calc.exe
WinWait, ahk_exe CalculatorApp.exe
SysGet, WorkArea, MonitorWorkArea
WinGetPos, , , WinW, WinH, ahk_exe CalculatorApp.exe
NewX := WorkAreaRight - WinW
NewY := WorkAreaBottom - WinH
WinMove, ahk_exe CalculatorApp.exe, , %NewX%, %NewY%
; Set transparency to 75%
; 255 = fully opaque, so 75% = 191
WinSet, Transparent, 191, ahk_exe CalculatorApp.exe
No, thanks.(Start)
0001 Computer: App launch "calc.exe"
0002 Window: Assign and wait to activate "CalculatorApp.exe"
0003 Window: Move to desktop position "numpad3"
0004 Window: Transparency "75"
(End)

