<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Agent YUI: Mission 4 &#8211; Some Animation, Q?</title>
	<atom:link href="http://www.klauskomenda.com/archives/2008/01/28/agent-yui-mission-4-some-animation-q/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.klauskomenda.com/archives/2008/01/28/agent-yui-mission-4-some-animation-q/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 25 Jan 2012 00:41:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: leopinzon</title>
		<link>http://www.klauskomenda.com/archives/2008/01/28/agent-yui-mission-4-some-animation-q/comment-page-1/#comment-4378</link>
		<dc:creator>leopinzon</dc:creator>
		<pubDate>Sun, 17 Feb 2008 01:07:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.klauskomenda.com/archives/2008/01/28/agent-yui-mission-4-some-animation-q/#comment-4378</guid>
		<description>How can I make an action to start AFTER all the animation has finished??? I mean, if i&#039;m using the Motion, how can I control that after the element gets to the end point, an actions starts up!??

Right now I&#039;m using the onComplete event, but it fires much before the element finishes its animation.

thanx.</description>
		<content:encoded><![CDATA[<p>How can I make an action to start AFTER all the animation has finished??? I mean, if i&#8217;m using the Motion, how can I control that after the element gets to the end point, an actions starts up!??</p>
<p>Right now I&#8217;m using the onComplete event, but it fires much before the element finishes its animation.</p>
<p>thanx.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Dorward</title>
		<link>http://www.klauskomenda.com/archives/2008/01/28/agent-yui-mission-4-some-animation-q/comment-page-1/#comment-3950</link>
		<dc:creator>David Dorward</dc:creator>
		<pubDate>Mon, 28 Jan 2008 14:41:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.klauskomenda.com/archives/2008/01/28/agent-yui-mission-4-some-animation-q/#comment-3950</guid>
		<description>I don&#039;t really object to document.write (although I think DOM methods are cleaner), but combining it with XHTML is very troublesome (and will break if the XHTML is ever treated as such).

I haven&#039;t investigated methods of injecting stylesheets into the page with JavaScript, but it would be an interesting subject for some research.

Timing is a factor, since you would want the CSS to be applied before the page started to be rendered. So how to browsers handle style elements being added before the head element is finished, or just after the body element is started?

It would be worth poking around with a search engine to see if anyone has documented this already, and if not, to write some test cases and see what happens. I might do it myself if I find myself with some free time.

Of course, doing all that would take some time. The quick and easy solution would be to switch to HTML 4.01, which works in browsers without hacks (while XHTML 1.0 as text/html might be blessed by the RFC, I&#039;m of the opinion that it is still a hack).</description>
		<content:encoded><![CDATA[<p>I don&#8217;t really object to document.write (although I think DOM methods are cleaner), but combining it with XHTML is very troublesome (and will break if the XHTML is ever treated as such).</p>
<p>I haven&#8217;t investigated methods of injecting stylesheets into the page with JavaScript, but it would be an interesting subject for some research.</p>
<p>Timing is a factor, since you would want the CSS to be applied before the page started to be rendered. So how to browsers handle style elements being added before the head element is finished, or just after the body element is started?</p>
<p>It would be worth poking around with a search engine to see if anyone has documented this already, and if not, to write some test cases and see what happens. I might do it myself if I find myself with some free time.</p>
<p>Of course, doing all that would take some time. The quick and easy solution would be to switch to HTML 4.01, which works in browsers without hacks (while XHTML 1.0 as text/html might be blessed by the RFC, I&#8217;m of the opinion that it is still a hack).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Klaus</title>
		<link>http://www.klauskomenda.com/archives/2008/01/28/agent-yui-mission-4-some-animation-q/comment-page-1/#comment-3949</link>
		<dc:creator>Klaus</dc:creator>
		<pubDate>Mon, 28 Jan 2008 14:09:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.klauskomenda.com/archives/2008/01/28/agent-yui-mission-4-some-animation-q/#comment-3949</guid>
		<description>@David
ad 1.) Thanks for pointing that out :-) That&#039;s the problem when you are writing that on an airplane and rushing to get it on the page. Corrected.

ad 2.) I totally agree, but for the sake of quickly getting it done (and simplicity and laziness probably), I choose document.write. But I know it is ugly. I could have gotton all the elements on the page separately and then set their styling properties using YUI, for example. David, if you have a smarter idea to do this (which I think you have :-)) please let me know (bearing in mind that it should not be too overwhelming for a beginners tutorial).</description>
		<content:encoded><![CDATA[<p>@David<br />
ad 1.) Thanks for pointing that out <img src='http://www.klauskomenda.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  That&#8217;s the problem when you are writing that on an airplane and rushing to get it on the page. Corrected.</p>
<p>ad 2.) I totally agree, but for the sake of quickly getting it done (and simplicity and laziness probably), I choose document.write. But I know it is ugly. I could have gotton all the elements on the page separately and then set their styling properties using YUI, for example. David, if you have a smarter idea to do this (which I think you have <img src='http://www.klauskomenda.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> ) please let me know (bearing in mind that it should not be too overwhelming for a beginners tutorial).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Dorward</title>
		<link>http://www.klauskomenda.com/archives/2008/01/28/agent-yui-mission-4-some-animation-q/comment-page-1/#comment-3943</link>
		<dc:creator>David Dorward</dc:creator>
		<pubDate>Mon, 28 Jan 2008 07:23:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.klauskomenda.com/archives/2008/01/28/agent-yui-mission-4-some-animation-q/#comment-3943</guid>
		<description>I skipped to the end to see the complete demo, so I haven&#039;t gone through this properly yet, but..

You might want to edit your last example so that you reference the Yahoo! hosted YUI files rather than the ones that live inside your LAN :)

Also, document.write in an XHTML document? Isn&#039;t it a little silly to depend on a DOM 0 feature that most, if not all, browsers with an XHTML mode won&#039;t support in that mode?</description>
		<content:encoded><![CDATA[<p>I skipped to the end to see the complete demo, so I haven&#8217;t gone through this properly yet, but..</p>
<p>You might want to edit your last example so that you reference the Yahoo! hosted YUI files rather than the ones that live inside your LAN <img src='http://www.klauskomenda.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Also, document.write in an XHTML document? Isn&#8217;t it a little silly to depend on a DOM 0 feature that most, if not all, browsers with an XHTML mode won&#8217;t support in that mode?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

