<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>FlashPlatform.cz</title>
	<atom:link href="http://www.flashplatform.cz/feed" rel="self" type="application/rss+xml" />
	<link>http://www.flashplatform.cz</link>
	<description>Flash Experts Blog Aggregator.</description>
	<pubDate>Wed, 10 Mar 2010 13:37:55 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>What fontName to use with embedding?</title>
		<link>http://blog.yoz.sk/2010/03/what-fontname-to-use-with-embedding/</link>
		<comments>http://blog.yoz.sk/2010/03/what-fontname-to-use-with-embedding/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 13:37:55 +0000</pubDate>
		<dc:creator>josefchutka</dc:creator>
		
		<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://blog.yoz.sk/?p=1218</guid>
		<description><![CDATA[
This article extends &#8220;Embedding fonts bold vs. black&#8221; post. Sometimes it may be tricky to guess correct fontName with your font. Compilator works with different fontNames than what Flash IDE shows you. Lets say you want to embed fonts from .swf (library) file into .css file. In Flash IDE, properties panel for TextInput, character Family [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.yoz.sk/wp-content/uploads/arialBlack-200x134.png" alt="" title="arialBlack" width="200" height="134" class="alignleft size-medium wp-image-676" /></p>
<p>This article extends &#8220;<a href="http://blog.yoz.sk/2009/11/embedding-fonts-bold-vs-black/">Embedding fonts bold vs. black</a>&#8221; post. Sometimes it may be tricky to guess correct fontName with your font. Compilator works with different fontNames than what Flash IDE shows you. Lets say you want to embed fonts from .swf (library) file into .css file. In Flash IDE, properties panel for TextInput, character Family and Style stand for something totaly different that what you gonna need with correct fontName value later in .css file. In fact solution is very easy.</p>
<p><span id="more-1218"></span></p>
<p>For example, for Helvetica font family, Flash IDE offers one Family called &#8220;Helvetica Neue LT Pro&#8221; with different styles &#8220;65 Medium&#8221;, &#8220;55 Roman&#8221;:</p>
<p><img src="http://blog.yoz.sk/wp-content/uploads/helveticaFlashIDE.jpg" alt="" title="helveticaFlashIDE" width="567" height="309" class="alignnone size-full wp-image-1219" /></p>
<p>Here comes the tricky part. When it comes to .css you may want to use:</p>
<pre class="brush: css;">@font-face
{
    src: url(&quot;assets/fonts.swf&quot;);
    fontFamily: &quot;Helvetica Neue LT Pro&quot;;
    fontStyle: &quot;65 Medium&quot;;
}
</pre>
<p>&#8230; but compiler would stop you saying:</p>
<pre class="brush: plain;">font 'Helvetica Neue LT Pro' with normal weight and regular style not found
Unable to transcode assets/fonts.swf</pre>
<p>&#8230; or something similar.</p>
<p>So how to find out what is the correct fontFamily for compilator? Thankfully, there is an easy help. Locate your .ttf (.otf) file and open it. In my case I have used default system font viewer (Windows XP), but I am sure you can use any solid font viewer application:</p>
<p><img src="http://blog.yoz.sk/wp-content/uploads/helveticaViewer.png" alt="" title="helveticaViewer" width="337" height="277" class="alignnone size-full wp-image-1225" /></p>
<p>&#8230;and there you find your familyName. Now you can embed fonts:</p>
<pre class="brush: css;">@font-face
{
    src: url(&quot;assets/fonts.swf&quot;);
    fontFamily: &quot;HelveticaNeueLT Pro 65 Md&quot;;
}

@font-face
{
    src: url(&quot;assets/fonts.swf&quot;);
    fontFamily: &quot;HelveticaNeueLT Pro 55 Roman&quot;;
    fontWeight: bold;
}</pre>
<p>Notice there is different fontFamily and fontWeight (normal vs. bold) used for each font. If you try to use something else (change fontWeight) with these font-face specifications, compiler would stop you again. The fontFamily thing seems to be clear, but for now the thing with fontWeight remains mystery for me (viewer is not saying a thing about it). Flash IDE font family and style are also suggested somehow mysteriously.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yoz.sk/2010/03/what-fontname-to-use-with-embedding/feed</wfw:commentRss>
		</item>
		<item>
		<title>Inviting Friends into Facebook Application</title>
		<link>http://blog.yoz.sk/2010/03/inviting-friends-into-facebook-application/</link>
		<comments>http://blog.yoz.sk/2010/03/inviting-friends-into-facebook-application/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 11:51:26 +0000</pubDate>
		<dc:creator>josefchutka</dc:creator>
		
		<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://blog.yoz.sk/?p=1182</guid>
		<description><![CDATA[
Those are hard times. Facebook discontinued support for Notifications.send method March 1, 2010. Calling this method returns error code 3 (Unknown method). Instead, developers are directed to use other communication channels. From those some are not yet even a part of facebook-actionscript-api yet (dashboard) other not published from facebook (invites) and those that may work [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.yoz.sk/wp-content/uploads/facebookInvites.jpg" alt="" title="facebookInvites" width="200" height="172" class="alignleft size-full wp-image-1183" /></p>
<p>Those are hard times. Facebook discontinued support for <a href="http://wiki.developers.facebook.com/index.php/Notifications.send">Notifications.send</a> method March 1, 2010. Calling this method returns error code 3 (Unknown method). Instead, developers are directed to use other <a href="http://wiki.developers.facebook.com/index.php/Communication_Channels_Best_Practices">communication channels</a>. From those some are not yet even a part of <a href="http://code.google.com/p/facebook-actionscript-api/">facebook-actionscript-api</a> yet (<a href="http://wiki.developers.facebook.com/index.php/Dashboard_API">dashboard</a>) other not published from facebook (<a href="http://wiki.developers.facebook.com/index.php/Roadmap_Invites">invites</a>) and those that may work via api are experimental and may change any day (<a href="http://wiki.developers.facebook.com/index.php/Dashboard.publishActivity">activities</a>).</p>
<p>Excluding <a href="http://wiki.developers.facebook.com/index.php/Roadmap_Stream">streams</a> as communication channel, the only usable way, these days, to acquire some new facebook application users is using <a href="http://wiki.developers.facebook.com/index.php/Fb:request-form">&lt;Fb:request-form&gt;</a> (part of <a href="http://wiki.developers.facebook.com/index.php/Category:FBML_tags">FBML</a>). When your application is IFrame, you may find interesting that you are able to use FBML within your HTML files. In order to make this happen, you have to use <a href="http://wiki.developers.facebook.com/index.php/Fb:serverFbml">&lt;Fb:serverFbml&gt;</a> (renders the FBML on a Facebook server inside an iframe). Now, lets see how to open request form in your Facebook <strong>Iframe</strong> application:</p>
<p><span id="more-1182"></span></p>
<p>First thing you need is <a href="http://wiki.developers.facebook.com/index.php/Cross_Domain_Communication_Channel">Cross Domain Communication Channel</a> file . It is simple static file, you should name it xd_receiver.htm</p>
<pre class="brush: xml;">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;
   &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; &gt;
&lt;head&gt;
    &lt;title&gt;Cross-Domain Receiver Page&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;script src=&quot;http://static.ak.connect.facebook.com/js/api_lib/v0.4/XdCommReceiver.js?2&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>now your application index.html file with request form:</p>
<pre class="brush: xml;">&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xmlns:fb=&quot;http://www.facebook.com/2008/fbml&quot;&gt;
&lt;head&gt;&lt;/head&gt;
&lt;body&gt;
&lt;script src=&quot;http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
	window.onload = function()
	{
		FB_RequireFeatures([&quot;XFBML&quot;], function()
		{
			FB.Facebook.init(&quot;*YOUR*API*KEY*HERE*&quot;, &quot;xd_receiver.htm&quot;);
		});
	};
&lt;/script&gt;

&lt;fb:serverFbml style=&quot;width: 750px;&quot;&gt;
	&lt;script type=&quot;text/fbml&quot;&gt;
		&lt;fb:fbml&gt;
			&lt;fb:request-form action=&quot;http://www.google.com&quot; method=&quot;POST&quot; invite=&quot;true&quot; type=&quot;TestApp&quot;
				content=&quot;Join my app &amp;lt;fb:req-choice url=&amp;quot;http://apps.facebook.com/facebookyoztest/&amp;quot; label=&amp;quot;Go Test app&amp;quot; /&amp;gt;&quot;&gt;
				&lt;fb:multi-friend-selector showborder=&quot;false&quot; actiontext=&quot;Invite your friends to use Test app.&quot;&gt;
			&lt;/fb:request-form&gt;
		&lt;/fb:fbml&gt;
	&lt;/script&gt;
&lt;/fb:serverFbml&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>Place both files in the same folder (or specify xd_receiver.htm path correctly in FB.Facebook.init() function). Now make sure you setup your application correctly: </p>
<pre class="brush: plain;">Canvas Callback URL: http://facebook.yoz.sk/Test/
Connect URL: http://facebook.yoz.sk/Test/
Base Domain: yoz.sk
Canvas URL: http://apps.facebook.com/facebookyoztest/
FBML/iframe: iframe
Application Type: Website</pre>
<p>Now request form should be generated when you visit canvas url.</p>
<p><img src="http://blog.yoz.sk/wp-content/uploads/facebookInvites2.jpg" alt="" title="facebookInvites2" width="400" height="220" class="alignnone size-full wp-image-1197" /></p>
<p>Important:</p>
<ul>
<li><strong>Your application must be iframe type</strong></li>
<li><strong>URLs used in this article are not to be used in your apps</strong></li>
<li><strong>This article was written and is valid on March 9, 2010</strong></li>
</ul>
<p>Continue reading:</p>
<ul>
<li>[deprecated] <a href="http://wiki.developers.facebook.com/index.php/Notifications.send">Notifications.send</a></li>
<li>[deprecated] <a href="http://wiki.developers.facebook.com/index.php/Notifications.sendRequest">Notifications.sendRequest</a></li>
<li>[May 2010] <a href="http://wiki.developers.facebook.com/index.php/Roadmap_Invites">Roadmap Invites</a></li>
<li><a href="http://wiki.developers.facebook.com/index.php/Dashboard.addNews">Dashboard.addNews</a></li>
<li><a href="http://wiki.developers.facebook.com/index.php/Dashboard.multiAddNews">Dashboard.multiAddNews</a></li>
<li><a href="http://wiki.developers.facebook.com/index.php/Multi_friend_selector">Multi friend selector</a></li>
<li><a href="http://wiki.developers.facebook.com/index.php/Communication_Channels_Best_Practices">Communication Channels Best Practices</a></li>
<li><a href="http://wiki.developers.facebook.com/index.php/Developer_Roadmap">Developer Roadmap</a></li>
<li><a href="http://wiki.developers.facebook.com/index.php/XFBML">XFBML</a></li>
<li><a href="http://wiki.developers.facebook.com/index.php/Fb:serverFbml">Fb:serverFbml</a></li>
<li><a href="http://wiki.developers.facebook.com/index.php/Fb:request-form">Fb:request-form</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.yoz.sk/2010/03/inviting-friends-into-facebook-application/feed</wfw:commentRss>
		</item>
		<item>
		<title>HP&#8217;s slate running Flash Player and AIR</title>
		<link>http://www.flashrealtime.com/hp-slate-flash-air/</link>
		<comments>http://www.flashrealtime.com/hp-slate-flash-air/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 09:10:40 +0000</pubDate>
		<dc:creator>Tom Krcha</dc:creator>
		
		<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://www.flashrealtime.com/?p=1410</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[
]]></content:encoded>
			<wfw:commentRss>http://www.flashrealtime.com/hp-slate-flash-air/feed</wfw:commentRss>
		</item>
		<item>
		<title>Flex 4: skinování aplikací</title>
		<link>http://www.viktorbezdek.cz/2010/03/flex-4-skinovani-aplikaci/</link>
		<comments>http://www.viktorbezdek.cz/2010/03/flex-4-skinovani-aplikaci/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 08:59:51 +0000</pubDate>
		<dc:creator>Viktor Bezděk</dc:creator>
		
		<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">tag:www.viktorbezdek.cz://6f844236110296dc7362b366122e093d</guid>
		<description><![CDATA[Na zdrojáku dnes vyšel můj článek o skinování aplikací ve Flexu 4. Zajímá-li vás tato problematika, můžete si jej přečíst. ]]></description>
			<content:encoded><![CDATA[<p>Na zdrojáku dnes vyšel můj článek o skinování aplikací ve Flexu 4. Zajímá-li vás tato problematika, můžete si jej přečíst.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.viktorbezdek.cz/2010/03/flex-4-skinovani-aplikaci/feed</wfw:commentRss>
		</item>
		<item>
		<title>Fixing Z-sorting in Papervision 3D (update)</title>
		<link>http://blog.yoz.sk/2010/03/fixing-z-sorting-in-papervision-3d/</link>
		<comments>http://blog.yoz.sk/2010/03/fixing-z-sorting-in-papervision-3d/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 15:23:12 +0000</pubDate>
		<dc:creator>josefchutka</dc:creator>
		
		<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://blog.yoz.sk/?p=1139</guid>
		<description><![CDATA[
It may be very tricky thing to get papervision 3d scene rendered correctly event for the simpliest objects. In my case, I have created simple 3d scene with few primitive objects (8 cubes). Cubes are positioned close to each other to create shape of bigger cube + some small space between. Cubes are added into [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.yoz.sk/wp-content/uploads/cube3-200x200.png" alt="" title="cube3" width="200" height="200" class="alignleft size-medium wp-image-1145" /></p>
<p>It may be very tricky thing to get papervision 3d scene rendered correctly event for the simpliest objects. In my case, I have created simple 3d scene with few primitive objects (8 cubes). Cubes are positioned close to each other to create shape of bigger cube + some small space between. Cubes are added into wrapping DisplayObject3D, later wrapper is added to scene in order to make it easy to rotate cubes as a group. Camera targets the center of the scene. In the demo, there are 3 sliders to rotate wrapping object in each x, y, z axis + two buttons that rotates wrapper in the problematic possition (based on z-sorting fix approach). Finally I managet it to work, you can follow my approaches below. Notice the changes are not cummulative, each approach comes from original Application.mxml. All of the ideas collected online from blogs, forums etc.</p>
<p><span id="more-1139"></span></p>
<p >Application.mxml code</p>
<pre class="brush: xml;">&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;mx:Application xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot; layout=&quot;absolute&quot;
    applicationComplete=&quot;init()&quot; enterFrame=&quot;loop()&quot;
    frameRate=&quot;40&quot;&gt;
&lt;mx:Script&gt;
&lt;![CDATA[
    import org.papervision3d.objects.DisplayObject3D;
    import org.papervision3d.objects.primitives.Cube;
    import org.papervision3d.materials.ColorMaterial;
    import org.papervision3d.materials.utils.MaterialsList;
    import org.papervision3d.render.BasicRenderEngine;
    import org.papervision3d.cameras.Camera3D;
    import org.papervision3d.scenes.Scene3D;
    import org.papervision3d.view.Viewport3D;

    private var viewport:Viewport3D;
    private var scene:Scene3D = new Scene3D();
    private var camera:Camera3D = new Camera3D(60, 10, 1000);
    private var renderer:BasicRenderEngine= new BasicRenderEngine();
    private var wrapper:DisplayObject3D = new DisplayObject3D();

    private var black:ColorMaterial = new ColorMaterial(0x000000, 1);
    private var white:ColorMaterial = new ColorMaterial(0xffffff, 1);

    private function init():void
    {
        viewport = new Viewport3D(width, height, false);
        container.addChild(viewport);

        black.opposite = true;
        white.opposite = true;

        var materialList:MaterialsList = new MaterialsList();
        materialList.addMaterial(black, &quot;top&quot;);
        materialList.addMaterial(black, &quot;bottom&quot;);
        materialList.addMaterial(white, &quot;left&quot;);
        materialList.addMaterial(white, &quot;right&quot;);
        materialList.addMaterial(black, &quot;front&quot;);
        materialList.addMaterial(black, &quot;back&quot;);

        var cube:Cube;
        for(var x:uint = 0; x &lt; 2; x++)
        for(var y:uint = 0; y &lt; 2; y++)
        for(var z:uint = 0; z &lt; 2; z++)
        {
            cube = new Cube(materialList, 100, 100, 100, 1, 1, 1, Cube.ALL);
            cube.x = x * 100 * 1.05;
            cube.y = y * 100 * 1.05;
            cube.z = z * 100 * 1.05;
            wrapper.addChild(cube);
        }

        scene.addChild(wrapper);

        camera.lookAt(cube);
        camera.zoom = 100;
    }

    private function loop():void
    {
        if(!viewport)
            return;

        wrapper.rotationX = rx.value;
        wrapper.rotationY = ry.value;
        wrapper.rotationZ = rz.value;

        renderer.renderScene(scene, camera, viewport);
    }

    private function position1():void
    {
        rx.value = 216;
        ry.value = 101;
        rz.value = 0;
    }

    private function position2():void
    {
        rx.value = 333;
        ry.value = 19;
        rz.value = 360;
    }
]]&gt;
&lt;/mx:Script&gt;
&lt;mx:UIComponent id=&quot;container&quot; width=&quot;100%&quot; height=&quot;100%&quot; /&gt;
&lt;mx:HBox&gt;
    &lt;mx:VSlider id=&quot;rx&quot; value=&quot;216&quot; minimum=&quot;0&quot; maximum=&quot;360&quot; liveDragging=&quot;true&quot;/&gt;
    &lt;mx:VSlider id=&quot;ry&quot; value=&quot;101&quot; minimum=&quot;0&quot; maximum=&quot;360&quot; liveDragging=&quot;true&quot;/&gt;
    &lt;mx:VSlider id=&quot;rz&quot; value=&quot;0&quot; minimum=&quot;0&quot; maximum=&quot;360&quot; liveDragging=&quot;true&quot;/&gt;
    &lt;mx:VBox&gt;
        &lt;mx:Button label=&quot;position 1&quot; click=&quot;position1()&quot; /&gt;
        &lt;mx:Button label=&quot;position 2&quot; click=&quot;position2()&quot; /&gt;
    &lt;/mx:VBox&gt;
&lt;/mx:HBox&gt;
&lt;/mx:Application&gt;</pre>
<p>renders corrupted on this position:</p>
<p>
<img src="http://blog.yoz.sk/wp-content/uploads/cube1.png" alt="" title="cube1" width="400" height="400" class="alignnone size-full wp-image-1141" /></p>
<hr />
<p>&#8230; then I defined camera clipping, but no success (someone&#8217;s suggestion, but it seems <a href="http://blog.zupko.info/?p=170">clipping is to be used for different purpose</a>):</p>
<pre class="brush: as3;">camera.useClipping = true; // before line 57</pre>
<p><img src="http://blog.yoz.sk/wp-content/uploads/cube1.png" alt="" title="cube1" width="400" height="400" class="alignnone size-full wp-image-1141" /></p>
<hr />
<p>&#8230; adding quarterFaces(), some more vertices for each vertex is not gonna save the day:</p>
<pre class="brush: as3;">cube.quarterFaces(); // before line 50</pre>
<p><img src="http://blog.yoz.sk/wp-content/uploads/cube4.png" alt="" title="cube4" width="400" height="400" class="alignnone size-full wp-image-1148" /></p>
<hr />
<p>&#8230; adding ViewportLayer-s for each object fixed first problematic view, but corrupted another:</p>
<pre class="brush: as3;">import org.papervision3d.view.layer.ViewportLayer;
...
var viewportLayer:ViewportLayer; // before line 42
...
viewportLayer = viewport.getChildLayer(cube, true); // before line 51
viewportLayer.addDisplayObject3D(cube);</pre>
<p><img src="http://blog.yoz.sk/wp-content/uploads/cube2.png" alt="" title="cube2" width="400" height="400" class="alignnone size-full wp-image-1143" /></p>
<hr />
<p>&#8230; useOwnContainer should (and does) work the same as adding ViewportLayers:</p>
<pre class="brush: as3;">cube.useOwnContainer = true; // before line 50</pre>
<p><img src="http://blog.yoz.sk/wp-content/uploads/cube2.png" alt="" title="cube2" width="400" height="400" class="alignnone size-full wp-image-1143" /></p>
<hr />
<p>&#8230; finally, layering + sortMode seems to work fine, and fast <img src='http://blog.yoz.sk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<pre class="brush: as3;">import org.papervision3d.view.layer.util.ViewportLayerSortMode;
...
viewport.containerSprite.sortMode = ViewportLayerSortMode.ORIGIN_SORT; // before line 28
...
cube.useOwnContainer = true; // before line 50</pre>
<p><img src="http://blog.yoz.sk/wp-content/uploads/cube3.png" alt="" title="cube3" width="400" height="400" class="alignnone size-full wp-image-1145" /></p>
<hr />
<p>update Mar 5, 2010: &#8230; another successful attempt:</p>
<pre class="brush: as3;">cube.meshSort = DisplayObject3D.MESH_SORT_FAR; // before line 50</pre>
<p><img src="http://blog.yoz.sk/wp-content/uploads/cube3.png" alt="" title="cube3" width="400" height="400" class="alignnone size-full wp-image-1145" /></p>
<hr />
<p>&#8230; ultimate method for correct z-sorting and rendering is in using slower <a href="http://papervision3d.googlecode.com/svn/trunk/as3/trunk/docs/org/papervision3d/render/QuadrantRenderEngine.html">QuadrantRenderEngine</a> <img src='http://blog.yoz.sk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<pre class="brush: as3;">import org.papervision3d.render.QuadrantRenderEngine;
...
private var renderer:QuadrantRenderEngine //replace line 19
        = new QuadrantRenderEngine(QuadrantRenderEngine.CORRECT_Z_FILTER);</pre>
<p><img src="http://blog.yoz.sk/wp-content/uploads/cube3.png" alt="" title="cube3" width="400" height="400" class="alignnone size-full wp-image-1145" /></p>
<hr />
<p>Where to go from where:</p>
<ul>
<li><a href="http://papervision2.com/fix-z-sorting-issues-using-viewport-layers/">Fix Z-Sorting Issues Using Viewport Layers</a></li>
<li><a href="http://papervision2.com/fixing-z-sorting-issues-with-the-quadrantrenderengine/">Fix Z-Sorting issues with the QuadrantRenderEngine</a></li>
<li><a href="http://blog.zupko.info/?p=170">Papervision3D now featuring frustum clipping</a></li>
<li><a href="http://blog.zupko.info/?p=177">Using QuadTrees in Papervision3D</a></li>
<li><a href="http://forum.papervision3d.org/viewtopic.php?f=14&#038;t=1414&#038;start=0">More z-sorting problems</a></li>
<li><a href="http://n4.nabble.com/Using-layers-for-z-sorting-td781405.html#a781405">Forcing depths (forceDepth, screenDepth)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.yoz.sk/2010/03/fixing-z-sorting-in-papervision-3d/feed</wfw:commentRss>
		</item>
		<item>
		<title>E-seminar materials: P2P Programming in Flash</title>
		<link>http://www.flashrealtime.com/e-seminar-materials-p2p-programming-in-flash/</link>
		<comments>http://www.flashrealtime.com/e-seminar-materials-p2p-programming-in-flash/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 14:20:42 +0000</pubDate>
		<dc:creator>Tom Krcha</dc:creator>
		
		<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://www.flashrealtime.com/?p=1405</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[
]]></content:encoded>
			<wfw:commentRss>http://www.flashrealtime.com/e-seminar-materials-p2p-programming-in-flash/feed</wfw:commentRss>
		</item>
		<item>
		<title>Real Text-To-Speech For Your Flash Apps</title>
		<link>http://www.flashrealtime.com/real-text-to-speech-for-your-flash-apps/</link>
		<comments>http://www.flashrealtime.com/real-text-to-speech-for-your-flash-apps/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 10:08:52 +0000</pubDate>
		<dc:creator>Tom Krcha</dc:creator>
		
		<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://www.flashrealtime.com/?p=1372</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[
]]></content:encoded>
			<wfw:commentRss>http://www.flashrealtime.com/real-text-to-speech-for-your-flash-apps/feed</wfw:commentRss>
		</item>
		<item>
		<title>Comparison of Flash vs. HTML5 video CPU usage</title>
		<link>http://www.flashrealtime.com/video-cpu-utilization-flash-html5/</link>
		<comments>http://www.flashrealtime.com/video-cpu-utilization-flash-html5/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 22:07:28 +0000</pubDate>
		<dc:creator>Tom Krcha</dc:creator>
		
		<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://www.flashrealtime.com/?p=1375</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[
]]></content:encoded>
			<wfw:commentRss>http://www.flashrealtime.com/video-cpu-utilization-flash-html5/feed</wfw:commentRss>
		</item>
		<item>
		<title>Invitation to E-seminar P2P Programming in Flash Player 10.1</title>
		<link>http://www.flashrealtime.com/invitation-to-p2p-programming-in-flash-e-seminar/</link>
		<comments>http://www.flashrealtime.com/invitation-to-p2p-programming-in-flash-e-seminar/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 13:26:35 +0000</pubDate>
		<dc:creator>Tom Krcha</dc:creator>
		
		<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://www.flashrealtime.com/?p=1343</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[
]]></content:encoded>
			<wfw:commentRss>http://www.flashrealtime.com/invitation-to-p2p-programming-in-flash-e-seminar/feed</wfw:commentRss>
		</item>
		<item>
		<title>Adobe Acrobat Connect Pro Goes Mobile</title>
		<link>http://www.flashrealtime.com/adobe-connect-pro-goes-mobile/</link>
		<comments>http://www.flashrealtime.com/adobe-connect-pro-goes-mobile/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 12:21:36 +0000</pubDate>
		<dc:creator>Tom Krcha</dc:creator>
		
		<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://www.flashrealtime.com/?p=1319</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[
]]></content:encoded>
			<wfw:commentRss>http://www.flashrealtime.com/adobe-connect-pro-goes-mobile/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
