Please help!!! I am using data viewers grid. When i click on an image it moves to another screen and shows the image with a title from airtable connection. With a button i want to move to the exact next image from the data viewer grid.
For example if i selected the 5th image i want to move to the 6th. The problem is always it goes from the first one…
If i use the change rowID by 1 it goes from 0 to 1. But i want to go from the image that i clicked on the next one.
You need to keep track of which data viewer grid item was clicked. That’s what the green “index” block is for. Set a variable value to the green “index” block and then use that variable when you are displaying an image.
So if you click on a grid item and it was, let’s say, number 5, then the index will equal 5 and you could see the variable called currentImage to the “index” block. So that variable will also have the value 5.
Then, when clicking the “next” button to show the next image, use currentImage+1 to determine which image to show.
I tried this solution but instead of showing the image in the same screen i used a second screen. It doesnt work and i think the problem is in the connection between the two screens. Am i not using the right orders to store the initial rowID of screen 1?
Also i am now using google sheets to see if its easier the solution