Simply extract and copy "DialogXtra.x32" to your xtra directory of your Director
Installation
DESCRIPTION:
Creates a dialog box
USAGE:
object = new(xtra "DialogXtra")
object.MessageBox("Title","Message")
-----------------------------------------------------------------------------
OkCancelBox(Object me, String Title, String Message)
DESCRIPTION:
Creates an Ok/Cancel dialog box
USAGE:
object = new(xtra "DialogXtra")
if (object.OkCancelBox("Title","Message") = "Cancel") then
alert "You Cancelled!"
end if
-----------------------------------------------------------------------------
YesNoCancelBox(Object me, String Title, String Message)
DESCRIPTION:
Creates a Yes / No / Cancel dialog box
USAGE:
object = new(xtra "DialogXtra")
if (object.YesNoCancelBox("Title","Message") = "Cancel") then
alert "You Cancelled!"
end if
-----------------------------------------------------------------------------
YesNoBox(Object me, String Title, String Message)
DESCRIPTION:
Creates a Yes / No dialog box
USAGE:
object = new(xtra "DialogXtra")
if (object.YesNoBox("Title","Message") = "Yes") then
alert "You selected YES!"
end if
-----------------------------------------------------------------------------
RetryCancelBox(Object me, String Title, String Message)
DESCRIPTION:
Creates a Retry / Cancel dialog box
USAGE:
object = new(xtra "DialogXtra")
if (object.RetryCancelBox("Title","Message") = "Cancel") then
alert "You Cancelled!"
end if
-----------------------------------------------------------------------------
AbortRetryCancelBox(Object me, String Title, String Message)
DESCRIPTION:
Creates a Abort / Retry / Cancel dialog box
USAGE:
object = new(xtra "DialogXtra")
if (object.AbortRetryCancelBox("Title","Message") = "Cancel") then
alert "You Cancelled!"
end if