getmusicbee.com

Support => Developers' Area => MusicBee API => Topic started by: boroda on November 25, 2016, 02:18:37 PM

Title: 1 question for new plugin
Post by: boroda on November 25, 2016, 02:18:37 PM
Steven, i need to know if auto-filled by my plugin now playing list is finished. no user-side interactions (except for pausing/unpausing) must be considering. i think PlayStateChanged event is sufficient for this purposes. but how can i check that player is stopped (but not just paused)?
Title: Re: 1 question for new plugin
Post by: Steven on November 25, 2016, 06:19:05 PM
Player_GetPlayState() == PlayState.Stopped
Title: Re: 1 question for new plugin
Post by: boroda on November 25, 2016, 06:53:15 PM
thanks