Hi habe mal Ne Frage wie ich Die pls Datei Vom Meine Stream abspielen aber auch mit so Buttons wie PLAY Stop + - ja das war Kann mir jemmand Helfen ?
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <Sound.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 122, 59, 433, 426)
$Button1 = GUICtrlCreateButton("Play", 8, 8, 33, 41, $WS_GROUP)
$Button2 = GUICtrlCreateButton("Stop", 48, 8, 33, 41, $WS_GROUP)
$Button3 = GUICtrlCreateButton("+", 88, 8, 25, 17, $WS_GROUP)
$Button4 = GUICtrlCreateButton("-", 88, 32, 25, 17, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
$sound = _SoundOpen("http://85.25.10.11:3012","Listen.pls")
[/autoit][autoit][/autoit][autoit]While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
_SoundPlay($sound, 1)
Case $Button2
_SoundStop($sound)
Case $Button3
EndSwitch
WEnd