home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2003 #3 / K-CD-3-2003.ISO / Tools / K-CS.DCR / 00200.ls < prev    next >
Encoding:
Text File  |  2002-04-19  |  581 b   |  20 lines

  1. property startPos, StartTicks
  2.  
  3. on new me
  4.   cursor(4)
  5.   set startPos to the locH of sprite 4
  6.   set StartTicks to the ticks
  7. end
  8.  
  9. on exitFrame
  10.   if the ticks > (StartTicks + 720) then
  11.     go(#next)
  12.   else
  13.     set the locH of sprite 4 to startPos - 6 + ((the ticks - StartTicks) / 5.09999999999999964)
  14.     set the width of sprite 4 to (the ticks - StartTicks) / 2.54999999999999982
  15.     set the locH of sprite 5 to startPos - 6 + ((the ticks - StartTicks) / 5.09999999999999964)
  16.     set the width of sprite 5 to (the ticks - StartTicks) / 2.54999999999999982
  17.     go(#loop)
  18.   end if
  19. end
  20.