home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 2: Collection B / 17Bit_Collection_B.iso / files / 1438.dms / in.adf / BASIC_HELP / help5 < prev    next >
Encoding:
Text File  |  1978-09-12  |  1.8 KB  |  69 lines

  1. MENU
  2. Allows the creation of a menu bar. You can the title, the position and the
  3. state etc.
  4. MERGE
  5. Joins a program that has been saved in ASCII format.
  6. Probably most useful when used in direct mode.
  7. MID$
  8. This returns the middle of a string.
  9. You can set the starting position of the string and its length.
  10. eg/MID$("house",3,1) would be "u"
  11. MKD$
  12. Turns numeric values into strings for storage in a random file.
  13. MOD
  14. Modulo arithmetic. Gives the remainder after a division.
  15. MOUSE
  16. Returns information about the mouse.
  17. NAME
  18. Renames a file to the new name.
  19. NEW
  20. A menu item performs the same function.
  21. NEXT
  22. Used in conjunction with the FOR statement. See FOR.
  23. NOT
  24. Logical operator.
  25. OBJECT.AX
  26. Sets the aceleration of an object in the x direction.
  27. OBJECT.AY
  28. Sets the aceleration of an object in the y direction.
  29. OBJECT.CLIP
  30. Stops the drawing of objects outside a given rectangle.
  31. OBJECT.CLOSE
  32. Releases memory used by one or more objects.
  33. OBJECT.HIT
  34. Determines collision objects.
  35. OBJECT.OFF
  36. Removes one or more objects from the screen.
  37. OBJECT.ON
  38. Places objects on the screen.
  39. OBJECT.PLANES
  40. Sets planepick and place-on-off masks.
  41. OBJECT.PRIORITY
  42. Sets object priority. Which one is in front?
  43. OBJECT.SHAPE
  44. Defines an object.
  45. OBJECT.START
  46. Starts object movement.
  47. OBJECT.STOP
  48. Stops object movement.
  49. OBJECT.VX
  50. Sets the object velocity in the x direction.
  51. OBJECT.VY
  52. Sets the object velocity in the y direction.
  53. OBJECT.X
  54. Sets the x-co-ord of an object.
  55. OBJECT.Y
  56. Sets the y-co-ord of an object.
  57. OCT$
  58. Gives the octal version of a decimal number.
  59. OFF
  60. Used in conjunction with many commands, such as MENU,MOUSE,BREAK,OBJECT etc.
  61. ON
  62. Used in conjunction with many commands, such as MENU,MOUSE,BREAK,OBJECT etc.
  63. OPEN
  64. Used to open a file for reading or writing.
  65. OR
  66. Logical operator.
  67. OUTPUT
  68. Used in conjunction with the OPEN statement. Allows a file to be written to.
  69.