How can i quickly create 100 globals

i have to create each global from 1 to 100 and set the value for each global like in the picture
can anyone suggest me the fastest way to do it, thank you (i use customListview)

You don’t need 100 variables. This could cause your app to crash.

Instead, you can keep a 100-item list of your variables, then select the variable from the index (variable no. in your case).

Try using Dictionary blocks and loop to set key values.

Set key as “img{index}” with values set in a loop.

Infact you can achieve it with single variable. No need of 100.