
include star1

logo animation
message "Stars aplenty.." "Stop"
logo backcolor "black"
clear

logo linecolor = backcolor   // to hide star outlines 

repeat untilbreak [
  pu 
  moveto (random winwide) (random winhigh) 
  logo fillcolor = randomcolor
  star1 (random 40) 0
  fillshape
  if keypress = yes [ break ]
  // this slows things down a bit..
  wait 1
  ]

