<?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 My Coding Life</title>
	<atom:link href="http://blog.johannest.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.johannest.com</link>
	<description>Flash from ActionScript to Z-index.</description>
	<lastBuildDate>Fri, 11 Nov 2011 12:00:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Runtime Font Publisher, a tool for runtime font sharing. by Aristophrenia</title>
		<link>http://blog.johannest.com/2010/06/22/runtime-font-publisher-a-tool-for-runtime-font-sharing/comment-page-1/#comment-448</link>
		<dc:creator>Aristophrenia</dc:creator>
		<pubDate>Fri, 11 Nov 2011 12:00:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.johannest.com/?p=84#comment-448</guid>
		<description>Hi,
am very keen to get this up and running - however have not been able to register a single font ?

I&#039;m using cs5 from eclipse on win7.

The panel appears to be creating the required swf but nothing is being made available in the players font list.

var fontList:Array = Font.enumerateFonts(false);
				trace(&quot;_________COMPLETE FONTS LIST&quot;+fontList.toString());

Any ideas on what is going on ?</description>
		<content:encoded><![CDATA[<p>Hi,<br />
am very keen to get this up and running &#8211; however have not been able to register a single font ?</p>
<p>I&#8217;m using cs5 from eclipse on win7.</p>
<p>The panel appears to be creating the required swf but nothing is being made available in the players font list.</p>
<p>var fontList:Array = Font.enumerateFonts(false);<br />
				trace(&#8220;_________COMPLETE FONTS LIST&#8221;+fontList.toString());</p>
<p>Any ideas on what is going on ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GotoClip. A solution for Error #1009, gotoAndStop, gotoAndPlay and targeting children MovieClips. by Vitor Franchi</title>
		<link>http://blog.johannest.com/2009/04/30/gotoclip-a-solution-for-error-1009-gotoandstop-gotoandplay-and-targeting-children-movieclips/comment-page-1/#comment-444</link>
		<dc:creator>Vitor Franchi</dc:creator>
		<pubDate>Fri, 09 Sep 2011 01:16:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.johannest.com/?p=14#comment-444</guid>
		<description>Thanks for you post! I was loosing my head on why I&#039;m getting this error every time I call gotoAndStop on my custom movie clip I had just instantiated.
Flash really looses the reference to the object when you call gotoAndStop, or gotoAndPlay. You need to instantiate your object, make all changes necessary and finally change it&#039;s frame if needed, otherwise you&#039;ll need to find you recently instantiated object on the stage children, if you had added it to it. That&#039;s messed up!</description>
		<content:encoded><![CDATA[<p>Thanks for you post! I was loosing my head on why I&#8217;m getting this error every time I call gotoAndStop on my custom movie clip I had just instantiated.<br />
Flash really looses the reference to the object when you call gotoAndStop, or gotoAndPlay. You need to instantiate your object, make all changes necessary and finally change it&#8217;s frame if needed, otherwise you&#8217;ll need to find you recently instantiated object on the stage children, if you had added it to it. That&#8217;s messed up!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Runtime Font Publisher; A Flash CS4 Extension. by gniewko</title>
		<link>http://blog.johannest.com/2009/09/28/runtime-font-publisher-a-flash-cs4-extension/comment-page-1/#comment-435</link>
		<dc:creator>gniewko</dc:creator>
		<pubDate>Thu, 07 Apr 2011 13:20:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.johannest.com/?p=36#comment-435</guid>
		<description>ok I did it through:

var styles:StyleSheet = new StyleSheet();
styles.setStyle(&quot;em&quot;, {
 display:&quot;inline&quot;,
 fontFamily: &quot;FuturaBKBold&quot;,
 fontStyle: &quot;regular&quot;
});
tf.styleSheet = styles;

And it works fine now for &lt;em&gt;Bolded Text&lt;/em&gt;</description>
		<content:encoded><![CDATA[<p>ok I did it through:</p>
<p>var styles:StyleSheet = new StyleSheet();<br />
styles.setStyle(&#8220;em&#8221;, {<br />
 display:&#8221;inline&#8221;,<br />
 fontFamily: &#8220;FuturaBKBold&#8221;,<br />
 fontStyle: &#8220;regular&#8221;<br />
});<br />
tf.styleSheet = styles;</p>
<p>And it works fine now for &lt;em&gt;Bolded Text&lt;/em&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Runtime Font Publisher; A Flash CS4 Extension. by gniewko</title>
		<link>http://blog.johannest.com/2009/09/28/runtime-font-publisher-a-flash-cs4-extension/comment-page-1/#comment-434</link>
		<dc:creator>gniewko</dc:creator>
		<pubDate>Thu, 07 Apr 2011 12:19:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.johannest.com/?p=36#comment-434</guid>
		<description>gr8 tool ... have been using it since long time, however I have an issue. Is it possible to use two separate fonts (one is regular nad the other bold) to make it work for example with htmlText like this:

&lt;b&gt;bold&lt;/b&gt; en of bold.

I have not idea how to do it even if i Have the same font but styles are in separate ttf files. Please help.</description>
		<content:encoded><![CDATA[<p>gr8 tool &#8230; have been using it since long time, however I have an issue. Is it possible to use two separate fonts (one is regular nad the other bold) to make it work for example with htmlText like this:</p>
<p><b>bold</b> en of bold.</p>
<p>I have not idea how to do it even if i Have the same font but styles are in separate ttf files. Please help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A property list for embedding fonts with the [Emded] metadata tag. by wagster</title>
		<link>http://blog.johannest.com/2010/01/20/a-property-list-for-embedding-fonts-with-the-emded-metadata-tag/comment-page-1/#comment-425</link>
		<dc:creator>wagster</dc:creator>
		<pubDate>Fri, 10 Dec 2010 11:24:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.johannest.com/?p=44#comment-425</guid>
		<description>Oh lordy - why don&#039;t Adobe publish this stuff?  It really shouldn&#039;t be up to people like you to document the behaviour of their software.

Thanks a lot - immediate bookmark.</description>
		<content:encoded><![CDATA[<p>Oh lordy &#8211; why don&#8217;t Adobe publish this stuff?  It really shouldn&#8217;t be up to people like you to document the behaviour of their software.</p>
<p>Thanks a lot &#8211; immediate bookmark.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debugging ActionScript and JavaScript simultaneously with Flash Builder 4 and Aptana Studio. by Johannes</title>
		<link>http://blog.johannest.com/2010/10/19/debugging-actionscript-and-javascript-simultaneously-with-flash-builder-4-and-aptana-studio/comment-page-1/#comment-374</link>
		<dc:creator>Johannes</dc:creator>
		<pubDate>Mon, 25 Oct 2010 16:23:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.johannest.com/?p=133#comment-374</guid>
		<description>Glad to hear it works with IE, I haven&#039;t had a chance to try yet. Aptana supports IE debugging in addition to Firefox debugging, so it&#039;s good to know the technique works with both browsers. Thanks for the confirmation!</description>
		<content:encoded><![CDATA[<p>Glad to hear it works with IE, I haven&#8217;t had a chance to try yet. Aptana supports IE debugging in addition to Firefox debugging, so it&#8217;s good to know the technique works with both browsers. Thanks for the confirmation!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debugging ActionScript and JavaScript simultaneously with Flash Builder 4 and Aptana Studio. by Niko</title>
		<link>http://blog.johannest.com/2010/10/19/debugging-actionscript-and-javascript-simultaneously-with-flash-builder-4-and-aptana-studio/comment-page-1/#comment-373</link>
		<dc:creator>Niko</dc:creator>
		<pubDate>Mon, 25 Oct 2010 11:49:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.johannest.com/?p=133#comment-373</guid>
		<description>Nice!

One more thing: It also works with Internet Explorer. Even better in my case since Firefox often crashes when opening the debug session.</description>
		<content:encoded><![CDATA[<p>Nice!</p>
<p>One more thing: It also works with Internet Explorer. Even better in my case since Firefox often crashes when opening the debug session.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debugging ActionScript and JavaScript simultaneously with Flash Builder 4 and Aptana Studio. by Tweets that mention My Coding Life – Debugging ActionScript and JavaScript simultaneously with Flash Builder 4 and Aptana Studio. -- Topsy.com</title>
		<link>http://blog.johannest.com/2010/10/19/debugging-actionscript-and-javascript-simultaneously-with-flash-builder-4-and-aptana-studio/comment-page-1/#comment-360</link>
		<dc:creator>Tweets that mention My Coding Life – Debugging ActionScript and JavaScript simultaneously with Flash Builder 4 and Aptana Studio. -- Topsy.com</dc:creator>
		<pubDate>Wed, 20 Oct 2010 10:29:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.johannest.com/?p=133#comment-360</guid>
		<description>[...] This post was mentioned on Twitter by reda makhchan, Eric Snowden, karannnnnnnnnnn3, fmchicago, FMC Washington DC and others. FMC Washington DC said: Debugging ActionScript and JavaScript simultaneously with Flash Builder 4 and Aptana Studio.: Flash or Flex applic... http://bit.ly/ddclmb [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was mentioned on Twitter by reda makhchan, Eric Snowden, karannnnnnnnnnn3, fmchicago, FMC Washington DC and others. FMC Washington DC said: Debugging ActionScript and JavaScript simultaneously with Flash Builder 4 and Aptana Studio.: Flash or Flex applic&#8230; <a href="http://bit.ly/ddclmb" rel="nofollow">http://bit.ly/ddclmb</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on On using the [Embed] tag with fontStyle &amp; fontWeight properties. by Johannes</title>
		<link>http://blog.johannest.com/2010/05/19/on-using-the-embed-tag-with-fontstyle-fontweight-properties/comment-page-1/#comment-357</link>
		<dc:creator>Johannes</dc:creator>
		<pubDate>Mon, 20 Sep 2010 17:01:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.johannest.com/?p=53#comment-357</guid>
		<description>&lt;p&gt;The four faces per fontName is a restriction, because that&#039;s all the ActionScript TextFormat API exposes right now. Bold and Italic are boolean properties on the TextFormat object. For text engine text, the API for FontDescription looks like it could be extended in the future. Both the fontWeight and fontPosture properties accept strings, so in theory different values could be added in the future to allow for more than four faces. You can embed one font with more than four subfamilies, but you&#039;ll have to start separating them by fontName once you get past the four options.&lt;/p&gt;&lt;p&gt;To get bitmap text to work the same as the Flash IDE with mxmlc requires a little more work. You can embed the font with the compiler (mxmlc), but all the extra work that the Flash IDE does to textfields on the timeline to prep for bitmap (non anti-aliased) text, you&#039;ll have to do with ActionScript at runtime after you&#039;ve compiled the font with mxmlc. I don&#039;t know of any embed tag meta data properties that you can add for bitmaps fonts, that are used at runtime by the Flash Player to ensure they render without aliasing.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>The four faces per fontName is a restriction, because that&#8217;s all the ActionScript TextFormat API exposes right now. Bold and Italic are boolean properties on the TextFormat object. For text engine text, the API for FontDescription looks like it could be extended in the future. Both the fontWeight and fontPosture properties accept strings, so in theory different values could be added in the future to allow for more than four faces. You can embed one font with more than four subfamilies, but you&#8217;ll have to start separating them by fontName once you get past the four options.</p>
<p>To get bitmap text to work the same as the Flash IDE with mxmlc requires a little more work. You can embed the font with the compiler (mxmlc), but all the extra work that the Flash IDE does to textfields on the timeline to prep for bitmap (non anti-aliased) text, you&#8217;ll have to do with ActionScript at runtime after you&#8217;ve compiled the font with mxmlc. I don&#8217;t know of any embed tag meta data properties that you can add for bitmaps fonts, that are used at runtime by the Flash Player to ensure they render without aliasing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on On using the [Embed] tag with fontStyle &amp; fontWeight properties. by Denis Sataev</title>
		<link>http://blog.johannest.com/2010/05/19/on-using-the-embed-tag-with-fontstyle-fontweight-properties/comment-page-1/#comment-356</link>
		<dc:creator>Denis Sataev</dc:creator>
		<pubDate>Sun, 19 Sep 2010 02:44:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.johannest.com/?p=53#comment-356</guid>
		<description>Thanks Johannes for quick answer.
But unfortunately, suggested embedding doesn&#039;t work as expected. Only normal typeface (Futura Medium) is embedded.
I&#039;ve managed to convert *.ttc file to several ttf files (using onlinefontconverter.com), so this is workaround for this case. 
You have mentioned that you embedded fonts with other subfamilies, have you succeed in embedding of more than 4 typefaces per single fontName?
Additional off the topic question - is it possible to embed bitmap fonts using mxmlc (Flash Builder)? I mean in Flash IDE it is possible to set anti-alias to Bitmap text [no anti-alias] for any font, is there any ability to achieve the same result using mxmlc(Flash Builder)? 
Best regards.</description>
		<content:encoded><![CDATA[<p>Thanks Johannes for quick answer.<br />
But unfortunately, suggested embedding doesn&#8217;t work as expected. Only normal typeface (Futura Medium) is embedded.<br />
I&#8217;ve managed to convert *.ttc file to several ttf files (using onlinefontconverter.com), so this is workaround for this case.<br />
You have mentioned that you embedded fonts with other subfamilies, have you succeed in embedding of more than 4 typefaces per single fontName?<br />
Additional off the topic question &#8211; is it possible to embed bitmap fonts using mxmlc (Flash Builder)? I mean in Flash IDE it is possible to set anti-alias to Bitmap text [no anti-alias] for any font, is there any ability to achieve the same result using mxmlc(Flash Builder)?<br />
Best regards.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

