There is a page:
http://vkontakte.ru/share.php?url=google.com
that has an IFRAME.
I try to access IFRAME DOM
:
html = new HTMLLoader();
var urlReq:URLRequest = new URLRequest("http://vkontakte.ru/share.php?url=google.com");
...
trace(html.window.document); // return DOM object. It's ok.
trace(html.window.document.getElementsByTagName("iframe").contentDocument); // return undefined, and that is the problem