<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>yOOrek&#039;s Flex™ Adventure</title>
	<atom:link href="http://flex.yoorek.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://flex.yoorek.com</link>
	<description>Flex your development muscles with Flex™</description>
	<lastBuildDate>Sat, 08 May 2010 17:59:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>I crossed to the other side</title>
		<link>http://flex.yoorek.com/2008/12/05/i-crossed-to-the-other-side/</link>
		<comments>http://flex.yoorek.com/2008/12/05/i-crossed-to-the-other-side/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 14:29:46 +0000</pubDate>
		<dc:creator>yOOrek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iMac]]></category>

		<guid isPermaLink="false">http://flex.yoorek.com/?p=32</guid>
		<description><![CDATA[Just a quick note to let you all know that as of today (5th December 14:40) I am officially an iMac owner. Now I&#8217;ll have to move my development environment to iMac. I&#8217;ll be doing this over the next few days. In the meantime you can follow my progress with iMac setup over at my [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick note to let you all know that as of today (5th December 14:40) I am officially an iMac owner. Now I&#8217;ll have to move my development environment to iMac. I&#8217;ll be doing this over the next few days. In the meantime you can follow my progress with iMac setup over at my new blog <a href="http://www.yoorek.com/imac/">www.yoorek.com/imac</a><br />
—<br />
Without wax,<br />
yOOrek</p>
]]></content:encoded>
			<wfw:commentRss>http://flex.yoorek.com/2008/12/05/i-crossed-to-the-other-side/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another success &#8211; Problem with using embedded font fixed</title>
		<link>http://flex.yoorek.com/2008/11/25/another-success-problem-with-using-embedded-font-fixed/</link>
		<comments>http://flex.yoorek.com/2008/11/25/another-success-problem-with-using-embedded-font-fixed/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 19:40:48 +0000</pubDate>
		<dc:creator>yOOrek</dc:creator>
				<category><![CDATA[Flex SDK]]></category>
		<category><![CDATA[Flex2]]></category>
		<category><![CDATA[Flex3]]></category>
		<category><![CDATA[compiler issues]]></category>
		<category><![CDATA[moving to Flex 3]]></category>
		<category><![CDATA[problems]]></category>

		<guid isPermaLink="false">http://flex.yoorek.com/?p=30</guid>
		<description><![CDATA[As reported in this post, I was having problems with using embedded font in the &#60;mx:Linkbar&#62; object. Have a look at the code below to see what I had to change to get it to work (changes are in bold). Here is the snippet for font embedding from as file - [Bindable] [Embed(source='include/fonts/Speedline.ttf', fontName='GalleryFont', fontStyle='normal', [...]]]></description>
			<content:encoded><![CDATA[<p>As reported in <a href="http://flex.yoorek.com/2008/11/25/success-i-managed-to-recompile-the-galleries/">this post</a>, I was having problems with using embedded font in the &lt;mx:Linkbar&gt; object. Have a look at the code below to see what I had to change to get it to work (changes are in bold).</p>
<p style="text-align: justify;">Here is the snippet for font embedding from as file -</p>
<blockquote>
<pre style="text-align: justify;">[Bindable]
[Embed(source='include/fonts/Speedline.ttf',
       fontName='GalleryFont',
       fontStyle='normal',
       fontWeight='normal',
       mimeType='application/x-font')]
// You do not use this variable directly. It exists so that
// the compiler will link in the font.
public var embeddedFont:Class;</pre>
</blockquote>
<p>Here is the snippet of the style sheet -</p>
<blockquote>
<pre>.headerLinkBar {
    fontFamily:         GalleryFont;
    fontSize:           18;
    fontWeight:         normal;
    fontStyle:          normal;
    fontThickness:      0;

    colour:             #808080;
    textRollOverColor:  #FFFFFF;
    rollOverColor:      #262626;
    selectionColor:     #262626;
    separatorColor:     #FFFFFF;
}

<strong>.headerLinkBarButton {
	fontFamily: 	GalleryFont;
	fontWeight:	normal;
	fontStyle:	normal;
}</strong></pre>
</blockquote>
<p>And here is the snippet from the MXML file -</p>
<blockquote>
<pre style="text-align: left;">&lt;mx:LinkBar id="headerLinkBarThumbsView"
            styleName="headerLinkBar"
            <strong>linkButtonStyleName="headerLinkBarButton"</strong>&gt;
    &lt;mx:dataProvider&gt;
        &lt;mx:Array&gt;
            &lt;mx:String&gt;Arrange&lt;/mx:String&gt;
            &lt;mx:String&gt;Stack&lt;/mx:String&gt;
            &lt;mx:String&gt;Randomise&lt;/mx:String&gt;
            &lt;mx:String&gt;Back&lt;/mx:String&gt;
        &lt;/mx:Array&gt;
    &lt;/mx:dataProvider&gt;
&lt;/mx:LinkBar&gt;</pre>
</blockquote>
<p style="text-align: justify;">It looks like specifying the style in &#8216;styleName&#8217; attribute of &lt;mx:Linkbar&gt; element is not enough in Flex 3.2 (it used to work in Flex 2). Specifying the style for the link bar button in &#8216;linkButtonStyleName&#8217; does the trick. Hopefully someone will find this useful.<br />
—<br />
Without wax,<br />
yOOrek</p>
]]></content:encoded>
			<wfw:commentRss>http://flex.yoorek.com/2008/11/25/another-success-problem-with-using-embedded-font-fixed/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Success &#8211; I managed to recompile the galleries</title>
		<link>http://flex.yoorek.com/2008/11/25/success-i-managed-to-recompile-the-galleries/</link>
		<comments>http://flex.yoorek.com/2008/11/25/success-i-managed-to-recompile-the-galleries/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 01:35:51 +0000</pubDate>
		<dc:creator>yOOrek</dc:creator>
				<category><![CDATA[Flex SDK]]></category>
		<category><![CDATA[Flex2]]></category>
		<category><![CDATA[Flex3]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[embedding assets]]></category>
		<category><![CDATA[Flex 3 problems]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[Linkbar]]></category>

		<guid isPermaLink="false">http://flex.yoorek.com/?p=25</guid>
		<description><![CDATA[Success, I managed to recompile the galleries using Flex 3.2 SDK. See them here and here. The only thing that I still have problems with is embedded fonts in &#60;mx:Linkbar&#62;. Embedded fonts work quite nicely in other elements, but not in &#60;mx:Linkbar&#62;. Here is the snippet for font embedding from as file - [Bindable] [Embed(source='include/fonts/Speedline.ttf', [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Success, I managed to recompile the galleries using Flex 3.2 SDK. See them <a href="http://flex.yoorek.com/samples/lbGallery/prototype1/" target="_blank">here</a> and <a href="http://flex.yoorek.com/samples/lbGallery/prototype2/" target="_blank">here</a>. The only thing that I still have problems with is embedded fonts in <em><strong>&lt;mx:Linkbar&gt;</strong></em>. Embedded fonts work quite nicely in other elements, but not in <em><strong>&lt;mx:Linkbar&gt;</strong></em>.</p>
<p style="text-align: justify;">Here is the snippet for font embedding from as file -</p>
<blockquote>
<pre style="text-align: justify;">[Bindable]
[Embed(source='include/fonts/Speedline.ttf',
       fontName='GalleryFont',
       fontStyle='normal',
       fontWeight='normal',
       mimeType='application/x-font')]
// You do not use this variable directly. It exists so that
// the compiler will link in the font.
public var embeddedFont:Class;</pre>
</blockquote>
<p>Here is the snippet of the stylesheet -</p>
<blockquote>
<pre>.headerLinkBar {
    fontFamily:         GalleryFont;
    fontSize:           18;
    fontWeight:         normal;
    fontStyle:          normal;
    fontThickness:      0;

    colour:             #808080;
    textRollOverColor:  #FFFFFF;
    rollOverColor:      #262626;
    selectionColor:     #262626;
    separatorColor:     #FFFFFF;
}</pre>
</blockquote>
<p>And here is the snippet from the MXML file -</p>
<blockquote>
<pre style="text-align: left;">&lt;mx:LinkBar id="headerLinkBarThumbsView"
            styleName="headerLinkBar"&gt;
    &lt;mx:dataProvider&gt;
        &lt;mx:Array&gt;
            &lt;mx:String&gt;Arrange&lt;/mx:String&gt;
            &lt;mx:String&gt;Stack&lt;/mx:String&gt;
            &lt;mx:String&gt;Randomise&lt;/mx:String&gt;
            &lt;mx:String&gt;Back&lt;/mx:String&gt;
        &lt;/mx:Array&gt;
    &lt;/mx:dataProvider&gt;
&lt;/mx:LinkBar&gt;</pre>
</blockquote>
<p style="text-align: justify;">I think I&#8217;m coding everything correctly. It worked without a problem in Flex 2. You can see the same font being used on the slide/thumbnail. Perhaps there is a change in behavior in Flex 3. Sooner or later I will get to the bottom of this. In the meantime I have to put up with the default font.<br />
—<br />
Without wax,<br />
yOOrek</p>
]]></content:encoded>
			<wfw:commentRss>http://flex.yoorek.com/2008/11/25/success-i-managed-to-recompile-the-galleries/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Day Zero</title>
		<link>http://flex.yoorek.com/2008/11/20/day-zero/</link>
		<comments>http://flex.yoorek.com/2008/11/20/day-zero/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 20:42:03 +0000</pubDate>
		<dc:creator>yOOrek</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Flex SDK]]></category>
		<category><![CDATA[Action Script]]></category>
		<category><![CDATA[ASDT]]></category>
		<category><![CDATA[MXML]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://flex.yoorek.com/?p=11</guid>
		<description><![CDATA[Well, I&#8217;m off to download and install Eclipse IDE from eclipse.org. This will be my development environment. Then I&#8217;ll get myself the Flex™ 3 SDK from adobe.com. After that is installed I will go to www.asdt.org to install Action Script Development Tools. AXDT is a set of plug-ins for the Eclipse Platform that enable you [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Well, I&#8217;m off to download and install Eclipse IDE from <a href="http://eclipse.org">eclipse.org</a>. This will be my development environment. Then I&#8217;ll get myself the Flex™ 3 SDK from <a href="http://adobe.com/flex">adobe.com</a>. After that is installed I will go to <a href="http://www.asdt.org">www.asdt.org</a> to install Action Script Development Tools. AXDT is a set of plug-ins for the <a class="ext-link" href="http://eclipse.org/"><span class="icon">Eclipse Platform</span></a> that enable you to write ActionScript3 code in an integrated environment. AXDT is based on <a class="ext-link" href="http://www.eclipse.org/imp/"><span class="icon">Eclipse Imp</span></a> and utilizes the <a class="ext-link" href="http://opensource.adobe.com/wiki/display/flexsdk/Flex+SDK"><span class="icon">opensource FlexSDK</span></a>.</p>
<p style="text-align: justify;">Once that&#8217;s done I&#8217;ll post the results.<br />
—<br />
Without wax,<br />
yOOrek</p>
<p style="text-align: justify;">PS<br />
It is almost three in the morning, so far so good. I sucessfully compiled a sample AS source as well as MXML source.</p>
]]></content:encoded>
			<wfw:commentRss>http://flex.yoorek.com/2008/11/20/day-zero/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Diaries of my Flex&#8482; Adventure</title>
		<link>http://flex.yoorek.com/2008/11/20/hello-world/</link>
		<comments>http://flex.yoorek.com/2008/11/20/hello-world/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 17:46:27 +0000</pubDate>
		<dc:creator>yOOrek</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Flex SDK]]></category>
		<category><![CDATA[Flex2]]></category>
		<category><![CDATA[Flex3]]></category>
		<category><![CDATA[Lightroom]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Lightroom gallery]]></category>
		<category><![CDATA[Lightroom web gallery]]></category>
		<category><![CDATA[photo gallery]]></category>
		<category><![CDATA[web module]]></category>

		<guid isPermaLink="false">http://flex.yoorek.com/?p=1</guid>
		<description><![CDATA[I already have some experience (like almost a year), with Flex™ 2 and AS2. I gained it while writing a Lightroom® web gallery. To cut a long story short, everything was fine until I wanted to see the results of my work inside LR. No va monsieur le developer! Since the gallery looked fantastic, at [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I already have some experience (like almost a year), with Flex™ 2 and AS2. I gained it while writing a Lightroom® web gallery. To cut a long story short, everything was fine until I wanted to see the results of my work inside LR. No va monsieur le developer! Since the gallery looked fantastic, at least to my eyes, I decided to spend some more time on it.</p>
<p style="text-align: justify;">You are welcome to check the prototype of the gallery <a href="http://flex.yoorek.com/samples/lbGallery/prototype1/" target="_blank">here</a> and <a href="http://flex.yoorek.com/samples/lbGallery/prototype2/" target="_blank">here</a>. The difference between these links is  that they use different configuration file. Normally you should be able to double click on the slide to view a full size image. This does not work however. I did something in the code and forgot to undo it.</p>
<div id="attachment_5" class="wp-caption aligncenter" style="width: 394px"><a href="http://flex.yoorek.com/samples/lbGallery/prototype2/"><img class="size-full wp-image-5" title="flex-gallery-screen-shot" src="http://flex.yoorek.com/wp-content/uploads/2008/11/flex-gallery-screen-shot.png" alt="My Flex™ Photo Gallery" width="384" height="259" /></a><p class="wp-caption-text">My Flex™ Photo Gallery</p></div>
<p style="text-align: justify;">Not that I expect anything to change now, but I decided to have another go at it using free Flex™ 3 SDK, Eclipse and few other tools that I will list in the next post. This blog will document my efforts in  a hope that it my just help someone, in a not so distant future, to get started in RIA.</p>
<p>So, until the next post,<br />
yOOrek</p>
]]></content:encoded>
			<wfw:commentRss>http://flex.yoorek.com/2008/11/20/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

