-
Notifications
You must be signed in to change notification settings - Fork 3
switchTo Functions
A list of switchTo Functions complete with definitions.
All switchTo functions are contained within a class called switchTo and are called like: switchTo.X()
The idea behind these functions was initially showcased by Taran a previous editor for LTT.
Their main purpose is to;
- If an instance of the desired program doesn't exist, open it
- If an instance of the desired program DOES exist, activate it
- If multiple instances of the desired program exists, cycle between them based off the last active
A list of switchTo. scripts based off this premise includes;
switchTo.Explorer()switchTo.Premiere()switchTo.AE()-
switchTo.Disc()- I have this function move my discord window to a specific position if it's not already. Check that position at the top of the script
switchTo.Photo()switchTo.Firefox()-
switchTo.OtherFirefoxWindow()- I use this in other functions for various reasons
switchTo.VSCode()switchTo.Streamdeck()switchTo.Excel()switchTo.Word()switchTo.WindowSpy()switchTo.Edge()switchTo.Music()
This function when called will close all windows of the desired program EXCEPT the active one. Helpful when you accidentally have way too many windows open.
switchTo.closeOtherWindow( [program] )Type: String - Program Information
Either
ahk_exe program.exeor aahk_class xof the desired program.
This function is specifically designed for my secondary keyboard and works in tandom with the switchTo() functions.
If the desired program isn't already open, it will run a first instance, if the desired program is already open, it will run a second instance without disrupting the first.
switchTo.newWin( [classorexe, activate, runval] )Type: String
This parameter is just defining whether the function is trying to grab the
ahk_classor theahk_exevalue of the desired program.
Type: String
This parameter is whatever usually comes after the
ahk_classor theahk_exevalue of the desired program.
Type: String - Filepath
This parameter is whatever you would normally need to feed into a
Run()command to open the desired program. Either a full file path, or something along the lines ofexplorer.exe,firefox.exe, etc.
This function opens the current Premiere Pro/After Effects project filepath in windows explorer.
If prem/ae isn't open it will attempt to open the
ptf.commsfolder.
switchTo.adobeProject( [{optionalPath := ""}])Type: String
This parameter allows the user to navigate to a directory beyond (or before) where the project file is located. See example #1 for more.
Type: Boolean
returns
true/falsewhether the function succeeded or failed
Example #1
;// will open the folder before where the project file is located
switchTo.adobeProject("..\")
;// will open the `videos` folder in the same dir as the project folder (if it exists)
switchTo.adobeProject("\videos")Keeping Track
Keyboard Shortcut Adjustments
libs & Classes
Editors
Apps
Other lib files
Hotkeys
Timer Scripts
- adobe fullscreen check.ahk
- Alt_menu_acceleration_DISABLER.ahk
- autodismiss error.ahk
- autosave.ahk
- gameCheck.ahk
- Multi-Instance Close
Other Scripts
- Hotkey Replacer.ahk
- checklist.ahk
- Streamdeck AHK
- CreateSymLink.ahk
- adobeKSA.ahk
- ExplorerDialogPathSelector.ahk
Other Guides