#1
|
|||
|
|||
how to add (play,pause,stop) buttons in inno setup
how to add (play,pause,stop) buttons in inno setup
both play,pause in on button, the other one in the adjacent button ![]() |
Sponsored Links |
#2
|
||||
|
||||
Quote:
![]() |
#3
|
||||
|
||||
versión original:
hola, que tal, quisiera colocarle musica a inno setup pero no se como, si alguien me podria ayudar. intente con el ISSI, pero al cargar el sonido que me tira es el tipico sonido de error de ventana de windows. version google: Hello, how about, I would like to put music to inno setup but I do not know how, if someone could help me. try with the ISSI, but when loading the sound that throws me is the typical windows window error sound. saludos |
#4
|
||||
|
||||
Use BASS library
__________________
Haters gonna hate
|
#5
|
||||
|
||||
how is it used?
|
#6
|
||||
|
||||
hola aqui encontre algo por internet, que me funciona teniendo los archivos bass.dll,bp.dll,el audio y el archivo .iss pero al copiarlo al programa no funciona
[Files] Source: "C:\Program Files (x86)\Inno Setup 5\Dll Pack\BASS.dll"; Flags: dontcopy Source: "lugar donde esta el archivo de musica"; Flags: dontcopy nocompression Source: "C:\Program Files (x86)\Inno Setup 5\Dll Pack\bp.dll"; Flags: dontcopy [Code] var mp3HNDL:DWORD; function BASS_Init(device: Integer; freq, flags, win: DWORD;clsid:integer): Boolean; external 'BASS_Init@{tmp}\BASS.dll stdcall delayload'; function BASS_Free: Boolean; external 'BASS_Free@{tmp}\BASS.dll stdcall delayload'; function BASS_Start: Boolean; external 'BASS_Start@{tmp}\BASS.dll stdcall delayload'; function BASS_Stop: Boolean; external 'BASS_Stop@{tmp}\BASS.dll stdcall delayload'; function BASS_Pause: Boolean; external 'BASS_Pause@{tmp}\BASS.dll stdcall delayload'; function BASS_ChannelPlay(handle: DWORD; restart: BOOL): Boolean; external 'BASS_ChannelPlay@{tmp}\BASS.dll stdcall delayload'; function BASS_ChannelPause(handle:DWORD):Boolean; external 'BASS_ChannelPause@{tmp}\BASS.dll stdcall delayload'; function BASS_ChannelStop(handle:DWORD):Boolean; external 'BASS_ChannelStop@{tmp}\BASS.dll stdcall delayload'; function BASS_StreamCreateFileLib(mem: BOOL; fil: PAnsiChar; offset, length, flags: DWORD): DWORD; external 'BASS_StreamCreateFile@{tmp}\bp.dll stdcall delayload'; function BASS_StreamCreateFile(mem: BOOL; fil: AnsiString; offset, flags: DWORD): DWORD; var size_:Longint; Buffer:ansistring; begin if mem then begin #ifdef IS_ENHANCED size_:=ExtractTemporaryFileSize(fil); SetLength(Buffer,size_); ExtractTemporaryFileToBuffer(fil,Cast{#defined UNICODE ? "Ansi" : ""}StringToInteger(Buffer)); #else if not FIleExists(ExpandConstant('{tmp}\')+fil) then ExtractTemporaryFile(fil); FileSize(fil,size_); SetLength(Buffer,size_); LoadStringFromFile(ExpandConstant('{tmp}\')+fil,Bu ffer); #endif Result:=BASS_StreamCreateFileLib(mem,Buffer,0,size _,flags); end else begin Result:=BASS_StreamCreateFileLib(mem,fil,offset,0, flags); end; end; function InitializeSetup: Boolean; begin ExtractTemporaryFile('BASS.dll'); ExtractTemporaryFile('bp.dll'); BASS_Init(-1,44100,0,0,0); BASS_Start; #ifdef MEMORY mp3HNDL:=BASS_StreamCreateFile(TRUE,'sound.mp3',0, 4); // play from memory #else ExtractTemporaryFile('sound.mp3'); mp3HNDL:=BASS_StreamCreateFile(FALSE,ExpandConstan t('{tmp}\sound.mp3'),0,4); // play from file #endif BASS_ChannelPlay(mp3HNDL,True); Result:=true; end; procedure DeinitializeSetup(); begin BASS_Stop; BASS_Free; end; los otros 2 archivos bass y bp los coloque en la carpeta del inno del programa como se muestra, pero al ejecutar me tira error "duplicate identifier INITIALIZESETUP" esta es la linea : function InitializeSetup: Boolean; ingles google: hi here I found something on the internet, which works for me having the files bass.dll, bp.dll, the audio and the .iss file but when copying it to the program it does not work codigo.... the other 2 files bass and bp place them in the ino folder of the program as shown, but when executing it pulls me error "duplicate identifier INITIALIZESETUP" this is the line: function InitializeSetup: Boolean; saludos Last edited by pakrat2k2; 23-01-2018 at 07:07. |
#7
|
||||
|
||||
send me your script i will add it
|
![]() |
Tags |
buttons, innosetup, pause, play, stop |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
BlackBox v2 | y_thelastknight | Conversion Tutorials | 568 | 11-03-2025 07:16 |
INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup | REV0 | Conversion Tutorials | 129 | 21-05-2021 05:51 |
Inno Setup: Additional Libraries | altef_4 | Conversion Tutorials | 50 | 21-10-2020 09:59 |
Useful Dll for Inno Setup users | peterf1999 | Conversion Tutorials | 88 | 01-12-2017 16:00 |
INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup | REV0 | Conversion Tutorials | 51 | 26-03-2015 06:57 |