cypher175 Posted May 29, 2009 Posted May 29, 2009 Is there anyway to Add a IE Status Bar To this code below..?? $IE = _IECreateEmbedded() GUICreate("", 1100, 800) GUICtrlCreateObj($IE, 0, 0, 1100, 800) GUISetState() _IENavigate($IE, "http://www.google.com") sleep(10000)
PsaltyDS Posted May 29, 2009 Posted May 29, 2009 Is there anyway to Add a IE Status Bar To this code below..?? $IE = _IECreateEmbedded() GUICreate("", 1100, 800) GUICtrlCreateObj($IE, 0, 0, 1100, 800) GUISetState() _IENavigate($IE, "http://www.google.com") sleep(10000) An embedded browser is missing some functionality. You may have to just create your own status bar on your GUI with _GUICtrlStatusBar_Create() and update it with your own code. You'll have to poke around for what properties you can still check in an embedded browser, like $oIE.readyState, etc. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
cypher175 Posted June 1, 2009 Author Posted June 1, 2009 I cant seem to find much about _GUICtrlStatusBar_Create()..?? I just need like a IE loading progress bar.. that shows the loading progress when a webpage is loading.. has anyone made one like this before..??
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