INTERACT FORUM
Windows => Plug-in Development => Topic started 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
-
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
-
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 );
}