Hi:
I am trying to run the sample dialogs provided in the Window-eyes
Scripting manual, but I am encountering the following problem:
I have created a file called Messagebox.xml containing the following code:
<?xml version="1.0"?>
<wescriptui>
<dialog id="mymessagebox" sysmenu="yes" minimize="no">
My Message Box
<group childalign="center" justify="full">
<static textalign="center">Hello World!</static>
<spacer/>
<button width="+30">OK</button>
</group>
</dialog>
</wescriptui>
I am trying to bring up the dialog from an Immediate Mode window using
the following statement:
Dialog "messagebox.xml", "mymessagebox"
However, I am getting the following error:
Dialog "messagebox.xml", "mymessagebox"
What am I doing wrong and how do I correct the problem?
Kevin Huber