home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 7 / HYPERLIB-1993-VOL7-CD2.ISO.7z / HYPERLIB-1993-VOL7-CD2.ISO / EcoWorld / EcoWorld / EcoWorld.rsrc / STR#_5000.txt < prev    next >
Text File  |  1993-08-09  |  1KB  |  139 lines

  1. then
  2.  
  3. send
  4.  
  5. return
  6.  
  7. repeat
  8.  
  9. pass
  10.  
  11. on
  12.  
  13. next
  14.  
  15. if
  16.  
  17. global
  18.  
  19. function
  20.  
  21. exit
  22.  
  23. end
  24.  
  25. else
  26.  
  27. do
  28.  
  29. --
  30.  
  31. repeat with...=repeat with | = xxx to xxx
  32.  
  33. end repeat
  34.  
  35. repeat while...=repeat while |
  36.  
  37. end repeat
  38.  
  39. repeat until..=repeat until |
  40.  
  41. end repeat
  42.  
  43. repeat for...=repeat for | times
  44.  
  45. end repeat
  46.  
  47. repeat ...=repeat
  48. |
  49. end repeat
  50.  
  51. on startUp...=on startUp
  52. |
  53. end startUp
  54.  
  55. on openWindow...=on openWindow
  56. |
  57. end openWindow
  58.  
  59. on openProject...=on openProject
  60. |
  61. end openProject
  62.  
  63. on openCard...=on openCard
  64. |
  65. end openCard
  66.  
  67. on openBackground...=on openBackground
  68. |
  69. end openBackground
  70.  
  71. on mouseUp...=on mouseUp
  72. |
  73. end mouseUp
  74.  
  75. on mouseStillDown=on mouseStillDown
  76. |
  77. end mouseStillDown
  78.  
  79. on mouseDown...=on mouseDown
  80. |
  81. end mouseDown
  82.  
  83. on idle...=on idle
  84. |
  85. end idle
  86.  
  87. on closeWindow...=on closeWindow
  88. |
  89. end closeWindow
  90.  
  91. on closeProject...=on closeProject
  92. |
  93. end closeProject
  94.  
  95. on closeCard...=on closeCard
  96. |
  97. end closeCard
  98.  
  99. on closeBackground...=on closeBackground
  100. |
  101. end closeBackground
  102.  
  103. on ...=on xxx
  104. |
  105. end xxx
  106.  
  107. lockscreen...=set lockscreen to true
  108. |
  109. set lockscreen to false
  110.  
  111. lockmessages...=set lockmessages to true
  112. |
  113. set lockmessages to false
  114.  
  115. lockmenus...=set lockmenus to true
  116. |
  117. set lockmenus to false
  118.  
  119. if...then=if | then xxx 
  120.  
  121. if...then...end=if | then
  122. xxx
  123. end if
  124.  
  125. if...then...else=if | then
  126. xxx
  127. else xxx
  128.  
  129. if...then...else...end=if | then
  130. xxx
  131. else
  132. xxx
  133. end if
  134.  
  135. function...=function xxx
  136. |
  137. end xxx
  138.  
  139.