<?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>Thu, 18 Feb 2010 21:16:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Faster parallel MXMLC compilation using Ant by felix</title>
		<link>http://www.betriebsraum.de/blog/2010/02/09/faster-parallel-mxmlc-compilation-using-ant/comment-page-1/#comment-302096</link>
		<dc:creator>felix</dc:creator>
		<pubDate>Thu, 18 Feb 2010 21:16:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/?p=1151#comment-302096</guid>
		<description>Hi Flo,

the properties and values depend on your project setup but for the simplified example above they could be:

&lt;pre lang=&quot;xml&quot;&gt;
&lt;property name=&quot;flex.sdk.dir&quot; value=&quot;${basedir}/tools/flex-sdk&quot;/&gt;
&lt;property name=&quot;flex.source.dir&quot; value=&quot;${basedir}/src/flex&quot;/&gt;
&lt;property name=&quot;flex.release.dir&quot; value=&quot;${basedir}/web/swf&quot;/&gt;
&lt;property name=&quot;flex.modules&quot; value=&quot;module1,module2,module3&quot;/&gt;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Hi Flo,</p>
<p>the properties and values depend on your project setup but for the simplified example above they could be:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;property</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;flex.sdk.dir&quot;</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">&quot;${basedir}/tools/flex-sdk&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;property</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;flex.source.dir&quot;</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">&quot;${basedir}/src/flex&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;property</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;flex.release.dir&quot;</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">&quot;${basedir}/web/swf&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;property</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;flex.modules&quot;</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">&quot;module1,module2,module3&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span></pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>Comment on Faster parallel MXMLC compilation using Ant by flo</title>
		<link>http://www.betriebsraum.de/blog/2010/02/09/faster-parallel-mxmlc-compilation-using-ant/comment-page-1/#comment-302079</link>
		<dc:creator>flo</dc:creator>
		<pubDate>Thu, 18 Feb 2010 04:22:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/?p=1151#comment-302079</guid>
		<description>Hi,

could you post the properties section as well, please?

Thanx, flo;</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>could you post the properties section as well, please?</p>
<p>Thanx, flo;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Runtime font loading with AS3 / Flash CS3 (not Flex!) by Chris</title>
		<link>http://www.betriebsraum.de/blog/2007/06/22/runtime-font-loading-with-as3-flash-cs3-not-flex/comment-page-1/#comment-301961</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Sat, 13 Feb 2010 00:48:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/2007/06/22/runtime-font-loading-with-as3-flash-cs3-not-flex/#comment-301961</guid>
		<description>Ah Ha!

I read &quot;If you additionally place a static textfield onto the stage with the same font, the text in the dynamic textfield isn’t shown anymore.&quot; to mean you cannot have them on stage at the same time, on the same keyframe. It really means anywhere in the movie! And not just static textfields, don&#039;t select the same font as the one you are embedding for any type field. If you have to place a dynamic text field on the stage manually instead of using AS to create, make sure to select a font that is not being embedded. Then in AS apply the style sheet.
For other things, like UI components, say the label on a radio button, 
the work-around for I found is to use the transform method of the styleSheet and then the setStyle  or setTextFormat method depending on where the text is (in a UI component or a textfield).

var style:Object = sheet.getStyle(&quot;.myStyle&quot;);//note the . 
var cssFormat = sheet.transform(style);
myRadioButton.setStyle(&quot;disabledTextFormat&quot;, cssFormat);</description>
		<content:encoded><![CDATA[<p>Ah Ha!</p>
<p>I read &#8220;If you additionally place a static textfield onto the stage with the same font, the text in the dynamic textfield isn’t shown anymore.&#8221; to mean you cannot have them on stage at the same time, on the same keyframe. It really means anywhere in the movie! And not just static textfields, don&#8217;t select the same font as the one you are embedding for any type field. If you have to place a dynamic text field on the stage manually instead of using AS to create, make sure to select a font that is not being embedded. Then in AS apply the style sheet.<br />
For other things, like UI components, say the label on a radio button,<br />
the work-around for I found is to use the transform method of the styleSheet and then the setStyle  or setTextFormat method depending on where the text is (in a UI component or a textfield).</p>
<p>var style:Object = sheet.getStyle(&#8220;.myStyle&#8221;);//note the .<br />
var cssFormat = sheet.transform(style);<br />
myRadioButton.setStyle(&#8220;disabledTextFormat&#8221;, cssFormat);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Runtime font loading with AS3 / Flash CS3 (not Flex!) by Chris</title>
		<link>http://www.betriebsraum.de/blog/2007/06/22/runtime-font-loading-with-as3-flash-cs3-not-flex/comment-page-1/#comment-301958</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 12 Feb 2010 20:40:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/2007/06/22/runtime-font-loading-with-as3-flash-cs3-not-flex/#comment-301958</guid>
		<description>pretty sure
 .bodyText{font-family: Verdana;
	font-size: 14px;
	color:#000000;
}</description>
		<content:encoded><![CDATA[<p>pretty sure<br />
 .bodyText{font-family: Verdana;<br />
	font-size: 14px;<br />
	color:#000000;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Runtime font loading with AS3 / Flash CS3 (not Flex!) by felix</title>
		<link>http://www.betriebsraum.de/blog/2007/06/22/runtime-font-loading-with-as3-flash-cs3-not-flex/comment-page-1/#comment-301916</link>
		<dc:creator>felix</dc:creator>
		<pubDate>Wed, 10 Feb 2010 20:09:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/2007/06/22/runtime-font-loading-with-as3-flash-cs3-not-flex/#comment-301916</guid>
		<description>Hi Chris,

are you sure you&#039;ve correctly declared your styles in the css file?</description>
		<content:encoded><![CDATA[<p>Hi Chris,</p>
<p>are you sure you&#8217;ve correctly declared your styles in the css file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Runtime font loading with AS3 / Flash CS3 (not Flex!) by Chris</title>
		<link>http://www.betriebsraum.de/blog/2007/06/22/runtime-font-loading-with-as3-flash-cs3-not-flex/comment-page-1/#comment-301904</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Wed, 10 Feb 2010 14:51:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/2007/06/22/runtime-font-loading-with-as3-flash-cs3-not-flex/#comment-301904</guid>
		<description>Great it does not display the code. let me try again:

This works great on formatting text within tags like &lt;h1&gt;, but it does not seem to work when using tags with a class parameter, like &lt;p class=&quot;bodyText&quot;&gt;

Any Ideas?

Thanks</description>
		<content:encoded><![CDATA[<p>Great it does not display the code. let me try again:</p>
<p>This works great on formatting text within tags like &lt;h1&gt;, but it does not seem to work when using tags with a class parameter, like &lt;p class=&quot;bodyText&quot;&gt;</p>
<p>Any Ideas?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Runtime font loading with AS3 / Flash CS3 (not Flex!) by Chris</title>
		<link>http://www.betriebsraum.de/blog/2007/06/22/runtime-font-loading-with-as3-flash-cs3-not-flex/comment-page-1/#comment-301903</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Wed, 10 Feb 2010 14:49:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/2007/06/22/runtime-font-loading-with-as3-flash-cs3-not-flex/#comment-301903</guid>
		<description>Thanks for this, it has been very helpful. 

I have found one issue. This works great on formatting text within tags like , but it does not seem to work when using tags with a class parameter, like .

Any ideas?

Thanks</description>
		<content:encoded><![CDATA[<p>Thanks for this, it has been very helpful. </p>
<p>I have found one issue. This works great on formatting text within tags like , but it does not seem to work when using tags with a class parameter, like .</p>
<p>Any ideas?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Better Tests with Test Data Builders by Michael</title>
		<link>http://www.betriebsraum.de/blog/2010/02/08/better-tests-with-test-data-builders/comment-page-1/#comment-301879</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Tue, 09 Feb 2010 22:45:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/?p=1090#comment-301879</guid>
		<description>Hi Felix,

you are so cool and sophisticated. Thanks for your article. Now my tests will be much better. Your blog is a real enhancement for the community. Thanks again and go on writing those articles.</description>
		<content:encoded><![CDATA[<p>Hi Felix,</p>
<p>you are so cool and sophisticated. Thanks for your article. Now my tests will be much better. Your blog is a real enhancement for the community. Thanks again and go on writing those articles.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Better Tests with Test Data Builders by felix</title>
		<link>http://www.betriebsraum.de/blog/2010/02/08/better-tests-with-test-data-builders/comment-page-1/#comment-301849</link>
		<dc:creator>felix</dc:creator>
		<pubDate>Mon, 08 Feb 2010 22:46:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/?p=1090#comment-301849</guid>
		<description>Hi David,

thanks, interesting project for generating large test sets! (the main point of this article is to show how to encapsulate test data using OOP and constructing objects using a clean interface...)</description>
		<content:encoded><![CDATA[<p>Hi David,</p>
<p>thanks, interesting project for generating large test sets! (the main point of this article is to show how to encapsulate test data using OOP and constructing objects using a clean interface&#8230;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Better Tests with Test Data Builders by David Buhler</title>
		<link>http://www.betriebsraum.de/blog/2010/02/08/better-tests-with-test-data-builders/comment-page-1/#comment-301847</link>
		<dc:creator>David Buhler</dc:creator>
		<pubDate>Mon, 08 Feb 2010 21:52:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.betriebsraum.de/blog/?p=1090#comment-301847</guid>
		<description>I had completed a project in ColdFusion a few years ago that created highly random, highly readable data for testing.

http://code.google.com/p/coldfusionrandomdatagenerator/

It&#039;s a project I&#039;ve been meaning to port over to Actionscript for quite some time, but have been busy on another project (as is always the case).

If you find yourself needing a starting point to create AS functions that return random data that looks real enough to cross-reference and discuss with clients, it may serve your needs.

David Buhler</description>
		<content:encoded><![CDATA[<p>I had completed a project in ColdFusion a few years ago that created highly random, highly readable data for testing.</p>
<p><a href="http://code.google.com/p/coldfusionrandomdatagenerator/" rel="nofollow">http://code.google.com/p/coldfusionrandomdatagenerator/</a></p>
<p>It&#8217;s a project I&#8217;ve been meaning to port over to Actionscript for quite some time, but have been busy on another project (as is always the case).</p>
<p>If you find yourself needing a starting point to create AS functions that return random data that looks real enough to cross-reference and discuss with clients, it may serve your needs.</p>
<p>David Buhler</p>
]]></content:encoded>
	</item>
</channel>
</rss>
