How do I place the cursor at a certain point after sending an AutoHotkey script? -


i thought i'd ask question here instead of autohotkey forums since 1 seems more active , knowledgeable.

i using ahk basic purpose @ time, , implement typing color , style, shown below:

^|::   send, [b][color={#}4f6377][/color][/b]x return 

it bbcode makes color bold dark blue. trying make cursor (x) go first position 1 shown below.

^|::   send, [b][color={#}4f6377]x[/color][/b] return 

thank in advance.

this should do:

^|::   sendinput, [b][color={#}4f6377][/color][/b]   sendinput, {left 12} return 

it's using sendinput instead of send it's faster.


Popular posts from this blog

c# - ODP.NET Oracle.ManagedDataAccess causes ORA-12537 network session end of file -

matlab - Compression and Decompression of ECG Signal using HUFFMAN ALGORITHM -

utf 8 - split utf-8 string into bytes in python -