I would like to display multiple slideshow on one form of my Inno Script. I'm using isslideshow.dll
to enter my images.
When one slideshow is displayed, everything works perfectly, but when two are displayed, one of them freezes...Also, on deinitialization only one stops while other is still present...
Does anyone knows how I can fix it?
InitializeSlideShow(WizardForm.Handle, 0, 356, scaleX(200), ScaleY(112), true, 2);
CurrentPicture:=1;
ShowImage(piclist.strings[CurrentPicture-1], 1);
TimerID:=SetTimer(0, 0, 3000, WrapTimerProc(@OnTimer, 4));
Also, the deinitialization code:
DeinitializeSlideShow;
KillTimer(0, TimerID);