I’m trying to make the input hints also have their own uniqueness.
Currently with the blocks below both hints just say “Input_Hint2”
Is this a bug, or am I doing it wrong, or is it just not possible?
Thanks again for the help
I’m trying to make the input hints also have their own uniqueness.
Currently with the blocks below both hints just say “Input_Hint2”
Is this a bug, or am I doing it wrong, or is it just not possible?
Thanks again for the help
There are a few things you might want to consider.
There are 3 basic types of loops in Thunkable each with a different purpose:
In your example, it appears you are trying to perform exactly 2 loops. Rather than use two for each loops, consider using a count with loop and cloning text input INSIDE the loop.
To set the hint to input_hint1,2,3,… try
If you do want to use a list of hints, you should still have one For each loop with the clone block inside the loop.
Finally, the block setting the visible property uses the Button component type. You should probably change that to TextInput (although this will often work anyway).
Happy Thunking!