environment a
initialshells:"b c"
{
	menu b
	(
	button "Update Label" 
		updateobject:"c:LABEL:I been updated"
		;
	button "Update Button" 
		updateobject:"c:BUTTON:I been updated"
		;
	button "Update Table(1,1)" 
		updateobject:"c:TABLE(1,1):5"
		;
	button "Update Table(1)" 
		updateobject:"c:TABLE(1):6,7"
		;
	button "Update Table" 
		updateobject:"c:TABLE:8,9,10,11"
		;
	button "Quit" 
		exit:0
		;
	)
	commandboard c
		x:300 y:0
		pane:on
		panetype:squish
		setVAR:""
	(
	label LABEL 
		;
	button BUTTON 
		setVAR:"ButtonPressed"
		updateobject:"c:TEXT:$VAR"
			;
	textentry TEXT
		valuestring:"This is a text"
			;
	table TABLE
		rows:2
		rowheadings:"1,2"
		rowsdisplayed:2
		rowheight:30
		columns:2
		columnheadings:"1,2"
		columnsdisplayed:2
		columnwidth:30
		rowvalue:"1,2"
		rowvalue:"3,4"
		;
	)
}
