Form Actions for Simple Window

Form Actions for Simple Window

Press this button to Create New Simple Window Form

Change window coordinate

x   y  

Change window size

width   height  

Load URL

 

<HEAD>
<link href="common_codethat.css" rel="stylesheet" type="text/css">

<script language="javascript1.2" src="codethatsdk.js"></script>
<script language="javascript1.2" src="jsform/codethatform_windowed.js"></script>
<script language="javascript1.2">
<!--
var w;
var html = "table border=0 cellpadding=4 cellspacing=2 " +
	"width=100%><tr><td>" +
	"<p class=title><img src='img/alarm.gif' align=left " +
	"valign=bottom>&nbsp;It's time to wake up!</td></tr>";

function wincreate () {
	w = new CWindow(
		384, 256, 150, 10, 'CodeThatForm - windowed',
		html, '#F0DCA3', '', '', '/common_codethat.css', 1,1
	);
	w.create();
}
//-->
</script>
</head>
<body>
<form>
<P class=title3>
<IMG height=15 src="/img/arrow_light.gif" width=13>
&nbsp;Press this button to Create New Simple Window Form
&nbsp;&nbsp;
<input class=btn type=button onclick="wincreate()" 
 value="Create New Box">

<P class=title3>
<IMG height=15 src="/img/arrow_light.gif" width=13>
&nbsp;Change window coordinate
<p>
<b>x</b>&nbsp;<input class=formlist style="width: 50px" 
               name=x value=300>&nbsp;&nbsp;&nbsp;
<b>y</b>&nbsp;<input class=formlist style="width: 50px" 
               name=y value=200>
&nbsp;&nbsp;&nbsp;<input type=button value="Move" class="btn" 
onclick="if (w == null) alert('You should create at least one 
Windowed Form. Press Create New Box button.'); 
else if (x.value == null) alert('You should enter x-coordinate.'); 
else if (y.value == null) alert('You should enter y-coordinate.'); 
else w.move(x.value, y.value)">

<P class=title3>
<IMG height=15 src="/img/arrow_light.gif" width=13>
&nbsp;Change window size
<p>
<b>width</b>&nbsp;<input class=formlist style="width: 50px"
                   name=win_width value=400>
&nbsp;&nbsp;&nbsp;
<b>height</b>&nbsp;<input class=formlist style="width: 50px" 
                    name=win_height value=100>
&nbsp;&nbsp;&nbsp;<input type=button value="Resize" 
 class="btn" onclick="if (w == null) alert('You should create 
at least one Windowed Form. Press Create New Box button.'); 
else if (win_width.value == null) alert('You should enter width.'); 
else if (win_height.value == null) alert('You should enter height.'); 
else w.resize(win_width.value, win_height.value)">

<P class=title3>
<IMG height=15 src="/img/arrow_light.gif" width=13>&nbsp;Load URL
<p>
<input name=url maxlength=1024 size=30 
 value='http://www.codethat.com'>
&nbsp;&nbsp;&nbsp;<input type=button class=btn 
onclick="if (w == null) alert('You should create at least one
Windowed Form. Press Create New Box button.'); 
else w.loadURL(this.form.url.value)" value="Load">

</form>
</body>
</html>