Hi,
I just created a new project and tried to add a costum font. The name of the font is CrayonAL, the filename is CRAYA___.TTF. I added the CRAYA___.TTF to the Resources and did the following thing in the source code:
Label *label1 = [Label labelWithString:@"Hello World" fontName:@"CrayonAL" fontSize:24];
label1.position = ccp(100, 100);
[self addChild: label1];
When I replace CrayonAL with Arial the text will be displayed. Where is the mistake?
Thanks