.  Tutorial. Lesson 1

Lesson 2

Lesson 1: Simple Dialogs

This section will show how to construct a simple dialog using RCML.  The goal will be to construct a dialog like:

Fig. 1: A dialog with one checkbox and two buttons

So what does the RCML file look like?

<?xml version="1.0"?>
<RCML>
    <FORMS>
        <FORM TITLE="Simplest Dialog" WIDTH="182" HEIGHT="54" RESIZE="Automatic" FONT-FAMILY="MS Sans Serif" FONT-SIZE="8">
            <STYLE FONT-FAMILY="MS Sans Serif" FONT-SIZE="8"/>
            <BUTTON ID="1" TEXT="OK" X="125" Y="7" DEFPUSH="YES"/>
            <BUTTON ID="2" TEXT="Cancel" X="125" Y="24"/>
            <CHECKBOX ID="1003" TEXT="Check1" WIDTH="41" X="7" Y="7"/>
        </FORM>
    </FORMS>
</RCML>