home *** CD-ROM | disk | FTP | other *** search
/ Maximum 3D 3 / m3d-p3.iso / 3DS_MAX / 3DSMAX.2_0 / SCRIPTS / PLAYEVER.MS < prev    next >
Text File  |  1997-10-19  |  676b  |  27 lines

  1. -- This is a little utility that puts up a start and
  2. -- stop play button that will keep MAX running its
  3. -- animation indefinitely.  The MAX play button in the UI
  4. -- cancels out of play after a few minutes.
  5. --    Handy for running un-attended animation demos.
  6. --
  7. --                            John Wainwright
  8. -- Note: This script works only on Windows NT and not on 95.
  9.  
  10. utility playon "Play Forever"
  11. (
  12.     local running
  13.     
  14.     button start "Start play"
  15.     button stop "Stop play"
  16.     on start pressed do
  17.     (
  18.         running = true
  19.         while running do playAnimation ()
  20.     )
  21.     on stop pressed do
  22.     (
  23.         running = false
  24.         stopAnimation  ()
  25.     )
  26. )
  27.