zeal Posted May 9, 2014 Share Posted May 9, 2014 Hi, I'm trying to display a text that consists of text and numbers. But the numbers doesn't show up.var text2 = 'this is number 2!';var myText2 = new game.BitmapText(text2, {font: '32px Arial'}); this.stage.addChild(myText2);the output:this is number !I tried to convert it to string:var myText2 = new game.BitmapText(text2.toString(), {font: '32px Arial'}); var myText2 = new game.BitmapText(text2 + ' ', {font: '32px Arial'});var myText2 = new game.BitmapText(String(text2), {font: '32px Arial'});var text2 = 'this is number ' + String(2) + '!';var myText2 = new game.BitmapText(text2, {font: '32px Arial'});But the number still doesn't show up. Any help would be gratefull.. Thank you Quote Link to comment Share on other sites More sharing options...
enpu Posted May 12, 2014 Share Posted May 12, 2014 There must be something wrong with your bitmap font.What program did you use to create it? Quote Link to comment Share on other sites More sharing options...
StaticKidz Posted May 13, 2014 Share Posted May 13, 2014 Same here, check if your font has numbers Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.