danMiller

joined 1 month ago
 

----If I have a list of text options in my script that includes:

myList here, there be apples second, a plum third, a pear.

---and I have a place in the t2i-framework that specifies user input options

settings userInputs foo label = foo type = select remember = true options = {import:myList} //i know this isn’t correct, but gives a sense of what I’m trying to do

Is there a way to have settings.userInputs.foo.options. reference the complete set of options in myList? One item of note is that the myList options are full sentences, and thus contain punctuation such as commas. So joinItems statements would not work with a comma delimiter.

thank you!

 

if I have a list:

Fruit apple text = a red fruit pear text = a green fruit

What’s an effective way to join the ‘text’ properties to create something like “a red fruit, a green fruit”.

Does this require a custom function or can the perchance list methods handle this?

thanks