I'm creating a list and want the sprite to say all the items in the list at once. can anyone point me towards any tutorials to help me with this.
Offline
Ideas wrote:
You could try this
when gf clicked set [# v] to [0] repeat (length of [my list v]) say (item (#) of [my list v]) for (2) secs change [# v] by [1] end
Fixed.
Last edited by jontmy00 (2012-10-08 08:46:58)
Offline
I think he wants to say all the values at one time.
I'm working on the solution currently...
Offline
If you want to add something inbetween each item, you should do this:
when gf clicked set [# v] to [1] set [liststring v] to [] //nothing repeat <length of [listname v]> set [liststring v] to <join (liststring) <join [whatever text you want] <item (#) of [listname v]>>> change [# v] by (1) end say (liststring)
Offline