Jump to content

Recommended Posts

Posted (edited)

there is more guy that intersted it:

http://www.autoitscript.com/forum/index.ph...st&p=353728

but there is no answer :S

and not it:

#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)

$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
Edited by Gillboss

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...