All dialog boxes displayed by applications are HTML pages that function as custom HTML dialogs, such as the About dialog box.
You can edit the HTML code of these dialog boxes to customize or translate their contents. However, modifying scripts or forms within these HTML pages is not recommended. These pages are managed by internal scripts that govern application functionality.
To edit a dialog box or related resource, select it from the list and click Edit (or double-click it). The internal HTML editor will appear. Press OK to save your changes. It is your responsibility to ensure the pages function correctly after modifications.
To import or export a dialog box or related resource, select it from the list and click XML. Choose Import/Export, and you will be prompted to enter the filename for the XML file. Pages are stored as CDATA items in XML format, allowing editing with any XML editor (or even Notepad).
When you import a page, the existing one is overwritten without a prompt.
Dialog boxes utilize resource strings, termed “Strings for Dialog Boxes,” for easier localization. All references to these strings are directly replaced when ExeOutput for PHP compiles the application. To insert a reference to a string for a dialog box, use this syntax: [#ID], where ID is the string’s ID (IDs always begin with Y). For example, [#YAbout] will be replaced with the value of YAbout, which is “About”.
By default, dialog boxes can be resized by users. To prevent this, add the following meta tag to the <head> section of the system HTML page’s code:
<meta name="WindowNoResize" content="1">