I need to parse an html source in order to obtain some links…
Let’s assume we have:
<html>
<head>....</head>
<body>
<div ....>
....
<a href="link0">
<div class="class1">
<a href="link1">
</div>
<a href="link2">
</div>
</body>
</html>
I only want the link1 which is a child of a div with class class1
I really can’t figure it out…
Have a look at this tutorial on working with XML in ActionScript.