Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
AutoText with Enter?
#1
Is it possible to send the <Enter> keystroke in the middle of a simple AutoText?  (...and how is it done?)
#2
`Replace`sends Enter for newlines in multiline text. Unless you use clipboard paste.
Code:
Copy      Help
        tt[":test"] = o => o.Replace("""
line1
line2
"""
);

Or send any keys and text with `Replace2`.
Code:
Copy      Help
        tt[":test"] = o => o.Replace2("!line1", "Enter", "!line2");
#3
Great, thanks!


Forum Jump:


Users browsing this thread: 1 Guest(s)