home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 51 / Mobiclic51.iso / mac / DATA / COMMUNS / MOBICLIC_MENUS.CST / 00261_Script_TEMPO < prev    next >
Text File  |  2003-01-30  |  522b  |  23 lines

  1. property p_duree,p_FlagTempo
  2. -----------------
  3. on getPropertyDescriptionList me
  4.   return [#p_duree:[#comment: "durΘe de la tempo:",#format:  #integer, #default: 1 ]]
  5. end getPropertyDescriptionList
  6. ---------------------
  7. on exitFrame me
  8.   case(p_FlagTempo = VOID) of
  9.     1:
  10.       p_FlagTempo = 1
  11.       startTimer
  12.       go the frame
  13.     0:
  14.       case(the timer< 60*p_duree) of
  15.         1:
  16.           go the frame
  17.         0:
  18.           p_FlagTempo = VOID
  19.       end case  
  20.   end case
  21. end
  22. -------------------
  23.