I want to make timer string with CCLabelAtlas. The problem is the character, “:”. I had added this character in .png file as “:/0123456789”. I can see only “:” and can not see any numbers for timer.

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
AFAIK, cocos2d use startCharacter property to calculate needed symbol position according to ASCII table. For example, the next character in ASCII after ‘:’ is ‘;’, not ‘/’. Place your characters as they are placed in ASCII and it should be shown fine. The right order is
of course, start character in this case will be ‘/’, not ‘:’