built script like iphone keyboard?

Discussion, questions and support.
Post Reply
Cüneyt
Posts: 7
Joined: Feb 7th, ’19, 14:25

Post by Cüneyt » Feb 7th, ’19, 14:36

Is it possible to built (autocomplete) script like iphone keyboard?
pressing double times to space key results to put 1 dot and 1 space and capital first letter

(I couldnt find the subject on the forum)
User avatar
Marko
Posts: 1718
Joined: Mar 2nd, ’13, 21:02

Post by Marko » Feb 8th, ’19, 14:48

This works for me:

Shortcut: Space (with "native" option enabled)
Type: Command

Code: Select all

If (A_ThisHotKey = A_PriorHotkey && A_TimeSincePriorHotkey < 350)
	Send {bs 2}. 
Post Reply