Clone text input issue

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

@overshield,

There are a few things you might want to consider.

There are 3 basic types of loops in Thunkable each with a different purpose:

  1. for each (evaluate each element in a collection (object properties, list items, etc.)
  2. count with (repeat a fixed number of times 1,2,3,4…)
  3. Repeat until/while (perform operations until a certain condition is met)

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
image

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!

2 Likes