Also, I looked into the HTML DOM thing you were talking about, and it does seem easier.
And there's this one line that seems to make sense for what I want:
node.getElementsByTagName("tagname");I'm using ActionScript (I don't know if you have any background in that), so I typed this in:
var table1:String = str.getElementsByTagName("TABLE");
But the line about shows an error for me. Now, am I not supposed to be searching through a string? Is that where I'm going wrong?
Or is the place that I'm trying to put the information that's between the table tags wrong? (I'm trying to put it into a string)
Thank you!
T