Hi there!
Using the "delimiter" parameter should serve this purpose! https://help.findingfive.com/api/stimuli...=delimiter
The code could look something like this:
Importantly, the delimiter (i.e., the comma) could be set to whatever you wanted it to be. For instance, you could use the / instead. You can also set the duration for whatever duration you'd like.
The "keep_last" property will allow you to keep the last token on display after the stimulus completes. The default is false, so you would need to include this if you would like the text to be fixed.
Using the "delimiter" parameter should serve this purpose! https://help.findingfive.com/api/stimuli...=delimiter
The code could look something like this:
Code:
{
"type": "tokenized_text",
"content": "The Bûche de Noël cake, is, a, French, Christmas tradition",
"delimiter": ",",
"keep_last": true,
"mode": "plain"
}
Importantly, the delimiter (i.e., the comma) could be set to whatever you wanted it to be. For instance, you could use the / instead. You can also set the duration for whatever duration you'd like.
The "keep_last" property will allow you to keep the last token on display after the stimulus completes. The default is false, so you would need to include this if you would like the text to be fixed.