Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 5 of 5 total
Thread Selecting an Image from TSlideShow
Tue, Nov 12 2019 12:39 PMPermanent Link

Glenn McEowen

I have a TSlideShow instance rotating (and looping) through a "stack" of images.

I would like to click on any one of the images and determine which one it is, i.e.its SlideIndex or SlideImageName or something else.

I have not found a way to do this myself. What have I overlooked? Does anyone know how this can be accomplished?
Tue, Nov 12 2019 2:56 PMPermanent Link

Walter Matte

Tactical Business Corporation

What about the event - OnRenderSlide - it gives you the SlideIndex and SlideImageURL....

Walter
Tue, Nov 12 2019 3:02 PMPermanent Link

Walter Matte

Tactical Business Corporation

Or the OnLoadSlide - you can save the SlideIndex in a global variable... it gets called each time the slide changes... just tested the example program.  SlideShow.

Walter
Tue, Nov 12 2019 3:05 PMPermanent Link

Walter Matte

Tactical Business Corporation

Need to use OnRenderSlide to save into Global Variable since the documentation says OnLoadSlide  - slides are only loaded once and cached.....

Walter
Tue, Nov 12 2019 6:52 PMPermanent Link

Glenn McEowen

Walter Matte wrote:

Need to use OnRenderSlide to save into Global Variable since the documentation says OnLoadSlide  - slides are only loaded once and cached.....

***********

Thank you, Walter.

Works perfectly!
Image