I want to put the questions inside the list blocks . I know I can phyically type in each question in each text block. (Also if its a list of 100 its very laborous adding the grooves one by one and then the text blocks a 100 times.) Any way to automate it, make it easy, directly?
Hi @Sanatan_Chakravarty Welcome
Convert the data in csv and then make a list from it.
Also create a list of components.
Now run a for each number loop so that it iterates over all components.
Then get component by index and set its text by getting item for same index from text's list.
For 100 questions, I would abandon the multiple component approach and switch to lists and List Pickers.
Load the text file from the Media folder , one line per question, no numbering, and split it at \n when it arrives to get your list of questions.
Load the Elements of a List Picker from the list of questions.
@ timai2
Please, How can I make the "Buttons" list without using the mutator and insert each component (Button1, Button1 ...) by hand.
Thank you PROFESSOR