... That would be the WHATWG mailing list: http://www.whatwg.org/mailing-list#specs According to the FAQ, the editor of the HTML5 spec (of which canvas is a...
Hi, Is it too late to suggest additions to the canvas spec? And if not does any one know who the best person to suggest them to is? Like others I think I would...
Richard Heyes
richard.heyes@...
May 31, 2009 7:31 pm
490
Hi, http://www.phpguru.org/dev/CanvasWars/game.html Dunno what the hell to do with it though, At the moment it's a "dodge the clouds" type thing... :-) -- ...
Richard Heyes
richard.heyes@...
May 11, 2009 6:35 pm
489
Hi, Haven't done any showing off recently, so here's a dollop: http://www.phpguru.org/article/a-html5-canvas-clock Very similar to the example I would imagine...
Richard Heyes
richard.heyes@...
Apr 14, 2009 3:40 pm
488
Hi, Does anyone know if there's an ftell()-like function in the canvas API? Situation is that I want to draw an arc from the end point of a previous arc, but...
Richard Heyes
richard.heyes@...
Feb 6, 2009 11:58 am
487
FYI, for those of you who haven't seen it yet, there's a proof of concept for this idea located here: http://www.wiicade.com/JSDeployExample1/ Note that I have...
... That's basically it! The devil is in the details, of course. What exactly will the meta-config tell the platform? Do we open the main document in an IFrame...
it's a good idea, the task seems very simple now: get the ".jzip"(this ahven't anme yet, right?) file, upack it, read metaconfig and open the main document. ...
I think we're on the same wavelength here. I was also thinking something along the lines of a JAR for Javascript. Here's the RFC I posted on the WiiCade forums...
I think we're on the same wavelength here. I was also thinking something along the lines of a JAR for Javascript. Here's the RFC I posted on the WiiCade forums...
starting to understand.... since the real entry point for the javascript app remains some document, that document could have standart default information...
Hi all! As many of you probably noticed from my recent message, I've managed to complete a very sophisticated Javascript game recently. In addition, I've been...
... Impressive. Takes me back to my Speccy days... :-) -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated...
Richard Heyes
richard.heyes@...
Jan 1, 2009 10:48 am
476
Hey everyone! I just released a Canvas-based game through WiiCade.com. Thought everyone here might find it interesting: ...
... For anyone that's interested I've now managed to get it working: http://dev.rgraph.org I used [event].offsetX/Y for Safari, Opera, MSIE and Chrome, and for...
Richard Heyes
richard.heyes@...
Dec 29, 2008 5:38 pm
474
... Hi, Seems I spoke too soon. Sorry for the noise. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December...
... Hi, That's what I was afraid of. Still, I've manged to do it (!): http://dev.rgraph.org/ Thank you! -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera...
Richard Heyes
richard.heyes@...
Dec 15, 2008 4:16 pm
471
The Offset* APIs are based on the location relative to the parent element. You'll need to compute the offset by walking the DOM using "offsetParent". (Don't...
Hi, I'm having severe trouble getting the mouse coords when a canvas is colicked on AND it's nested within a table. I've setup an example to illustrate the...
Richard Heyes
richard.heyes@...
Dec 15, 2008 11:00 am
469
... Hi, Really? I only have Opera 9.6 installed. I think I'll wait for this then instead of hacking (or fumbling...) around. Thanks Eric and Philip. -- Richard...
Richard Heyes
richard.heyes@...
Dec 5, 2008 7:20 pm
468
... Seems to work just fine in Opera 10. Cheers /Erik -- Erik Dahlstrom, Core Technology Developer, Opera Software Co-Chair, W3C SVG Working Group Personal...
... It looks like the problem you're experiencing is that Opera applies transforms to paths when it's stroking/filling them, not when you're constructing the...
Hi, Has anyone had any problem with using the rotate() method in conjunction with Opera? Eg: http://dev.rgraph.org/trash/tradar.html Works fine in Firefox,...
Richard Heyes
richard.heyes@...
Dec 5, 2008 11:45 am
465
... You can: 1. Attach a function to the canvas onclick event 2. Get the mouse coords from the resultant event object. 3. Those, combined with some magic, will...
Richard Heyes
richard.heyes@...
Nov 12, 2008 5:48 pm
464
If I have ui elements in a canvas that I want to be clickable - what is the best way to go about doing that? Do I need to create some kind of collision...
Hi, Can anyone give me a function that returns the X/Y position of the mouse pointer in relation to the canvas it;s over. I have one already that seems to work...