Damein Posted November 30, 2011 Posted November 30, 2011 (edited) So I know that you do do something like this $Gui = GuiCreate("Current Weather", 800,600) $EmbedIE = _IECreateEmbedded() $GUIActiveX = GUICtrlCreateObj($EmbedIE, -100, 10, 600, 500) And it will zoom -100 into the IE window. But how do I still accomplish the zoom AND keep the left and top position of the object the same. This is what I want. $Gui = GuiCreate("Current Weather", 800,600) $EmbedIE = _IECreateEmbedded() $GUIActiveX = GUICtrlCreateObj($EmbedIE, -100, 10, 600, 500) GuiCtrlSetPos($GuiActiveX, 10,10) But that doesn't allow for the cropping to show only what I want. Edited November 30, 2011 by Damein Reveal hidden contents Most recent sig. I made Quick Launcher W/ Profiles Topic Movie Database Topic & Website | LiveStreamer Pro Website | YouTube Stand-Alone Playlist Manager: Topic | Weather Desktop Widget: Topic | Flash Memory Game: Topic | Volume Control With Mouse / iTunes Hotkeys: Topic | Weather program: Topic | Paws & Tales radio drama podcast mini-player: Topic | Quick Math Calculations: Topic
Damein Posted December 4, 2011 Author Posted December 4, 2011 Still looking for some help on this. Can't find a way to do it Reveal hidden contents Most recent sig. I made Quick Launcher W/ Profiles Topic Movie Database Topic & Website | LiveStreamer Pro Website | YouTube Stand-Alone Playlist Manager: Topic | Weather Desktop Widget: Topic | Flash Memory Game: Topic | Volume Control With Mouse / iTunes Hotkeys: Topic | Weather program: Topic | Paws & Tales radio drama podcast mini-player: Topic | Quick Math Calculations: Topic
Damein Posted December 11, 2011 Author Posted December 11, 2011 I know we aren't suppose to bump, but I'm still trying to get this to work Reveal hidden contents Most recent sig. I made Quick Launcher W/ Profiles Topic Movie Database Topic & Website | LiveStreamer Pro Website | YouTube Stand-Alone Playlist Manager: Topic | Weather Desktop Widget: Topic | Flash Memory Game: Topic | Volume Control With Mouse / iTunes Hotkeys: Topic | Weather program: Topic | Paws & Tales radio drama podcast mini-player: Topic | Quick Math Calculations: Topic
taietel Posted December 12, 2011 Posted December 12, 2011 (edited) Try this: #include <IE.au3> $sLink="autoitscript.com" $iZoom = 60 $oIE = ObjCreate("Shell.Explorer.2") GUICreate('Test', 700, 500) GUICtrlCreateObj($oIE, 5,5, 690, 490) GUISetState() _IENavigate($oIE, "about:blank") _IEBodyWriteHTML($oIE, "<iframe style='zoom:" & $iZoom & "%' src='http://" & $sLink & "' width='100%' height='100%'>") While 1 Sleep(10) Switch GUIGetMsg() Case -3 Exit EndSwitch WEnd EDIT: tags Edited December 12, 2011 by taietel Things you should know first...In the beginning there was only ONE! And zero... Progs: Reveal hidden contents Create PDF(TXT2PDF,IMG2PDF) 3D Bar Graph DeskGadget Menu INI Photo Mosaic 3D Text
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