home *** CD-ROM | disk | FTP | other *** search
/ PSION CD 2 / PsionCDVol2.iso / Programs / 377 / BACKLITE.SIS / macSpellCheck (.txt) < prev    next >
Encoding:
EPOC OPL Source  |  1998-10-28  |  736 b   |  30 lines

  1.  
  2.  
  3. rem // Backlite+Plus Macro - macSpellCheck by J.Kneen 31/1/98
  4. rem //┬áSelect a word, press the hotkey and it is checked in the spell checker.
  5.  
  6. PROC macSpellCheck:
  7.     BLSwitchtoCurrent:
  8.     BLClearClip:
  9.     BLKeyCommand:("CTRL+C")
  10.  
  11.         IF BLClipText$:<>""
  12.             BLBgSwitchto:("Spell")
  13.             PAUSE 40
  14.             BLClickCancel:
  15.             BLKeyCommand:("CTRL+V")
  16.             BLKeyCommand:("CTRL+S")
  17.             PAUSE 20
  18.             BLForeground:
  19.             BLWaitforOK:
  20.             BLKeyCommand:("CTRL+C")
  21.             BLBackground:
  22.             BLSwitchtoCurrent:
  23.             BLKeyCommand:("CTRL+V")
  24.         ENDIF
  25. ENDP
  26.  
  27.  
  28.  
  29.  
  30.