home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / programs / comms_networking / irclient / !IRClient / Scripts / User / Bindings < prev    next >
Encoding:
Text File  |  1997-03-06  |  1.2 KB  |  30 lines

  1. # This is a bindings file for IRClient
  2. # The format is :
  3. # [^][⇧]<key> <functions>
  4. # Where <key> is a key, such as A, B, F1, DELETE, BACKSPACE, RETURN etc
  5. # <functions> is a list of functions, each separated by ' :: '
  6. # A function with no parameters calls the IRBasic PROCedure directly, such
  7. # as 'CycleFocusForwards'
  8. # A function with parameters is called with one parameter pointing to a linked
  9. # list of the supplied parameters, which will either be integer values, or
  10. # String objects.  String objects are created only if the first character of
  11. # a parameter is a string, so to pass string variables to the procedure you
  12. # must use Function(""+variable$)
  13. # There are a number of callback functions defined in Scripts.KeyBinder, which
  14. # the default binding file uses.
  15. # Note that you must use spaces between the key and the commands - not TAB
  16. # characters
  17.  
  18. # Control Q closes a window, Control Shift Q also leaves it if were a channel
  19. ^Q      CycleFocusForwards :: _CloseDisplay(""+Display$)
  20. ^⇧Q     CycleFocusForwards :: _Leave(""+Display$)
  21.  
  22. # Shift up and down move the focus from window to window
  23. ⇧Up     CycleFocusForwards
  24. ⇧Down   CycleFocusBackwards
  25.  
  26. # Clipboard and selection control
  27. ^⇧C     CopySelection
  28. ^⇧V     PasteSelection
  29. ^Z      ClearSelection
  30.