Jump to content

BitmapText doesn't show any number


zeal
 Share

Recommended Posts

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

Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...