Re: [whatwg] Help

2012-01-13 Thread Ian Hickson
On Sat, 25 Jun 2011, David W. Kingori wrote: > > My name is David Kingori and I am absolutely fascinated by the > capabilities of HTML5. I was wondering if you could enlighten me on how > I could convert a Microsoft Word document of mine into an HTML5 page? There are various Word - to - HTML c

Re: [whatwg] Help us review HTML5!

2009-04-03 Thread Lars
Hi Havent read it all yet, but I did a search, and found nothing about the element. Isnt that suposed to be in there, or do you miss documentation on it? If you are missing documentation, I will be happy to try to write something in the same format as the other tags.. Thanks Regards Lars On

[whatwg] Help us review HTML5!

2009-04-02 Thread Ian Hickson
Have you been lurking here but wanting to do more? Now that HTML5 is starting to get more stable, it's time to ramp up the review process, so if you have been waiting for a reason to jump in, here it is. Open one of the versions of the spec: One page version http://www.whatwg.org/specs/w

Re: [whatwg] Help with HTML5 Audio

2007-08-04 Thread Ian Hickson
On Sat, 4 Aug 2007, Anne van Kesteren wrote: > On Sat, 04 Aug 2007 03:38:32 +0200, Ian Hickson <[EMAIL PROTECTED]> wrote: > > This will get the while file fully downloaded, then play it. You can also > > do things like: > > > > var sound = new Audio("foo.ogg"); > > sound.oncanplaythrough = fun

Re: [whatwg] Help with HTML5 Audio

2007-08-04 Thread Anne van Kesteren
On Sat, 04 Aug 2007 03:38:32 +0200, Ian Hickson <[EMAIL PROTECTED]> wrote: This will get the while file fully downloaded, then play it. You can also do things like: var sound = new Audio("foo.ogg"); sound.oncanplaythrough = function() { sound.play() }; Actually, there's no such event han

Re: [whatwg] Help with HTML5 Audio

2007-08-03 Thread Ian Hickson
On Sat, 23 Sep 2006, Jeff Schiller wrote: > > Do load events bubble up? If so, can I add a load even listener to the > document and then catch the load events there always? They do not. > If so, how can I distinguish the target is of type Audio and not of type > HTMLImageElement (or whatever

Re: [whatwg] Help with HTML5 Audio

2007-08-03 Thread Ian Hickson
On Fri, 22 Sep 2006, Jeff Schiller wrote: > > I need a solution that will work whether the sound is cached or not. Is > this a problem in the spec or a problem with my understanding of this > object or event handlers? The spec changed quite a bit, but now you should be able to do: var sound

Re: [whatwg] Help with HTML5 Audio

2006-09-23 Thread Jeff Schiller
Thanks for all the replies off the mailing list... This my just be an education problem. Let me ask a few questions: Do load events bubble up? If so, can I add a load even listener to the document and then catch the load events there always? If so, how can I distinguish the target is of type

[whatwg] Help with HTML5 Audio

2006-09-22 Thread Jeff Schiller
Opera 9 implements the Audio interface proposed in HTML5: http://whatwg.org/specs/web-apps/current-work/#scs-sound I'm having trouble with it. My first attempt was: var soundClip = new Audio("blah.wav"); if(soundClip) { soundClip.play(); } This doesn't work on the first attempt, but on the seco