home *** CD-ROM | disk | FTP | other *** search
EPOC OPL Source | 1998-10-28 | 736 b | 30 lines |
-
-
- rem // Backlite+Plus Macro - macSpellCheck by J.Kneen 31/1/98
- rem // Select a word, press the hotkey and it is checked in the spell checker.
-
- PROC macSpellCheck:
- BLSwitchtoCurrent:
- BLClearClip:
- BLKeyCommand:("CTRL+C")
-
- IF BLClipText$:<>""
- BLBgSwitchto:("Spell")
- PAUSE 40
- BLClickCancel:
- BLKeyCommand:("CTRL+V")
- BLKeyCommand:("CTRL+S")
- PAUSE 20
- BLForeground:
- BLWaitforOK:
- BLKeyCommand:("CTRL+C")
- BLBackground:
- BLSwitchtoCurrent:
- BLKeyCommand:("CTRL+V")
- ENDIF
- ENDP
-
-
-
-
-