INTERACT FORUM

Windows => Plug-in Development => Topic started by: nkj_skinner on July 15, 2002, 08:14:04 am

Title: how to have play and pause in one button
Post by: nkj_skinner on July 15, 2002, 08:14:04 am
i don't know how u can have play and pause in one button like in windows media player if it can be done plase tell how
Title: RE:how to have play and pause in one button
Post by: Nikolay on July 16, 2002, 07:09:11 am
nkj_skinner,

It's possible, but you have to create two buttons located in the same place and hide/show them depending on the state.

Take a look at the LowerRight skin for an example of the implementation.

Nikolay
Title: RE:how to have play and pause in one button
Post by: ZRocker on July 17, 2002, 04:34:47 pm
nkj,

LowerLeft/Right do it with simply on a OnPlayStateChanged event...here's the actual code that changes the bitmap of the custom 'Play' button (realtime) in my skins:

function SetBitmapPlayButton()
{
  Player.GetSkinItem( typeButton, "PlayCustom" ).SetBitmap
     ( g_Playback.State == playPlaying ? "pause.bmp" : "play.bmp", defTransColor );
}