Announcement

Collapse
No announcement yet.

Autosave toggle?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Autosave toggle?

    Just was curious if anyone has found a script or shortcut to enable/disable max's autosave?
    I want it on usually, but when I'm doing test rendering, it would be great to just have one step to enable or disable it...

    I remember Colin had made a similar one for me for DR on/off. Something like it would be great (except, for Autosave.)

    Thanks in advance.

  • #2
    Here you go...
    Code:
    macroScript Autosave_Toggle
    buttonText:"AS"
    category:"Preferences"
    internalCategory:"Preferences"
    tooltip:"Autosave Toggle"
    (
      on isChecked do (autosave.enable)
      on execute do
      (
        if autosave.enable then autosave.enable = false else autosave.enable = true
      )
    )
    Paste the code into a new script and run. Then if you go to the Toolbars tab in customize UI you should find it in the preferences category. The button should be 'wired' to the checkbox on the preferences dialogue box.
    Dan Brew

    Comment


    • #3
      Thank you very much Dan!

      Comment


      • #4
        Works perfectly, thanks again Mr. Brew

        Comment


        • #5
          You're welcome.
          Dan Brew

          Comment

          Working...
          X