Clear all input values...

Hey everyone:

Tried this many way, just wanted to see if there is good way to clear every user input value after they are done:

Values include Text Fields, Text Views, Combo Boxes, and Table Views

I can easily clear text fields however, it always seems to retain Table Views and Combo boxes.

Any Ideas??

Thanks

I like to have a subroutine to clear everything. I don’t know if this covers everything you need, but it will get you started:

on clearSelections()
	set variableOne to ""
	tell window "mainWindow"
			set string value of combo box "embossingSelect" to "Choose from the list"    --Change back to the default text
			set current column of matrix "thisColumnSelect" to 1   --sets a radio button thta has one row of many columns back to the first button
			set current row of matrix "thisRowSelect" to 1    --sets a radio button thta has one column of many rows back to the first button
			set the contents of text field "thisText" to ""
	end tell
end clearSelections

Model: G5
Browser: Safari 419.3
Operating System: Mac OS X (10.4)