You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
; This app works but is incomplete. still needs filtering of special characters and referential file location instead of typing it into the file.
11
11
12
12
13
-
MsgBox, 1, HotStrings by Marc Anderson, This app will enable shortcuts(aka, hotstrings) that will autotype based on a CSV file
13
+
MsgBox, 1, AutoHotkey Text Expander, This text expander allows you to automatically convert short phrases into long blocks of text. New shortcuts can be added in the included hotstrings.csv file.`n`nExample, typing <ate will expand into "AutoHotkey Text Expander"`n`nBuilt In Hotstring:`n<now = DateTime(MM/dd/yyyy hh:mm:ss)
14
+
IfMsgBox, Cancel
15
+
ExitApp
14
16
IfMsgBox, OK
15
-
; loop through the csv file one line at a time
16
-
Loop, read, hotstrings.csv
17
-
{
18
-
; save the line number to a variable
19
-
LineNumber := A_Index-1
20
-
21
-
; skip the first row of content
22
-
IfEqual, A_Index, 1, Continue
23
-
24
-
; parse each cell into variables
25
-
Loop, parse, A_LoopReadLine, CSV
26
-
{
27
-
; if the cell number is odd, assign the current cell to the HotStringShortCut variable
0 commit comments