home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #3 / K-CD-3-2002.ISO / K-CS.DCR / 00470.ls < prev    next >
Encoding:
Text File  |  2002-01-14  |  324 b   |  18 lines

  1. global StartTid
  2.  
  3. on new me
  4.   startTimer()
  5.   set the width of sprite 94 to 208
  6.   set the locH of sprite 94 to 59
  7. end
  8.  
  9. on exitFrame
  10.   if the timer < 640 then
  11.     set the locH of sprite 94 to (the timer / 20 * 9) + 65
  12.     set the width of sprite 94 to 223 - (the timer / 20 * 9)
  13.     go(#loop)
  14.   else
  15.     go(#next)
  16.   end if
  17. end
  18.