home *** CD-ROM | disk | FTP | other *** search
/ <GEEK> 1 / GEEK1.ISO / geekko / dos.dxr / 00004_Main.ls < prev    next >
Encoding:
Text File  |  1997-05-24  |  422 b   |  30 lines

  1. global DosMIAW, theLastactiveWindow, thisIsA_PC, origWindowRectDagens
  2.  
  3. on startMovie
  4.   initializeDosMIAW()
  5. end
  6.  
  7. on initializeDosMIAW
  8.   set origWindowRectDagens to the rect of window the movieName
  9.   go(1)
  10. end
  11.  
  12. on closeWindow
  13.   close(window "Dos")
  14. end
  15.  
  16. on openWindow
  17.   initializeDosMIAW()
  18. end
  19.  
  20. on resizeWindow
  21. end
  22.  
  23. on zoomWindow
  24. end
  25.  
  26. on activateWindow
  27.   set theLastactiveWindow to the activeWindow
  28.   initializeDosMIAW()
  29. end
  30.