I found some delphi code and try to translate it on autoit
source:
function CrossDomainFrame(Doc : IHTMLDocument2;nFrame : Integer) : IWebBrowser2;
var
theContainer : IOLEContainer;
Enumerator : IEnumUnknown;
nFetched : PLongInt;
unknownFrame : IUnknown;
begin
Result := nil;
nFetched := nil;
the...