home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1996 October / PCO_10.ISO / filesbbs / ecard.arj / WHITE.C95 < prev    next >
Encoding:
Text File  |  1996-07-09  |  1.4 KB  |  79 lines

  1.  
  2. >actor CONTROLS
  3. ;
  4. ;  FORWARD / BACK / RESET Control for E-Card's
  5. ;
  6. ;  TO USE:
  7. ;    Compose a card using Visual Workshop
  8. ;    Add frames with a hold time of 999 (for user input)
  9. ;    Return to frame 1 and select FILE | ADD OBJECT
  10. ;    Navigate to the TOOLS directory and select CONTROLS.C95
  11. ;    (This must be 1st object you add so it will be #1)
  12. ;
  13. ;    Text Panels 2-9 are cleared by this control.
  14. ;    Use Panels 0-1 for Title or other constant information.
  15. ;
  16. #CONTROLS
  17. >click 0 0 30 30 1 loop #gotbak
  18. >click 35 0 60 30 1 loop #gotfwd
  19. >click 65 0 90 30 0 loop #gotstart
  20. >pause 99
  21. WHITECTL.GIF
  22. >repeat 9999
  23.  
  24. #gotfwd
  25. >text 2
  26. >text 3
  27. >text 4
  28. >text 5
  29. >text 6
  30. >text 7
  31. >text 8
  32. >text 9
  33. >resume 0
  34. >loop #CONTROLS
  35.  
  36. #gotbak
  37. >text 2
  38. >text 3
  39. >text 4
  40. >text 5
  41. >text 6
  42. >text 7
  43. >text 8
  44. >text 9
  45. >back 0
  46. >loop #CONTROLS
  47.  
  48. #gotstart
  49. >text 0
  50. >text 1
  51. >text 2
  52. >text 3
  53. >text 4
  54. >text 5
  55. >text 6
  56. >text 7
  57. >text 8
  58. >text 9
  59. >loop #START
  60.  
  61. >end CONTROLS
  62. #START
  63.  
  64.  
  65. >visual
  66. WHITE1.GIF
  67. >bigtext "-  Point 1"
  68. >bigtext ""
  69. >bigtext "-  Point 2"
  70. >bigtext ""
  71. >bigtext "-  Point 3"
  72. >text 3 size 30 italic color 128 0 128 at 59 189 bigtext
  73. >text 2 size 30 color 128 0 128 at 217 105 "Slide Subtitle"
  74. >text 0 size 40 color 0 255 0 at 30 57 "______________________________"
  75. >text 1 size 40 color 128 0 128 at 40 40 "Title . . ."
  76. >start 1 CONTROLS at 491 46 0 0
  77. >delay 999
  78.  
  79.