Play a sound only in a specific page in Inno Setup
问题 I'm creating a installer for my application with Inno Setup. I use BASS audio library to play music in background of the installer. Here is my code for playing the sound. [Code] const DI_NORMAL = 3; FR_PRIVATE = $10; {added to compact Mode} BASS_SAMPLE_LOOP = 4; BASS_ACTIVE_STOPPED = 0; BASS_ACTIVE_PLAYING = 1; BASS_ACTIVE_STALLED = 2; BASS_ACTIVE_PAUSED = 3; BASS_UNICODE = $80000000; BASS_CONFIG_GVOL_STREAM = {#MusicVolume}; EncodingFlag = BASS_UNICODE; #if CheckCRC == "1" PM_REMOVE = 1; WM