Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hello I'm trying to create a game were shapes fly in and out of the canvas and I want to add an increment to a shape but how would I display this as I want it to display for example; score: "i" but i will start at 0 and increment every time. I've added a click function where i++ every time but I don't know how to display i.

Thanks in advance.

share|improve this question
3  
What have you tried? Can you post some code? – Kai Qing Dec 10 '12 at 20:54
You could try jquery's html() or text() method if you want to put the score outside of the canvas. Or the plain-ole-javascript version... – AlexMA Dec 10 '12 at 20:58
context.fillText('Score: ' + i, x,y); – Shmiddty Dec 10 '12 at 20:59

closed as not a real question by Sebastian Paaske Tørholm, Andrew Whitaker, Steve Fenton, Frank van Puffelen, ghoti Dec 10 '12 at 22:11

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You need document.write(variableName);

share|improve this answer
1  
This would be a better answer: stackoverflow.com/questions/3697615/html5-write-text-on-canvas – Kai Qing Dec 10 '12 at 20:55
I'm using raphael library to help me. I've tried: var counter = paper.text(70,100,'score' + i); counter.attr({'font-size': 50, fill: "black", opacity: 1}); var i = 0; This displays score undefined. – Jordan Dec 10 '12 at 21:19

Not the answer you're looking for? Browse other questions tagged or ask your own question.