home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / d_b_a / 86_12 / colors.sc < prev    next >
Text File  |  1986-11-04  |  369b  |  14 lines

  1. ;--------------------------------------- Colors.SC.
  2. ;-- Shows colors used with STYLE ATTRIBUTE command.
  3. ;------------------------------ Loop from 0 to 255.
  4. Counter = 0
  5. WHILE Counter <= 255
  6.       STYLE ATTRIBUTE Counter
  7.       ?? FORMAT("W5",Counter)
  8.       Counter = Counter + 1
  9. ENDWHILE
  10. @ 24,1
  11. ?? "Press any key when done viewing colors..."
  12. X = GETCHAR()
  13.  
  14.