RIGHT(text) works perfectly fine. You choose a word and only text to the right of it appears. However, LEFT(text) is weird. It doesnt display only words to the left and cuts out characters ect. Code is exactly the same as RIGHT, +1/-1 at the end of the action.
Why did you assume the same code should work? If you need to display the left part of the string, you need something like this:
left(text, find(text,"fish")+len("fish"))
Develop games in your browser. Powerful, performant & highly capable.
Thanks Dop2000! Works perfectly. Simple when you know how. I dont know why i thought left/right would work the same, probably because assumed its looking through the same text the same way just in different directions.
very much appreciated!