Text leading spaces
Posted: Wed Jul 03, 2024 9:09 pm
I'm a professor in Computer Engineering, and I mostly use Moho for animations for teaching.
One common theme is a snippet of code in one part of the frame and animated object illustrating the code in the rest of the frame.
However, the snippets of code must be indented.
However, if I put it in a single text layer, everything is left justified. I've been looking both online and in the manual, but I haven't found anything.
Is there any way to use leading spaces on multi line left justified text?
My current workaround is each line in a separate text layer in a group.
Thanks.
One common theme is a snippet of code in one part of the frame and animated object illustrating the code in the rest of the frame.
However, the snippets of code must be indented.
Code: Select all
void swap(int *a, int *b){
int tmp = *a;
*a = *b;
*b = tmp;
}
Is there any way to use leading spaces on multi line left justified text?
My current workaround is each line in a separate text layer in a group.
Thanks.