forum.technik-hobby.de
AutoIt Syntax-Highlighting - Druckversion

+- forum.technik-hobby.de (https://forum.technik-hobby.de)
+-- Forum: AutoIt (https://forum.technik-hobby.de/forum-1.html)
+--- Forum: Hilfe und Unterstützung (https://forum.technik-hobby.de/forum-2.html)
+--- Thema: AutoIt Syntax-Highlighting (/thread-7.html)



AutoIt Syntax-Highlighting - Gorathan - 28.04.2017

Um hier im Forum AutoIt-Scripte mit Syntax-Highlighting anzuzeigen, muss der "Einfügen"-Button angeklickt werden.
Dort dann "Programmcode" auswählen und als Beschreibung "autoit" eingeben.

Das Ganze sieht dann so aus:

#include <GUIConstantsEx.au3>

Example()

Func Example()
    ; Create a GUI with various controls.
    Local $hGUI = GUICreate("Example")
    Local $idOK = GUICtrlCreateButton("OK", 310, 370, 85, 25)

    ; Display the GUI.
    GUISetState(@SW_SHOW, $hGUI)

    ; Loop until the user exits.
    While 1
        Switch GUIGetMsg()
            Case $GUI_EVENT_CLOSE, $idOK
                ExitLoop

        EndSwitch
    WEnd

    ; Delete the previous GUI and all controls.
    GUIDelete($hGUI)
EndFunc   ;==>Example

Bei längeren Quelltexten bitte zusätzlich noch den "Spoiler tag" benutzen. Der findet sich ebenfalls beim "Einfügen"-Button.
Hier ist die Beschreibung optional. In der Quelltext-Ansicht kann man die TAGs sehen!

Das sieht dann so aus:
Show ContentAutoIt-Programm: