Do Hello in red, then world in black.
That's now how I wanted to do it.
I know iwould have to do this
WriteTxt.setCMYKColorFillF(00, 99, 100, 00);
WriteTxt.showTextAligned(0 ,"Hello", 100, 20, 0f);
WriteTxt.setCMYKColorFillF(00, 00, 00, 00);
WriteTxt.showTextAligned(0 ,"World", 120, 20, 0f);
The problem with setCMYKColorFillF is that u can't specify what text of string you want to change.
It should be like WriteTxt.setCMYKColorFillF(00, 00, 00, 00, "World") or something like that.