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.