|
#19
|
||||
|
||||
|
If you used BASS library, there is a example next to it.
You must create a new button example Code:
[_code]
var
MusicButton: TNewButton;
procedure MusicButtonClick(Sender: TObject);
begin
case BASS_ChannelIsActive(SoundStream) of
BASS_ACTIVE_PLAYING:
begin
if BASS_Pause then
MusicButton.Caption := 'Music ON';
end;
BASS_ACTIVE_PAUSED:
begin
if BASS_Start then
MusicButton.Caption := 'Music OFF';
end;
end;
end;
__________________
Haters gonna hate
|
| The Following User Says Thank You to KaktoR For This Useful Post: | ||
pakrat2k2 (29-06-2018) | ||
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Windows Phone Installer (WPI) | Razor12911 | Conversion Tutorials | 857 | 14-06-2025 22:20 |
| Windows Phone Installer Enhanced Mod (HMI 7.2 Final) | Chayan Manna | Conversion Tutorials | 93 | 02-10-2019 12:42 |
| Windows Phone Installer UltraARC mod | Gupta | Conversion Tutorials | 20 | 20-03-2018 21:10 |
| How can i unpack .pcf in windows phone installer | yash497 | Conversion Tutorials | 3 | 16-10-2016 09:07 |
| Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 09:48 |