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.

I'm trying to write my first HTML5 game using a combination of Canvas and the excellent KineticJS library and I've hit a bit of a wall early on.

What I want to do is ask the user to enter their name in a box in the game. Having done some research, i can't see any way of doing this outside getting a floating HTML element over that part of the canvas I'm using.

Is this correct?

Having grown up on a lot of Flash and web games, I'm sure each time I have to input a name or save file name, it's done directly into the game itself and it doesn't rely on the HTML to generate it?

Any advice on how to do this would be gratefully received.

share|improve this question
I don't think there is any out of the box capability in Kinetic JS for adding text box. Please refer to KineticJS documentation for the same : html5canvastutorials.com/kineticjs/… It will answer most of your questions. You need to create a text area in canvas by adding event handlers on Key Strokes on a rectangle. Then display the text received from user in the canvas in specific format. – Amber Nov 17 '12 at 11:26
That discusses placing of text on the canvas, not the capture of text from a user. I'm already using a lot of KineticJS Text to make my buttons, what i want is a way of saying, Please enter your name: (which will be using the text attribute) and then capture the text within a Canvas JS funciton. – Craigeve Nov 17 '12 at 11:31
I have just edited my answer. There is no such thing like HTML text area in Kinetic JS. – Amber Nov 17 '12 at 11:32
Sorry, didn't see your edit! Will have a look at capturing key strokes over a rectangle and see if I can then feed it back via the text function. – Craigeve Nov 17 '12 at 11:33

2 Answers

up vote 1 down vote accepted

You can get a floating HTML element on the top of canvas using the following CSS technique.

http://css-tricks.com/absolute-positioning-inside-relative-positioning/

  • Make a wrapper div position: relative

  • Add canvas inside using position: absolute

  • Add other HTML controls inside using position: absolute

This applies for all HTML elements, not just canvas.

share|improve this answer
I'll be honest, i'm more a Javascript/Java programmer than a HTML one. So basically i've ignored CSS at the moment (so no <style> part of the document) and just concentrated on creating a single div which i load the KineticJS canvas in. If i do follow that guide, all my objects inside the canvas will have to be transposed i'm guessing? – Craigeve Nov 17 '12 at 15:06
Yes. It the trick is absolutely positioned elements relative parent. – Mikko Ohtamaa Nov 17 '12 at 16:04
I'm working on this at the moment, although i'll be honest it's more trial and effort than! I have a wrapper now (relative) and a canvas in (absolute) and i'm attempting the next div now created dynamically via JS. I might have some questions about it later if i can't get it working, is the accepted convention to edit the opening post if i want to post some code? – Craigeve Nov 19 '12 at 11:32
If you want to post some code please create a jsfiddle.net example – Mikko Ohtamaa Nov 19 '12 at 11:36
... or open a new question which specific technical details – Mikko Ohtamaa Nov 19 '12 at 11:36
show 1 more comment

Quick and dirty way:

var userInput = prompt('What is your name?');

It works, but certainly is not the prettiest way to do it. iOS actually has a quite nice prompt.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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