Do you mean, containing multiple groups of text in the same cell? For example, use the "|" symbol to split:
Apple|Banana
Then when you use Array.At() to get the text, you can continue to use System expressions tokenAt() to extract the words.
tokenat("Apple|Banana", 0, "|") returns Apple.
-------------------------
If you are not sure how many group there are,
Apple|Banana|Carrot|Durian
you can also use tokencount to get the words count, Then iterate it with System conditions For or Repeat , and then use loopindex expression to get the index.
text = Array.At() Repeat tokencount(text, "|") times word = trim(tokenat(text, loopindex, "|"))
text = Array.At()
Repeat tokencount(text, "|") times
word = trim(tokenat(text, loopindex, "|"))
As an additional, you can also use trim(), to remove the space between them.
Apple | Banana
So they might be
text = Array.At() word = trim(tokenat(text, 0, "|"))
word = trim(tokenat(text, 0, "|"))
Synth sunset example is Unbelievable!
Amazing!
Great Changes! Hopefully expression dictionaries also supported dockable!
Monaco is so cool! I look forward to seeing more expansions in the future, such as Typescript support and Copilot for Agent models.
By the way, The translation terms of Command palette list seems to be forgotten.
Coooool!
How about the Webview2 export options support Package assets?
github.com/Scirra/Construct-feature-requests/issues/207
Construct will become even more powerful!
Start page: update social media links
Is it possible to remove the black background of the X icon, its color is a bit too eye-catching
Signals will allow you to make your own event triggers. You can simply understand it as: let someone do something when they receive a message. It provides you with another way to organize your code. When receiving a signal, you don't need to pick them first. You just tell them to run action when they get a message.
For example, when the enemy's health is less than or equal to 0, let the enemy send a "dead" signal.Then write in another place that when the enemy receives the "dead" signal, run the action, function or object action.
Moreover, the signal is composed of strings, which is very flexible. You can do more with it
Welcome back! Thanks for the update!
In the error message, can you add a hyperlink to help users jump to the last older version that can be open project?
Thank you, Construct!
Thank you so much for your work! I've found that currently can only lock/visible the entire layer, but not for individual instances. I think supporting this will help better use it: github.com/Scirra/Construct-feature-requests/issues/226
Does Autocomplete work for project files as well? I'm not sure if this is an oversight or if it's not supported yet. I imported the Fonts file and then set the font face in the Text object. Currently, it does not trigger the Autocomplete.
Member since 26 Mar, 2016