home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 May / PCWorld_2000-05_cd.bin / Komunik / amaya / amaya25.exe / _SETUP.1 / amaya.kb < prev    next >
Encoding:
Text File  |  2000-02-17  |  3.4 KB  |  113 lines

  1. # Be careful when using Alt key to define short cuts. 
  2. # Alt key, referenced by Windows API as VK_MENU is
  3. # usually used by Windows for some particular purposes
  4. # and especially default short cuts. Amaya also uses this
  5. # particular key to introduce its own short cuts without using
  6. # the Windows standard accelerator table.
  7. #
  8. # How to combine Alt key with other keys to define Amaya short cuts:
  9. #
  10. # You have to distinguish between <Alt><Key> sequence and
  11. # <Shift><Alt><Key> sequence. And if you combine Alt with 
  12. # another character from æaÆ to æzÆ always use uppercase.
  13. # For example:
  14. # Alt <Key>-        ZoonOut()    ## is correct
  15. # Alt <Key>+        ZoomIn()    ## is WRONG
  16. # Shift Alt <Key>+    ZoomIn()    ## is correct
  17. #
  18. # Alt <Key>R is different than Shift Alt <Key>R and we can
  19. # use both each for a given short cut. For example:
  20. # Alt <Key>R        Reload()    ## is correct
  21. # Shift Alt <Key>R    CreateMROOT()    ## is correct
  22. #
  23. # Alt <Key>r                ## WRONG
  24. # Shift Alt <Key>r            ## WRONG
  25. #
  26. # WARNING WARNING WARNING WARNING WARNING
  27. # =============================================
  28. # ACCORDING TO WHAT MENTIONNED ABOVE, THIS 
  29. # AMAYA.KB FILE MAY NOT WORK WITH YOUR 
  30. # KEYBOARD BECAUSE IT DEPENDS ON IT. THIS FILE
  31. # WAS DEVELOPED FOR A GIVEN **QWERTY** AND 
  32. # YOU HAVE TO ADAPT IT TO YOUR OWN ONE.
  33. #
  34. # Ramzi GUETARI (Ramzi.Guetari@w3.org)
  35. #
  36.  
  37. # personnal keyboard
  38.  
  39. <Key>Delete:    TtcDeleteSelection()
  40. <Key>F2:    TtcParentElement()
  41. <Key>Return:    TtcCreateElement()
  42. <Key>Home:    TtcStartOfLine()
  43. <Key>End:    TtcEndOfLine()
  44. <Key>L6:    TtcCopyToClipboard()
  45. <Key>L8:    TtcPasteFromClipboard()
  46. <Key>F6:    TtcCopyToClipboard()
  47. <Key>F8:    TtcPasteFromClipboard()
  48. #Ctrl <Key>Up:       TtcLineUp()
  49. #Ctrl <Key>Down:     TtcLineDown()
  50.  
  51. Ctrl <Key>Return:    CreateBreak("\212")
  52. Ctrl <Key>Space:    TtcInsertChar("\240")
  53. Ctrl <Key>-:    TtcChildElement()
  54. Ctrl <Key>1:    CreateHeading1()
  55. Ctrl <Key>2:    CreateHeading2()
  56. Ctrl <Key>3:    CreateHeading3()
  57. Ctrl <Key>4:    CreateHeading4()
  58. Ctrl <Key>5:    CreateHeading5()
  59. Ctrl <Key>6:    CreateHeading6()
  60. Ctrl <Key>a:    TtcStartOfLine()
  61. Ctrl <Key>b:    TtcPreviousElement()
  62. Ctrl <Key>c:    TtcCopySelection()
  63. Ctrl <Key>d:    TtcDeleteSelection()
  64. Ctrl <Key>f:    TtcSearchText()
  65. Ctrl <Key>h:    CreateHorizontalRule()
  66. Ctrl <Key>n:    TtcNextElement()
  67. Ctrl <Key>l:    CreateOrChangeLink()
  68. Ctrl <Key>o:    OpenDoc()
  69. Ctrl <Key>p:    SetupAndPrint()
  70. Ctrl <Key>r:    Synchronize()
  71. Ctrl <Key>s:    SaveDocument()
  72. Ctrl <Key>t:    CreateTarget()
  73. Ctrl <Key>v:    TtcPaste()
  74. Ctrl <Key>x:    TtcCutSelection()
  75. Ctrl <Key>y:    TtcRedo()
  76. Ctrl <Key>z:    TtcUndo()
  77. Ctrl <Key>w:    CloseDocument()
  78.  
  79. Shift Ctrl <Key>D:    DeleteAnchor()
  80. Shift Ctrl <Key>E:    SetOnOffEmphasis()
  81. Shift Ctrl <Key>F:    CreateTarget()
  82. Shift Ctrl <Key>L:    LinkToPreviousTarget()
  83. Shift Ctrl <Key>N:      New()
  84. Shift Ctrl <Key>S:    SetOnOffStrong()
  85. Shift Ctrl <Key>T:    CreateMTABLE()
  86. Shift Ctrl <Key>R:    CreateMROW()
  87.  
  88. # Alt commands
  89. Alt <Key>Return: DoAction()
  90. Alt <Key>-:    ZoomOut()
  91. Alt <Key>F3:    TtcSearchText()
  92. Alt <Key>F4:    TtcCloseDocument()
  93.  
  94. Alt <Key>R:    Reload()
  95. Alt <Key>E:    CreateMath()
  96. Alt <Key>F:    CreateMFRAC()
  97. Alt <Key>M:    CreateMMULTISCRIPTS()
  98. Alt <Key>O:    CreateMOVER()
  99. Alt <Key>P:    CreateMSUP()
  100. Alt <Key>Q:    CreateMSQRT()
  101. Alt <Key>S:    CreateMSUB()
  102. Alt <Key>U:    CreateMUNDER()
  103. Alt <Key>W:    CreateMROW()
  104. Alt <Key>X:    CreateMSUBSUP()
  105. Alt <Key>Y:    CreateMUNDEROVER()
  106.  
  107. Shift Alt <Key>!:    CreateMSUBSUP()
  108. Shift Alt <Key>_:    CreateMUNDEROVER()
  109. Shift Alt <Key>+:    ZoomIn()
  110. Shift Alt <Key>R:    CreateMROOT()
  111.  
  112.