b0x4it Posted July 7, 2011 Posted July 7, 2011 How can I open IE without any toolbar and status-bar and then load a url in it, just like what pop up banners do?
wakillon Posted July 7, 2011 Posted July 7, 2011 Something like this ? $oIE = ObjCreate ( "InternetExplorer.Application" ) $oIE.Visible = 1 $oIE.Left = 0 $oIE.Top = 0 $oIE.Width = @DesktopWidth /3 $oIE.Height = @DesktopHeight /3 $oIE.Menubar = 0 $oIE.Toolbar = 0 $oIE.Statusbar = 0 $oIE.Resizable = 0 $oIE.Navigate ( 'http://www.autoitscript.com' ) JoshuaBarnette 1 AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts
b0x4it Posted July 8, 2011 Author Posted July 8, 2011 Something like this ? $oIE = ObjCreate ( "InternetExplorer.Application" ) $oIE.Visible = 1 $oIE.Left = 0 $oIE.Top = 0 $oIE.Width = @DesktopWidth /3 $oIE.Height = @DesktopHeight /3 $oIE.Menubar = 0 $oIE.Toolbar = 0 $oIE.Statusbar = 0 $oIE.Resizable = 0 $oIE.Navigate ( 'http://www.autoitscript.com' ) thank you very much. it is working
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