home *** CD-ROM | disk | FTP | other *** search
/ Invenzioni E Inventori 1: Lavoro E Vita Quotidiana / invenzioni-inventori-1.iso / mac / Invenzio / Tori / Mp011.dir / 00066_Script_66 < prev    next >
Text File  |  1997-09-09  |  1KB  |  34 lines

  1.  on hi_nav dacast, acast, deltaspr, deltacast, nohiuno, nohidue,deltascritta
  2.   
  3.   repeat while the mousecast >=dacast and the mousecast <= acast
  4.     set miohilite = the mousecast
  5.     if miohilite >=dacast and miohilite <= acast then
  6.       repeat with mm = dacast to acast
  7.         set the castnum of sprite (mm-deltaspr) to mm
  8.         if not voidp (deltascritta) then
  9.           set the visible of sprite (mm-deltascritta) to false
  10.         end if
  11.         
  12.       end repeat
  13.       set the castnum of sprite (miohilite-deltaspr) to (miohilite+deltacast)
  14.       if not voidp (deltascritta) then
  15.         set the visible of sprite (miohilite-deltascritta) to true
  16.       end if
  17.       
  18.       updatestage
  19.     end if
  20.   end repeat
  21.   
  22.   
  23.   
  24.   if the mousecast = nohiuno or  the mousecast = nohidue then
  25.     repeat with mm = dacast to acast
  26.       set the castnum of sprite (mm-deltaspr) to mm
  27.       if not voidp (deltascritta) then
  28.         set the visible of sprite (mm-deltascritta) to false
  29.       end if
  30.       
  31.     end repeat  
  32.   end if
  33.   
  34. end