kaihsin1703 發表於 2023-3-30 11:17

GUICtrlCreateObj($oIE, 0, 0,@DesktopWidth/2, @DesktopHeight/2)

#include <GUIConstants.au3>
#include <GuiConstantsEx.au3>
#include <WindowsConstants.au3>
#Include <GuiSlider.au3>
#include <IE.au3>

GUICreate("Google", @DesktopWidth/2, @DesktopHeight/2, 0, 0)

Local $oIE = _IECreateEmbedded(), $msg, $sHtml_File
GUICtrlCreateObj($oIE, 0, 0,@DesktopWidth/2, @DesktopHeight/2)

GUISetState(@SW_SHOW)


While 1
_IENavigate($oIE, "https://www.google.de", 0) ;Offnet Google
Sleep (1000) ;Wartet 1 Sek.
$oIE.Document.Body.Style.Zoom = "100%"
Sleep (600000) ;Wartet 10 Min.
WEnd ;Aktualisiert Google
頁: [1]
查看完整版本: GUICtrlCreateObj($oIE, 0, 0,@DesktopWidth/2, @DesktopHeight/2)