-
Notifications
You must be signed in to change notification settings - Fork 2
ptf.ahk
This script contains a stew of classes and group declarations to make file and name management throughout my scripts easier and more consistent.
Point to File
, this class contains all directory and file locations that I can possibly assign. Keeping all definitions in the one place allows for easier adjusting of file locations in the future, as well as an easier time for another user to come through and adjust.
Example #1
;for directory locations
ptf.SupportFiles ;passes: A_WorkingDir "\Support Files"
Example #1
;for absolute file locations
ptf["settings"] ;passes: A_MyDocuments "\tomshi\settings.ini"
This class contains a set of objects to define browser winTitles
& classes
. Currently contains information for; firefox, chrome, msedge & vscode
Example #1
;for winTitle
broswer.firefox.winTitle ;passes: ahk_exe firefox.exe
;for class
browser.firefox.class ;passes: ahk_class MozillaWindowClass
This class contains a set of objects to define Editor winTitles
& classes
. Currently contains information for; Adobe Premiere Pro, Adobe After Effects, Adobe Photoshop & Davinci Resolve
Example #1
;for winTitle
editor.Premiere.winTitle ;passes: ahk_exe Adobe Premiere Pro.exe
;for class
editor.Premiere.class ;passes: ahk_class Premiere Pro
The script then goes on to define a browser group, and an editor group.
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
Other Guides