iSpace mimics the iPhone function of interpreting a rapid double space as a period-space, which can greatly improve typing speed. The program also provides optional capitalization of the following character. iSpace is useful for any typing procedure where speed is essential, such as dictation or transcription.
Written in autohotkey.
Category: | |
Runs on: | Win2K / WinXP / Vista / Win7 / Win8 |
Writes settings to: | Application folder |
Stealth: ? | Yes |
License: | Freeware/Open Source |
How to extract: | Download the ZIP package and extract to a folder of your choice. Launch iSpace.exe. |
Very useful application for those versed with the iPhone shortcut as suggested by the developer. For those who are not so familiar, it will be provide less typing than ordinarily supplying a period, space and a capital. Works well across MS Office applications, notepad apps (Notepad, Notepad++, etc), graphic apps like Paint.NET, Fotografix etc.
v1.00.0b
This is a good idea. I have incorporated it in my computer through an AHK script.
Space::DoubleTap("{BS}. ")
DoubleTap(key) {
If (A_ThisHotkey==A_PriorHotkey && A_TimeSincePriorHotkey < 250)
Send %key%
else
Send {%A_ThisHotkey%}
return
}
v1.00.0b