39 lines
1.1 KiB
AutoHotkey
39 lines
1.1 KiB
AutoHotkey
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; ;;
|
|
;; GP Tools ;;
|
|
;; ;;
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Setup
|
|
#NoEnv
|
|
SetBatchLines, -1
|
|
#SingleInstance, force
|
|
#HotkeyModifierTimeout 100
|
|
SetTitleMatchMode, 2
|
|
SetKeyDelay, 50
|
|
|
|
|
|
#Include libraries\helper_library.ahk ;; nhs_number functions
|
|
|
|
|
|
#Include includes\S1Utils.ahk ;; Helper functions for use in S1
|
|
#Include includes\S1Shortcuts.ahk ;; Shortcut keys for S1 actions
|
|
#Include includes\TextExpansions.ahk ;; Text expansions for autohotkey
|
|
;#Include includes\ChromeController.ahk ;; S1 chrome controls for AMGP
|
|
#Include includes\QuickSearch.ahk ;; Quicksearch / shortcut tools
|
|
#Include includes\PrintHomeVisitsImageSearch.ahk
|
|
#Include includes\EPS.ahk
|
|
|
|
; Reload Script after changes (Ctrl + F1)
|
|
^F1::
|
|
Reload
|
|
Return
|
|
|
|
F15::
|
|
Menu MyMenu, Add, View EPS, LoadEPS
|
|
Menu MyMenu, Add, Sign Px, signpx
|
|
Menu MyMenu, Add, Print home visits, PrintHomeVisits
|
|
Menu MyMenu, Add, Med3, med3
|
|
Menu MyMenu, Add, Enter notes from AMGP, copyemailnotes
|
|
Menu MyMenu, Show
|
|
Return |