68 lines
2.6 KiB
HTML
68 lines
2.6 KiB
HTML
<html xmlns:mso="urn:schemas-microsoft-com:office:office" xmlns:msdt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882">
|
|
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
<meta http-equiv="Expires" content="Tue, 04 May 1999 21:29:02 GMT">
|
|
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
|
|
<meta name="ProgId" content="FrontPage.Editor.Document">
|
|
<title>RCML - Tutorial Lesson 1</title>
|
|
<link rel="stylesheet" href="http://rcml/rcml.css" type="text/css">
|
|
|
|
<!--[if gte mso 9]><xml><mso:CustomDocumentProperties><mso:Assigned_x0020_To msdt:dt="string">felixA</mso:Assigned_x0020_To></mso:CustomDocumentProperties></xml><![endif]-->
|
|
<win32 STYLE="0x40" WINDOWSTYLE="0x80cc" STYLEEX="0x0" />
|
|
<style font-family="MS Sans Serif" font-size="8" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<LAYOUT>
|
|
<XYLAYOUT ANNOTATE="NO"/>
|
|
</LAYOUT>
|
|
<BUTTON ID="1" DEFPUSH="YES" TEXT="OK" X="125" Y="7"/>
|
|
<BUTTON ID="2" TEXT="Cancel">
|
|
<LOCATION RELATIVE="YES" Y="+3"/>
|
|
</BUTTON>
|
|
<CHECKBOX ID="1003" TEXT="Check1" WIDTH="41" X="7" Y="7"/>
|
|
<STRINGTABLE/>
|
|
</FORM>
|
|
</FORMS>
|
|
</RCML>
|
|
</pre>
|
|
</body>
|
|
</html>
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- Martian Text -->
|
|
<table border="0" cellpadding="0" cellspacing="0" height="39">
|
|
<tr>
|
|
<td><a class="logo" href="http://RCML">RCML</a> <span class="logodot">.</span> <span class="logohead">Tutorial. Lesson 1</span></td>
|
|
</tr>
|
|
</table>
|
|
<hr>
|
|
<p class="note">
|
|
|
|
<!-- The Document --><a href="http://rcml/tutorial/lesson2.htm">Lesson 2</a>
|
|
<p class="section">Lesson 1: Simple Dialogs
|
|
<p>This section will show how to construct a simple dialog using RCML. The goal will be to construct a dialog like:
|
|
<p><img border="0" src="tutorial/lesson1.gif" WIDTH="273" HEIGHT="114">
|
|
<p><b>Fig. 1: A dialog with one checkbox and two buttons</b><!-- End Document -->
|
|
<p>So what does the RCML file look like?</p>
|
|
<pre><?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></pre>
|
|
|
|
</body>
|