|
|
|
#1
|
||||
|
||||
|
You mean stop or pause?
To stop it call BASS_Free; To pause it create a button with a OnClick call and then something like this Code:
procedure MusicButtonClick(Sender: TObject);
begin
case BASS_ChannelIsActive(SoundStream) of
BASS_ACTIVE_PLAYING:
begin
if BASS_Pause then
MusicButton.Caption := 'Sound On';
end;
BASS_ACTIVE_PAUSED:
begin
if BASS_Start then
MusicButton.Caption := 'Sound Off';
end;
end;
end;
__________________
Haters gonna hate
|
| Sponsored Links |
|
#2
|
||||
|
||||
|
Quote:
The question would be where do put this button and can it be accessed? |
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
ShivShubh (24-11-2019) | ||
|
#3
|
||||
|
||||
|
Quote:
__________________
Haters gonna hate
|
|
#4
|
||||
|
||||
|
Ok so the problems i encountered so far are:
-AppInfo it doesn't show it as i put it in (for example i add AppInfo3= Random text = this text in installer will be shown as second line not 3rd. and if i add for example 5 of these the last line AppInfo5 will be shows as 3rd and so on). To fix you need compile like 2 times and have the compiled setup started and edit the number in appinfo according the position is shown in the setup that is open. - Second issue is that the text you input in AppInfo contain this ' it willl give error when compile the script. - Redist is not installing any of the redist that are added neither from {app} or {src}. (tried all possible options as (put in first disc or last and from app folder). It simply bypass the redists and not install them. Now i have a question. How to add when it say "put disc with %1 file" the disc name or number? For example to show Disc 2 instead of simply disc? Last edited by Th3Raven; 15-03-2018 at 05:36. |
![]() |
| 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 |