<?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 for b-log - betriebsraum weblog</title>
	<atom:link href="http://www.betriebsraum.de/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.betriebsraum.de/blog</link>
	<description>Rich Internet Applications, Software Development, Human-Computer Interaction</description>
	<lastBuildDate>Tue, 15 Nov 2011 08:03:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>Comment on Efficient Gesture Recognition and Corner Finding in AS3 by sarah</title>
		<link>http://www.betriebsraum.de/blog/2009/07/21/efficient-gesture-recognition-and-corner-finding-in-as3/comment-page-1/#comment-327027</link>
		<dc:creator>sarah</dc:creator>
		<pubDate>Tue, 15 Nov 2011 08:03:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/?p=494#comment-327027</guid>
		<description>I keep trying to download your code, but it wont run on my machine... 
I says there&#039;s an error on btnAddGesture</description>
		<content:encoded><![CDATA[<p>I keep trying to download your code, but it wont run on my machine&#8230;<br />
I says there&#8217;s an error on btnAddGesture</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Faster parallel MXMLC compilation using Ant by HC</title>
		<link>http://www.betriebsraum.de/blog/2010/02/09/faster-parallel-mxmlc-compilation-using-ant/comment-page-1/#comment-326096</link>
		<dc:creator>HC</dc:creator>
		<pubDate>Thu, 20 Oct 2011 09:24:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/?p=1151#comment-326096</guid>
		<description>Nice Article!

Now, i can build multiple modules using script.
My problem is with custom component.
Some of my modules use custom component (created in same project).

At the time of build, i am getting following error.

    [mxmlc] C:\FxProject\src\Module\Module1.mxml(9):  Error: Definition components:comp1 could not be found.
    [mxmlc] 		import components.comp1;

If anyone have idea, please suggest solution.</description>
		<content:encoded><![CDATA[<p>Nice Article!</p>
<p>Now, i can build multiple modules using script.<br />
My problem is with custom component.<br />
Some of my modules use custom component (created in same project).</p>
<p>At the time of build, i am getting following error.</p>
<p>    [mxmlc] C:\FxProject\src\Module\Module1.mxml(9):  Error: Definition components:comp1 could not be found.<br />
    [mxmlc] 		import components.comp1;</p>
<p>If anyone have idea, please suggest solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript Development vs. Flex Development (and why today, web development sucks&#8230;) by Abhijit</title>
		<link>http://www.betriebsraum.de/blog/2011/02/08/javascript-development-vs-flex-development-and-why-today-web-development-sucks/comment-page-1/#comment-325356</link>
		<dc:creator>Abhijit</dc:creator>
		<pubDate>Sat, 01 Oct 2011 12:37:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/?p=1405#comment-325356</guid>
		<description>Hey this is a great article. I have been in Adobe Flex 3 development since last 18 months. Flex/Flash definitly makes a developer&#039;s life more easy....you can focus on delivering rich user experience instead of wasting yur time on tasks like mulitple browser support.</description>
		<content:encoded><![CDATA[<p>Hey this is a great article. I have been in Adobe Flex 3 development since last 18 months. Flex/Flash definitly makes a developer&#8217;s life more easy&#8230;.you can focus on delivering rich user experience instead of wasting yur time on tasks like mulitple browser support.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Faster parallel MXMLC compilation using Ant by 5kn</title>
		<link>http://www.betriebsraum.de/blog/2010/02/09/faster-parallel-mxmlc-compilation-using-ant/comment-page-1/#comment-323866</link>
		<dc:creator>5kn</dc:creator>
		<pubDate>Thu, 25 Aug 2011 13:05:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/?p=1151#comment-323866</guid>
		<description>Nevermind, missed that you had the parallel attribute on the for loop, though your use of sequential is still excessive. Once your in a sequential state, you stuck in until your finished.</description>
		<content:encoded><![CDATA[<p>Nevermind, missed that you had the parallel attribute on the for loop, though your use of sequential is still excessive. Once your in a sequential state, you stuck in until your finished.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Faster parallel MXMLC compilation using Ant by 5kn</title>
		<link>http://www.betriebsraum.de/blog/2010/02/09/faster-parallel-mxmlc-compilation-using-ant/comment-page-1/#comment-323865</link>
		<dc:creator>5kn</dc:creator>
		<pubDate>Thu, 25 Aug 2011 13:01:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/?p=1151#comment-323865</guid>
		<description>Not sure how you figure this to be running in parallel, and faster than a sequential build script. Probably worth checking how your code works beforehand or even glancing at the Ant documentation.

Your running everything in &#039;sequential&#039; blocks which according to the Ant document runs each task one after another, what you want to use is &#039;parallel&#039; which as the name suggestions runs things at the same time rather than in sequence. The way your using the &#039;sequential&#039; task is pointless, Ant is going to run things in that order anyway since your never entering a parallel state. http://ant.apache.org/manual/Tasks/sequential.html

Would also be better to use the Ant tasks provided by the Flex SDK rather than calling the jars.</description>
		<content:encoded><![CDATA[<p>Not sure how you figure this to be running in parallel, and faster than a sequential build script. Probably worth checking how your code works beforehand or even glancing at the Ant documentation.</p>
<p>Your running everything in &#8216;sequential&#8217; blocks which according to the Ant document runs each task one after another, what you want to use is &#8216;parallel&#8217; which as the name suggestions runs things at the same time rather than in sequence. The way your using the &#8216;sequential&#8217; task is pointless, Ant is going to run things in that order anyway since your never entering a parallel state. <a href="http://ant.apache.org/manual/Tasks/sequential.html" rel="nofollow">http://ant.apache.org/manual/Tasks/sequential.html</a></p>
<p>Would also be better to use the Ant tasks provided by the Flex SDK rather than calling the jars.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Runtime font loading with AS3 / Flash CS3 (not Flex!) by Seshadri@MF</title>
		<link>http://www.betriebsraum.de/blog/2007/06/22/runtime-font-loading-with-as3-flash-cs3-not-flex/comment-page-2/#comment-323386</link>
		<dc:creator>Seshadri@MF</dc:creator>
		<pubDate>Thu, 18 Aug 2011 11:09:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/2007/06/22/runtime-font-loading-with-as3-flash-cs3-not-flex/#comment-323386</guid>
		<description>@santoshs: you need to have a mechanism to set the text format for the static text  when the loading is over. And you have to take care that the fonts are already loaded in the main , before you try to access it. 
What I used to do is , Load the fonts intially and when they are loaded save them in an class as static variable.Then I used to wait for the intial assets to be laoded(like font and child .swf), and when they are laoded, I call a method(s) in the child swf(s) to set the text format according to the loaded font in the staic variable. All other assets loaded afterwards will be using the staic variable text format to set their text after they are laoded. In this way you can get both your staic and dynamic text hold the loaded font.</description>
		<content:encoded><![CDATA[<p>@santoshs: you need to have a mechanism to set the text format for the static text  when the loading is over. And you have to take care that the fonts are already loaded in the main , before you try to access it.<br />
What I used to do is , Load the fonts intially and when they are loaded save them in an class as static variable.Then I used to wait for the intial assets to be laoded(like font and child .swf), and when they are laoded, I call a method(s) in the child swf(s) to set the text format according to the loaded font in the staic variable. All other assets loaded afterwards will be using the staic variable text format to set their text after they are laoded. In this way you can get both your staic and dynamic text hold the loaded font.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript Development vs. Flex Development (and why today, web development sucks&#8230;) by ash</title>
		<link>http://www.betriebsraum.de/blog/2011/02/08/javascript-development-vs-flex-development-and-why-today-web-development-sucks/comment-page-1/#comment-321101</link>
		<dc:creator>ash</dc:creator>
		<pubDate>Fri, 01 Jul 2011 19:56:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/?p=1405#comment-321101</guid>
		<description>You&#039;ve got one language and one environment. The toolchain is mature and works pretty damn well. As Flex4 developers, we&#039;re spoiled.

As I dabble in HTML5 development, I notice the complete opposite, everything is fragmented, from languages to libraries.

Although the browser as a platform will probably happen, competitive business pressures will never allow it to remain a consistent platform.</description>
		<content:encoded><![CDATA[<p>You&#8217;ve got one language and one environment. The toolchain is mature and works pretty damn well. As Flex4 developers, we&#8217;re spoiled.</p>
<p>As I dabble in HTML5 development, I notice the complete opposite, everything is fragmented, from languages to libraries.</p>
<p>Although the browser as a platform will probably happen, competitive business pressures will never allow it to remain a consistent platform.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript Development vs. Flex Development (and why today, web development sucks&#8230;) by Ethan</title>
		<link>http://www.betriebsraum.de/blog/2011/02/08/javascript-development-vs-flex-development-and-why-today-web-development-sucks/comment-page-1/#comment-320802</link>
		<dc:creator>Ethan</dc:creator>
		<pubDate>Thu, 23 Jun 2011 14:53:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/?p=1405#comment-320802</guid>
		<description>Excellent post. Just wanted to drop a comment and show support for Adobe. I also code in C# and Java.</description>
		<content:encoded><![CDATA[<p>Excellent post. Just wanted to drop a comment and show support for Adobe. I also code in C# and Java.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript Development vs. Flex Development (and why today, web development sucks&#8230;) by Zoran Kovacevic</title>
		<link>http://www.betriebsraum.de/blog/2011/02/08/javascript-development-vs-flex-development-and-why-today-web-development-sucks/comment-page-1/#comment-320317</link>
		<dc:creator>Zoran Kovacevic</dc:creator>
		<pubDate>Fri, 10 Jun 2011 20:57:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/?p=1405#comment-320317</guid>
		<description>Inconsistent behaviour in predominant application of javascript in real world browser environment (more or less browser specific DOM, CSS &amp; HTML implementation) results in use of various community evolved abstraction mechanisms (to alleviate this condition - e.g. jQuery) and/or essential knowledge of browser specific issues and respective workarounds (hacks) which are sometimes very poorly documented. Tedious trial and error approach is unacceptably often still the only way to desired functionality. Instead of gaining a common web client infrastructure, browser manufacturers still manage to create (deliberately or not) significant browser environment discrepancies to introduce important lack of compatibility between various browsers. What is needed is a well documented and maintained javascript based industry standard software framework encompassing all relevant functionality applicable to the web client context. Only then will application of javascript in the web client context no longer be a &#039;black art&#039; and become a universally accepted and respected standard approach. In this way javascript based development would have lower cost and produce web applications of better quality - especially for large and complex projects (not to mention being much more stress free, predictable and less &#039;guru factor&#039; dependent :-) ).</description>
		<content:encoded><![CDATA[<p>Inconsistent behaviour in predominant application of javascript in real world browser environment (more or less browser specific DOM, CSS &amp; HTML implementation) results in use of various community evolved abstraction mechanisms (to alleviate this condition &#8211; e.g. jQuery) and/or essential knowledge of browser specific issues and respective workarounds (hacks) which are sometimes very poorly documented. Tedious trial and error approach is unacceptably often still the only way to desired functionality. Instead of gaining a common web client infrastructure, browser manufacturers still manage to create (deliberately or not) significant browser environment discrepancies to introduce important lack of compatibility between various browsers. What is needed is a well documented and maintained javascript based industry standard software framework encompassing all relevant functionality applicable to the web client context. Only then will application of javascript in the web client context no longer be a &#8216;black art&#8217; and become a universally accepted and respected standard approach. In this way javascript based development would have lower cost and produce web applications of better quality &#8211; especially for large and complex projects (not to mention being much more stress free, predictable and less &#8216;guru factor&#8217; dependent :-) ).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Faster parallel MXMLC compilation using Ant by JustinG</title>
		<link>http://www.betriebsraum.de/blog/2010/02/09/faster-parallel-mxmlc-compilation-using-ant/comment-page-1/#comment-320054</link>
		<dc:creator>JustinG</dc:creator>
		<pubDate>Fri, 03 Jun 2011 18:50:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/?p=1151#comment-320054</guid>
		<description>What exactly is a &quot;module&quot;? I&#039;ve never seen that term used at all in the Flex development so far so I&#039;m a little unsure of how to go about using this.</description>
		<content:encoded><![CDATA[<p>What exactly is a &#8220;module&#8221;? I&#8217;ve never seen that term used at all in the Flex development so far so I&#8217;m a little unsure of how to go about using this.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

