LOULOU Posted May 19, 2005 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
SvenP Posted May 19, 2005 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
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now