AutoIt.de ShoutBox

  • Hi Scripter.
    Nur ganz Kurz, Hatte Langeweile :

    Kleinnes Programm, Das denn Aktuellen ShoutBox-Inhalt Ausliesst.
    Gedacht für Leute, Die sich noch nicht im Forum Anmelden Möchten,
    Aber immer Dass sehen Möchten, Wass die anderen Sagen.


    Spoiler anzeigen
    [autoit]


    #include <GUIConstantsEx.au3>
    #include <StaticConstants.au3>
    #include <WindowsConstants.au3>
    #include <IE.au3>

    [/autoit] [autoit][/autoit] [autoit]

    $oIE = _IECreateEmbedded ()

    [/autoit] [autoit][/autoit] [autoit]

    #Region ### START Koda GUI section ### Form=ShoutBoxLog
    $Gui = GUICreate("--> AutoIt.de <--", 640, 281, 192, 124)
    $Bowser = GUICtrlCreateObj($oIE, 152, 8, 481, 265)
    $Label1 = GUICtrlCreateLabel("Neuester Beitrag -->", 8, 13, 143, 20)
    GUICtrlSetFont(-1, 10, 800, 0, "MS Sans Serif")
    GUISetState(@SW_SHOW)

    [/autoit] [autoit][/autoit] [autoit]

    _IENavigate ($oIE, "http://www.autoit.de/index.php?page=ShoutboxContent")

    [/autoit] [autoit][/autoit] [autoit]

    GUISetState(@SW_SHOW)

    [/autoit] [autoit][/autoit] [autoit]

    #EndRegion ### END Koda GUI section ###

    [/autoit] [autoit][/autoit] [autoit]

    While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
    Case $GUI_EVENT_CLOSE
    Exit

    [/autoit] [autoit][/autoit] [autoit]

    EndSwitch
    WEnd

    [/autoit]

    Kommentare Erwünscht 8)

    Mfg DjD