LOULOU 0 Posted May 19, 2005 $IE=Objcreate("InternetExplorer.Application.1") $IE.visible= 1 $IE.RegisterAsDropTarget = 1 $IE.RegisterAsBrowser = 1 $IE.navigate2("http://forums.purebasic.fr/") While $ie.ReadyState <> 4 Sleep(250) WEnd Dim $IEC $IEC = $IE.application.parent.frames.ORT.login.innertext ExitThe following code is not good$IE.application.parent.frames.ORT.login.innertextHow can i do to access Application.parent object ?Best regards Share this post Link to post Share on other sites
SvenP 0 Posted May 19, 2005 $IE=Objcreate("InternetExplorer.Application.1") $IE.visible= 1 $IE.RegisterAsDropTarget = 1 $IE.RegisterAsBrowser = 1 $IE.navigate2("http://forums.purebasic.fr/") While $ie.ReadyState <> 4 Sleep(250) WEnd Dim $IEC $IEC = $IE.application.parent.frames.ORT.login.innertext ExitThe following code is not goodHow can i do to access Application.parent object ?Best regards<{POST_SNAPBACK}>Since this is not really an AutoIt related issue, I suggest reading the Internet Explorer Object documentation. Like the one on:http://msdn.microsoft.com/library/default....rence_entry.aspIt looks like you are mixing up frames with forms.Regards,-Sven Share this post Link to post Share on other sites