# Copyright 2009 Autodesk, Inc.  All rights reserved.
# Use of this software is subject to the terms of the Autodesk license agreement 
# provided at the time of installation or download, or which otherwise accompanies
# this software in either electronic or hard copy form.
#
# Topic: FBMessageBox
#

from pyfbsdk import FBMessageBox

# Simple message box: just a OK button.
FBMessageBox( "TitleString First", "MessageString\nOnly one button:", "OK" )

# With 3 buttons this time.
FBMessageBox( "TitleString Second", "MessageString\nThree buttons:", "OK", "Maybe", "Cancel" )

# Now with a multiline string.
FBMessageBox( "TitleString Third", "MessageString\nOne\nTwo\nThree\nFour\nFive\nSix\nSeven", "OK" )

# Cleanup.
del( FBMessageBox )