Announcement

Collapse
No announcement yet.

MAXScript messageBox - different types?

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

  • MAXScript messageBox - different types?

    Hi all

    Can I get different types of message boxes?

    I just want to display a general info message and the standard message box makes it look like an error message because of the big yellow "!" icon in the window
    Kind Regards,
    Morne

  • #2
    Pass false for the "beep" argument and it will remove the yellow exclamation mark:
    Code:
    messageBox "test" beep:false
    Best regards,
    Vlado
    I only act like I know everything, Rogers.

    Comment


    • #3
      Originally posted by vlado View Post
      Pass false for the "beep" argument and it will remove the yellow exclamation mark:
      Code:
      messageBox "test" beep:false
      Best regards,
      Vlado
      Ah cool thanks that works. I saw the beep thing in help docs but thought it only relates to the yes/no box
      Kind Regards,
      Morne

      Comment

      Working...
      X