home *** CD-ROM | disk | FTP | other *** search
/ Galleria D'arte: Manet / Manet.iso / Dati / alert.dxr / 00007.ls < prev    next >
Encoding:
Text File  |  2000-12-21  |  384 b   |  28 lines

  1. global gcaption, gMessage, gIcon
  2.  
  3. on close
  4.   tell the stage
  5.     close(window("alert"))
  6.   end tell
  7. end
  8.  
  9. on deactivateWindow
  10.   moveToFront(window("alert"))
  11. end
  12.  
  13. on openWindow
  14.   beep()
  15. end
  16.  
  17. on prepareMovie
  18.   put gcaption into member "Caption"
  19.   put gMessage into member "Message"
  20. end
  21.  
  22. on startMovie
  23.   sprite(6).member = gIcon
  24.   if gIcon = "Question" then
  25.     go("Question")
  26.   end if
  27. end
  28.