home *** CD-ROM | disk | FTP | other *** search
/ Chip Hitware 6 / Chip_Hitware_Vol_06.iso / chiphit6 / online / ecard2 / control2.c95 < prev    next >
Encoding:
Text File  |  1996-07-10  |  1010 b   |  63 lines

  1. >actor CONTROL2
  2. ;
  3. ;  FORWARD / BACK / RESET Control for E-Card's
  4. ;
  5. ;  TO USE:
  6. ;    Compose a card using Visual Workshop
  7. ;    Add frames with a hold time of 999 (for user input)
  8. ;    Return to frame 1 and select FILE | ADD OBJECT
  9. ;    Navigate to the TOOLS directory and select CONTROL3.C95
  10. ;    ** This must be 1st object you add so it will be #1 **
  11. ;
  12. ;    Text Panels 2-9 are cleared by this control.
  13. ;    Use Panels 0-1 for Title or other constant information.
  14. ;
  15. #CONTROL2
  16. >click 0 0 15 15 context loop #gotbak
  17. >click 20 0 35 15 context loop #gotfwd
  18. >click 32 0 45 15 0 loop #gotstart
  19. >pause 99
  20. CONTROL2.GIF
  21. >repeat 9999
  22.  
  23. #gotfwd
  24. >text 2
  25. >text 3
  26. >text 4
  27. >text 5
  28. >text 6
  29. >text 7
  30. >text 8
  31. >text 9
  32. >resume 0
  33. >loop #CONTROL2
  34.  
  35. #gotbak
  36. >text 2
  37. >text 3
  38. >text 4
  39. >text 5
  40. >text 6
  41. >text 7
  42. >text 8
  43. >text 9
  44. >back 0
  45. >loop #CONTROL2
  46.  
  47. #gotstart
  48. >text 0
  49. >text 1
  50. >text 2
  51. >text 3
  52. >text 4
  53. >text 5
  54. >text 6
  55. >text 7
  56. >text 8
  57. >text 9
  58. >loop #START2
  59.  
  60. >end CONTROL2
  61. #START2
  62.  
  63.