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

  1.  
  2.  
  3. rem // Backlite+Plus macro - macPassword V1.0 by Chris Farwell.
  4.  
  5. PROC macPassoff:
  6.     BLBgSwitchtoSystem:
  7.     BLKeyCommand:("CTRL+S")
  8.     BLCursorRight:(1)
  9.     BLClickOK:
  10.     BLTypeText:("<PASSWORD>")
  11.     BLClickOK:
  12.     BLTypetext:("n")
  13.     BLClickOK:
  14.     BLClickCancel:
  15.     BLMessage:("Password OFF")
  16. ENDP
  17.  
  18. PROC macPasson:
  19.     BLBgSwitchtoSystem:
  20.     BLKeyCommand:("CTRL+S")
  21.     BLCursorRight:(1)
  22.     BLClickOK:
  23.     BLTypeText:("<PASSWORD>")
  24.     BLClickOK:
  25.     BLTypetext:("a")
  26.     BLClickOK:
  27.     BLClickCancel:
  28.     BLMessage:("Password ON")
  29. ENDP
  30.  
  31.  
  32.