Hilfeee !

  • Hallo ich habe ein Problem nicht, das Radio-Funktion machen kann mir jemand helfen :thumbup:

    [autoit]

    #include <GUIConstantsEx.au3>
    #include <WindowsConstants.au3>
    #Region ### START Koda GUI section ### Form=
    $Form1 = GUICreate("Radio", 208, 69, 192, 124)
    $Checkbox1 = GUICtrlCreateCheckbox("KissFM", 8, 8, 97, 17)
    GUICtrlSetFont(-1, 10, 800, 0, "MS Sans Serif")
    $Checkbox2 = GUICtrlCreateCheckbox("Maxima FM", 104, 8, 97, 17)
    GUICtrlSetFont(-1, 10, 800, 0, "MS Sans Serif")
    $Button1 = GUICtrlCreateButton("Play", 8, 32, 75, 25)
    GUISetState(@SW_SHOW)
    #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]


    Ich bin neu, und ich verstehe es nicht: ( AutoiT

    Einmal editiert, zuletzt von CyberKode01 (7. Januar 2013 um 18:02)

  • Ersteinmal: Der Title gefällt mir nicht von dem thread hier :/

    2tens: Wo genau hast du dein Problem? Was nützt ein Script (was lauffähig ist) wenn du nicht angibst was du erreichen möchtest!


    Also dann, hau in die Tasten! :P

  • Entschuldigen Sie die Störung, aber ich lerne und ich will zu tun ist, wenn Sie KIFF doi FM und zB dann auf diesen Radius enpieza PLAY :(

  • FERTIIIG !!!und erzielte !

    [autoit]

    #include <ButtonConstants.au3>
    #include <GUIConstantsEx.au3>
    #include <WindowsConstants.au3>
    #NoTrayIcon

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

    $oWMP= ObjCreate("WMPLayer.ocx")
    $oWMP.URL = "http://player.ffn.de/tunein_ffn.asx"
    $oWMP.controls.play

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

    $Form1 = GUICreate("Radio", 157, 86, 192, 124)
    $Checkbox1 = GUICtrlCreateCheckbox("KissFM", 8, 16, 65, 17)
    $Checkbox2 = GUICtrlCreateCheckbox("ProFM", 8, 48, 65, 17)
    $Button1 = GUICtrlCreateButton("Play", 72, 16, 75, 25)
    GUICtrlSetFont(-1, 8, 800, 0, "MS Sans Serif")
    $Button2 = GUICtrlCreateButton("Exit", 72, 48, 75, 25)
    GUICtrlSetFont(-1, 8, 800, 0, "MS Sans Serif")
    GUISetState(@SW_SHOW)

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

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

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

    Case $Button1
    GUICtrlRead($Checkbox1)

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

    EndSwitch
    WEnd

    [/autoit]