Comments for chipwreck http://www.chipwreck.de/blog The guide is definitive. Reality is frequently inaccurate. Wed, 10 Mar 2010 06:58:28 +0000 http://wordpress.org/?v=2.9.2 hourly 1 Comment on Mootools FormValidator – How to use (Part 1) by MooTools Roundup December 2009 ­ Share My Livehttp://www.chipwreck.de/blog/2009/12/14/mootools-formvalidator-how-to-use-part-1/comment-page-1/#comment-255 MooTools Roundup December 2009 ­ Share My Live Wed, 10 Mar 2010 06:58:28 +0000 http://www.chipwreck.de/blog/?p=2745#comment-255 [...] MooTools FormValidator Tutorial [...] [...] MooTools FormValidator Tutorial [...]

]]>
Comment on Coda PHP Toolkit by Mariohttp://www.chipwreck.de/blog/software/coda-php/comment-page-3/#comment-254 Mario Mon, 08 Mar 2010 22:10:37 +0000 http://www.chipwreck.de/blog/?page_id=723#comment-254 This should work, I tried it with this doctype:!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"Otherwise send me the HTML-file, then I'll have look. This should work, I tried it with this doctype:

!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “http://www.w3.org/TR/html4/loose.dtd”

Otherwise send me the HTML-file, then I’ll have look.

]]>
Comment on Coda PHP Toolkit by Doug Holladayhttp://www.chipwreck.de/blog/software/coda-php/comment-page-3/#comment-253 Doug Holladay Mon, 08 Mar 2010 21:09:32 +0000 http://www.chipwreck.de/blog/?page_id=723#comment-253 I am using the default configuration I am using the default configuration

]]>
Comment on Coda PHP Toolkit by Mariohttp://www.chipwreck.de/blog/software/coda-php/comment-page-3/#comment-252 Mario Mon, 08 Mar 2010 19:35:13 +0000 http://www.chipwreck.de/blog/?page_id=723#comment-252 Hi -which config setting do you use for HTML tidy? Hi -

which config setting do you use for HTML tidy?

]]>
Comment on Coda PHP Toolkit by Doug Holladayhttp://www.chipwreck.de/blog/software/coda-php/comment-page-3/#comment-251 Doug Holladay Sun, 07 Mar 2010 08:44:04 +0000 http://www.chipwreck.de/blog/?page_id=723#comment-251 I had a quick question...I noticed that when I use the html tidy option it automatically changes my doctype to strict when I would like it to stay in transitional...is there any way to change that so that it doesn't change my doctype declaration? thanks in advance for any advice...ps. I love this plugin minus this small issue. I had a quick question…I noticed that when I use the html tidy option it automatically changes my doctype to strict when I would like it to stay in transitional…is there any way to change that so that it doesn’t change my doctype declaration? thanks in advance for any advice…ps. I love this plugin minus this small issue.

]]>
Comment on HTML 5 video & Mootools by HTML5 video. Who needs Flash? | The Worm Holehttp://www.chipwreck.de/blog/2010/03/02/html-5-video-mootools/comment-page-1/#comment-250 HTML5 video. Who needs Flash? | The Worm Hole Fri, 05 Mar 2010 11:29:12 +0000 http://www.chipwreck.de/blog/?p=4252#comment-250 [...] But they kept coming. Mario Fischer making an excellent post on how to use HTML5 video with Mootools. [...] [...] But they kept coming. Mario Fischer making an excellent post on how to use HTML5 video with Mootools. [...]

]]>
Comment on HTML 5 video & Mootools by freetaohttp://www.chipwreck.de/blog/2010/03/02/html-5-video-mootools/comment-page-1/#comment-248 freetao Wed, 03 Mar 2010 08:38:56 +0000 http://www.chipwreck.de/blog/?p=4252#comment-248 很好的教程,嘿嘿。(According to google translate: "Very good tutorial, Hei hei.") 很好的教程,嘿嘿。

(According to google translate: “Very good tutorial, Hei hei.”)

]]>
Comment on HTML 5 video & Mootools by Mariohttp://www.chipwreck.de/blog/2010/03/02/html-5-video-mootools/comment-page-1/#comment-247 Mario Wed, 03 Mar 2010 00:05:45 +0000 http://www.chipwreck.de/blog/?p=4252#comment-247 Cool, thanks! Yes, that's what I meant by "tricky" :)...Slider.set() fires the change and complete events, so when moving the slider and calling set() this fires timeupdate on the video which (in return) again (re)-sets the slider...To check "is.Dragging" is a good idea, but I assume this breaks if you don't *drag* the slider, but click in the white area to the left or right ?!And yes, setting the knob directly is also my solution. But I'm trying to find a solution which also works with different snap-values and things like left margin. You can see the first (ugly) try here, the thing is implemented as class, visible in the sourcecode:http://www.chipwreck.de/_mootools/cwvideo/example.php Cool, thanks! Yes, that’s what I meant by “tricky” :)…

Slider.set() fires the change and complete events, so when moving the slider and calling set() this fires timeupdate on the video which (in return) again (re)-sets the slider…

To check “is.Dragging” is a good idea, but I assume this breaks if you don’t *drag* the slider, but click in the white area to the left or right ?!

And yes, setting the knob directly is also my solution. But I’m trying to find a solution which also works with different snap-values and things like left margin. You can see the first (ugly) try here, the thing is implemented as class, visible in the sourcecode:

http://www.chipwreck.de/_mootools/cwvideo/example.php

]]>
Comment on HTML 5 video & Mootools by Jan Miskerhttp://www.chipwreck.de/blog/2010/03/02/html-5-video-mootools/comment-page-1/#comment-246 Jan Misker Tue, 02 Mar 2010 23:37:57 +0000 http://www.chipwreck.de/blog/?p=4252#comment-246 Couldn't help to play a bit, based on your code. First I created a slider to set the currentTime value. To also show the progress I did _not_ use the Slider.set() function, because that somehow messes things up. Instead I just changed the left position of the knob directly, actually bypassing the Slider. Also I checked the Slider.isDragging value, when it's true I don't set the position of the knob.I'll put the code here but don't know how legible it will be... $('myvid').addEvent('timeupdate', function(an_event){ if (!mySlider.isDragging) { $('knob').setStyle('left', ($('timemeter').getSize().x - $('knob').getSize().x) * (this.get('currentTime')/this.get('duration')) + 'px'); } }); Couldn’t help to play a bit, based on your code. First I created a slider to set the currentTime value. To also show the progress I did _not_ use the Slider.set() function, because that somehow messes things up.
Instead I just changed the left position of the knob directly, actually bypassing the Slider. Also I checked the Slider.isDragging value, when it’s true I don’t set the position of the knob.

I’ll put the code here but don’t know how legible it will be…
$(‘myvid’).addEvent(‘timeupdate’, function(an_event){
if (!mySlider.isDragging) {
$(‘knob’).setStyle(‘left’, ($(‘timemeter’).getSize().x – $(‘knob’).getSize().x) * (this.get(‘currentTime’)/this.get(‘duration’)) + ‘px’);
}
});

]]>
Comment on HTML 5 video & Mootools by Torbjoern Karlevidhttp://www.chipwreck.de/blog/2010/03/02/html-5-video-mootools/comment-page-1/#comment-245 Torbjoern Karlevid Tue, 02 Mar 2010 23:01:24 +0000 http://www.chipwreck.de/blog/?p=4252#comment-245 yeah! great work man. this i will use for next project. yeah! great work man. this i will use for next project.

]]>
Comment on HTML 5 video & Mootools by Mariohttp://www.chipwreck.de/blog/2010/03/02/html-5-video-mootools/comment-page-1/#comment-244 Mario Tue, 02 Mar 2010 22:29:32 +0000 http://www.chipwreck.de/blog/?p=4252#comment-244 Yes, a very good idea. I already started with a timeline-slider, but this is a bit tricky. But nevertheless: Either this will be the topic of a new post the next days or I'll update this one here.. Yes, a very good idea. I already started with a timeline-slider, but this is a bit tricky. But nevertheless: Either this will be the topic of a new post the next days or I’ll update this one here..

]]>
Comment on HTML 5 video & Mootools by Jan Miskerhttp://www.chipwreck.de/blog/2010/03/02/html-5-video-mootools/comment-page-1/#comment-243 Jan Misker Tue, 02 Mar 2010 22:17:32 +0000 http://www.chipwreck.de/blog/?p=4252#comment-243 Looks good. How about adding a slider control for 1) displaying the current time in the clip and 2) seeking to other times in the clip? Looks good. How about adding a slider control for 1) displaying the current time in the clip and 2) seeking to other times in the clip?

]]>