home *** CD-ROM | disk | FTP | other *** search
/ Invenzioni E Inventori 1: Lavoro E Vita Quotidiana / invenzioni-inventori-1.iso / mac / Invenzio / Tori / Sharedi.cst / 03031_Script_3031 < prev    next >
Text File  |  1997-10-08  |  1KB  |  27 lines

  1. on VIDEO_SOTTOINV 
  2.   ---  PARAMETRI VIDEO
  3.   ---QCAST = NUMERO DEL CAST DEL VIDEO
  4.   ---QSPRITE=NUMERO DELLO SPRITE DEL VIDEO
  5.   ---QSPRITEL=NUMERO DELLO SPRITE DELLA LINEA
  6.   ---QSPRITEB=NUMERO DELLO SPRITE DELLA BARRA
  7.   global membro_quicktime,canale_quicktime,canale_linea,canale_barra,canale_pausa,vidstat
  8.   video membro_quicktime,canale_quicktime,canale_linea,canale_barra 
  9.   
  10.   if vidstat = "play" or vidstat = "avveloce" or vidstat = "inveloce" then
  11.     
  12.     if not voidp(canale_quicktime) and canale_quicktime > 0 then
  13.       if the castnum of sprite canale_quicktime >0 then 
  14.         if the casttype of member the castnum of sprite canale_quicktime of castlib the castLibNum of sprite canale_quicktime= #digitalvideo then
  15.           if the visible of sprite canale_quicktime =false or vidstat = "stop" then
  16.             exit
  17.           else
  18.             if the movieRate of sprite canale_quicktime=0 then
  19.               set the visible of Sprite canale_pausa to false
  20.             end if
  21.             
  22.           end if
  23.         end if
  24.       end if
  25.     END IF
  26.   END IF
  27. end