|
|
|
#1
|
||||
|
||||
|
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) | ||
| Sponsored Links |
|
#2
|
||||
|
||||
|
Quote:
|
|
#3
|
||||
|
||||
|
Hey, u can add music using bass function, u can't control it,
let's see how the wpi new is working, when dll is loaded then the dll is controling the inno next page and back page, so it just layer the form from dll to inno , like this Inno setup ---> then Form from dll so if u used any button it will be send to back because the form from dll showing topmost in inno form |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
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 |