Posts: 1,769
Threads: 410
Joined: Feb 2003
I'm having a problem with Microsoft Teams Version 1.5.00.33362 (64-bit) where some of the TS Menu triggers don't erase the trigger text but put in the value just after the trigger text. However, some do without issue.
I don't see a common thread between the ones that fail and the ones that don't. Any ideas on how I can run this to ground?
PS: I have tried with keyboard hooks on and off but same behaviour.
Posts: 12,095
Threads: 142
Joined: Dec 2002
Try to replace /s (select text) with /b (erase with Backspace).
Posts: 1,769
Threads: 410
Joined: Feb 2003
Well, they all fail consistently with that change. Is it some sort of different text field?
Posts: 12,095
Threads: 142
Joined: Dec 2002
12-20-2022, 07:34 AM
(This post was last modified: 12-20-2022, 07:37 AM by Gintaras.)
The code was incorrect. Must be
I noticed this in the chat field. With /s some autotexts don't erase. With /b all erase.
Posts: 1,769
Threads: 410
Joined: Feb 2003
12-20-2022, 01:41 PM
(This post was last modified: 12-20-2022, 01:57 PM by ken gray.)
Thanks!
Almost there. The only ones that fail now are ones with upper case letters (except for Adobe Analytics).
I tried putting the "'" in after the colon but it didn't help.
Macro
Macro8
/b/i/c/p3
;!c :"!calc"
;-- :mac "SQL Comment"
;'r :outp("```{r,echo = TRUE} [][][]```");'LLLLLL
aa :"Adobe Analytics"
dif :"different"
dont :"don't"
sfm :"SWEET FANCY MOSES!!"
sql :"SQL"
ta :"Tableau"
Posts: 12,095
Threads: 142
Joined: Dec 2002
It seems the text control incorrectly synchronizes modifier keys. And QM sens keys too fast. On my computer with /b always works well, but maybe it depends on program version, computer, etc.
Try to paste always. Either in Options uncheck "Hybrid paste", or replace "text" with paste "text".
Posts: 1,769
Threads: 410
Joined: Feb 2003
Unchecking hybrid did the trick.
Thanks.