I need to change the contents of a table cell based on which radio button a user clicks. But I can't find the syntax to do this! Here's what doesn't work, and the error message I get
cell1 = "some text"
Error:setRawValue is an unsupported operation for the exData object
cell1.rawValue = "some text"
Error:setRawValue is an unsupported operation for the exData object
cell1.value = "some text"
Error:Invalid property set operation; value doesn't have a default property
cell1.text = "some text"
Error:accessor 'cell1.text' is unknown.
cell1.value.text = "some text"
Error:accessor 'cell1.value.text' is unknown.
When none of those things worked, I tried using the syntax that sets the caption of a field: cell1.caption.value.text.value. Strangely, this *does* insert text in the table cell, but it inserts the text *in addition* to what's already there. I need to *replace* what's already there.
So I have two questions: 1) Can anyone tell me the right syntax, and 2) Where could I have found this information, if anywhere? I checked LCD help and googled for an answer, but didn't find anything.
Thanks!
Kathryn