Hi folks,
Can anyone suggest a script to select a specific number of characters (1500 for example) from cursor?
Thank you.
Hi folks,
Can anyone suggest a script to select a specific number of characters (1500 for example) from cursor?
Thank you.
How about this?
!k:: ;Hotkey is Alt+K
Loop 1500
{
Send +{Right}
}
Send {Esc}
Return
The problem with this script is that it will also count spaces and tags as characters.
I'm sure experienced coders can come up with something more elegant.
I think it’s fine as a general all-purpose script.
It can be tuned for specific applications, like Word, Excel, PowerPoint…
I think it’s fine as a general all-purpose script.
It can be tuned for specific applications, like Word, Excel, PowerPoint…