Jump to content

Recommended Posts

Posted (edited)

But you can always use embedded wmp:

#include <GUIConstants.au3>
$Form1 = GUICreate("AForm1", 300, 448, 192, 125, $WS_DLGFRAME)
$oWMP = ObjCreate("WMPlayer.OCX")
GUICtrlCreateObj($oWMP, 0, 0, 300, 300)
$oWMP.URL = "http://livestream.xs4all.nl/streamgate.asp?ch=72&x=.asx"

$oWMP.controls.play()
$oWMP.stretchToFit = True
$oWMP.windowlessVideo = True
$oWMP.fullscreen = True
$oWMP.uiMode = 'none'

GUISetState(@SW_SHOW)

While 1
    Sleep(100)
WEnd
Exit

Original code by someone else :)

Edited by Nahuel

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...