Hi, I would like to access a variable(txt1) set on an input box. The input box is in a movie clip called txt_0143. am trying to access it in the parent movie clip called part_0.010 . So the hierarchy goes as root->part_0.010->txt_0143->txt1.
I have used the following function on another sibling clip in part_0.010:
on (release) {
getURL("http://www.google.com/?q=" + txt1, "_blank");
}
When I just use the txt1 in the script from part_0.010, i get _level0.instance28.rm.txt1 in the place where the text should be.
Else i tried _root.txt_0143.txt1, gives me undefined.