|
Popup About Box Dialog
The xDialog About Box dialog lets you add professional looking about
boxes to you AMS applications.
You can set the title, the icon or have no icon, the version, the main text, the
website link or have no link, the width and the height. See the example code
below.
Download Demo Application
to see it in action.

This example assume that the xDialog functions have been added to
the Global functions. You can easily do this using the Add Code button on
the Script Editor.
Example
-- Setup the information to display on the about box
sWindowTitle = "About xDialog"
sTitle = "xDialog"
sVersion = "Version 1.0"
sIcon = _SourceFolder.."\\AutoPlay\\Icons\\xDialogIcon.ico"
sDescription = "xDialog adds seven powerful tools to AutoPlay media Studio.\r\n\r\nCopyright © 2006 All Rights Reserved"
sWebAddress = "www.xdialog.com"
-- Show the about box
result = xDialog.Show_AboutBox(sWindowTitle, sTitle, sVersion, sIcon, sDescription, sWebAddress, 300, 200)
|
|