Jump to content

Recommended Posts

Posted

First time using the ObjCreate function, and don`t even know if I`m using it correctly...

Trying to get the current track playing from windows media player.

#include <GUIConstants.au3>

; == GUI generated with Koda ==);

$TrackName = GUICreate("Track Name", 425, 54, 193, 161)

$Currtrack = GUICtrlCreateLabel("Current Track", 8, 16, 290, 17)
GUICtrlSetFont(-1, 8, 800, 0, "MS Sans Serif")

$GetTr = GUICtrlCreateButton("GetTrackName", 320, 8, 97, 33, 0)
GUISetState(@SW_SHOW)

Run ("C:\Program Files\Windows Media Player\wmplayer.exe" )

$WMP = ObjCreate("wmplayer.ocx")

GUISetState(@SW_SHOW)

While 1
    $msg = GuiGetMsg()
    Select
    Case $msg = $GetTr
    $TrackName = $WMP.GetMediaInfoString()
    GUICtrlSetData ($Currtrack,$TrackName)
    EndSelect

    Select
    Case $msg = $GUI_EVENT_CLOSE
        ExitLoop
    Case Else
    ;;;;;;;
    EndSelect
WEnd

Thanks for all your Help! :)

2015 - Still no flying cars, instead blankets with sleeves.

  • 10 months later...

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
×
×
  • Create New...