Is there any way to have the responsiveness of a Strip with the controls/behavior of a Slideshow? I need to have a slideshow with both images and text "columns", but it needs to be responsive enough to screen sizes.
In this example, you can see the slideshow like element have two columns: image and text. When the window is resized it has the responsiveness like a strip with columns.
Any suggestions on how to achieve this?
Yeah so basically what you'll need to do is add multiple strips, either one on top of the other hidden (use toolbar -> layers, to help with the edit) or one below the other collapsed, and number them form 1 - x, then add little icons and arrows to change slides.
Now to change the slides automatically
let currentSlide = 1 onReady -> //to stop make run = false while (run = true) { $w("#"+((currentSlide+1).toString).show(); $w("#"+(currentSlide.toString).hide(); currentSlide = currentSlide++; }