On Tue, 17 Aug 2004 19:41:02 -0400, MTC <> wrote:
[snip]
> I know I need to address the frame name but what am I missing?
>
> Parent.frames("middle").TextText.value = "here is the data"
Four things:
1) You don't subscript an array with parentheses - you use brackets.
2) A reference to the form.
3) Parent should be in all lowercase.
4) The semicolon (

- not strictly necessary, but good form.
Try:
parent.frames['middle'].forms['testform'].elements[
'TextText'].value = 'Here is the data.';
Forgive any errors in that; I never use frames so my syntax might be off.
It should help you on your way, though.
Mike
--
Michael Winter
Replace ".invalid" with ".uk" to reply by e-mail