home *** CD-ROM | disk | FTP | other *** search
/ Creative Review 39 / Creative-Review-CD-ROM-39.iso / pc / pres / cr.dir / 00089_Script_89 < prev    next >
Text File  |  1998-07-10  |  589b  |  26 lines

  1. on moviescroller
  2.   set speed = ((the mouseH - 497) * .4)
  3.   
  4.   set the locV of sprite 34 to the locV of sprite 34 + speed
  5.   set the locV of sprite 35 to the locV of sprite 35 - speed
  6.   
  7.   
  8.   if the locV of sprite 34 < -423 then 
  9.     set the locV of sprite 34 to 312
  10.   end if
  11.   
  12.   if the locV of sprite 34 > 312 then 
  13.     set the locV of sprite 34 to -423
  14.   end if
  15.   
  16.   
  17.   if the locV of sprite 35 < -423 then 
  18.     set the locV of sprite 35 to 312
  19.   end if
  20.   
  21.   if the locV of sprite 28 > 312 then 
  22.     set the locV of sprite 28 to -423
  23.   end if
  24.   
  25.   updatestage
  26. end