<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0" -->
<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/"
	>

<channel>
	<title>teotigraphix.blog.show()</title>
	<link>http://www.blog.teotigraphix.com</link>
	<description>Components are the building blocks of our Universe, that is why I make them!</description>
	<pubDate>Thu, 25 Jun 2009 20:40:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0</generator>
	<language>en</language>
			<item>
		<title>Flex 4 :: StyleManager.getStyleDeclaration() :: take 2</title>
		<link>http://www.blog.teotigraphix.com/2009/06/25/flex-4-stylemanagergetstyledeclaration-take-2/</link>
		<comments>http://www.blog.teotigraphix.com/2009/06/25/flex-4-stylemanagergetstyledeclaration-take-2/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 20:40:54 +0000</pubDate>
		<dc:creator>teoti.graphix</dc:creator>
		
	<category>general</category>
	<category>flex 4</category>
		<guid isPermaLink="false">http://www.blog.teotigraphix.com/2009/06/25/flex-4-stylemanagergetstyledeclaration-take-2/</guid>
		<description><![CDATA[Hi,
I need to clear the air here, what I said in my last post seems to be deprecated as of Flex 3. I dug into the auto generated classes and now see how the compiler is initializing classes.
For a type selector in a component it would be something like;



var selector:CSSSelector = new CSSSelector&#40;"com.teotigraphix.ui.control.TitleBar", null, null&#41;;
var [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I need to clear the air here, what I said in my last post seems to be deprecated as of Flex 3. I dug into the auto generated classes and now see how the compiler is initializing classes.</p>
<p>For a type selector in a component it would be something like;</p>
<div class="syntax_hilite">
<div id="actionscript-2">
<div class="actionscript">
<span style="color: #000000; font-weight: bold;">var</span> selector:CSSSelector = <span style="color: #000000; font-weight: bold;">new</span> CSSSelector<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color: #ff0000;">"com.teotigraphix.ui.control.TitleBar"</span>, <span style="color: #000000; font-weight: bold;">null</span>, <span style="color: #000000; font-weight: bold;">null</span><span style="color:#006600; font-weight:bold;">&#41;</span>;<br />
<span style="color: #000000; font-weight: bold;">var</span> style:CSSStyleDeclaration = StyleManager.<span style="color: #006600;">getStyleDeclaration</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color: #ff0000;">"com.teotigraphix.ui.control.TitleBar"</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</p>
<p><span style="color: #b1b100;">if</span> <span style="color:#006600; font-weight:bold;">&#40;</span>!style<span style="color:#006600; font-weight:bold;">&#41;</span><br />
<span style="color:#006600; font-weight:bold;">&#123;</span><br />
&nbsp; &nbsp; style = <span style="color: #000000; font-weight: bold;">new</span> CSSStyleDeclaration<span style="color:#006600; font-weight:bold;">&#40;</span>selector<span style="color:#006600; font-weight:bold;">&#41;</span>;<br />
<span style="color:#006600; font-weight:bold;">&#125;</span></p>
<p><span style="color: #b1b100;">if</span> <span style="color:#006600; font-weight:bold;">&#40;</span>style.<span style="color: #006600;">defaultFactory</span> == <span style="color: #000000; font-weight: bold;">null</span><span style="color:#006600; font-weight:bold;">&#41;</span><br />
<span style="color:#006600; font-weight:bold;">&#123;</span><br />
&nbsp; &nbsp; style.<span style="color: #006600;">defaultFactory</span> = <span style="color: #000000; font-weight: bold;">function</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>:<span style="color: #0066CC;">void</span><br />
&nbsp; &nbsp; <span style="color:#006600; font-weight:bold;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">this</span>.<span style="color: #006600;">skinClass</span> = com.<span style="color: #006600;">teotigraphix</span>.<span style="color: #006600;">ui</span>.<span style="color: #006600;">skin</span>.<span style="color: #006600;">tk</span>.<span style="color: #006600;">TitleBarSkin</span>;<br />
&nbsp; &nbsp; <span style="color:#006600; font-weight:bold;">&#125;</span><br />
<span style="color:#006600; font-weight:bold;">&#125;</span><br />
&nbsp;</div>
</div>
</div>
<p>The key difference from Flex 3 to Flex 4 is the CSSStyleDeclaration can take a string OR a CSSSelector instance. If the argument to the CSSStyleDeclaration is a CSSSelector instance, the CSSStyleDeclaration will automatically register the new css declaration to the StyleManager.</p>
<p>The trick here is that the CSSSelector overrides it's toString() method to return the specific selector name based on it's ancestor and conditions. The style manager still uses the string selectorString in the set declaration method, but if an instance of CSSSelector is passed instead of a string selector name, the toString() method is called on the CSSSelector.</p>
<p>That sounded like a tongue twister. <img src='http://www.blog.teotigraphix.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Mike
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.blog.teotigraphix.com/2009/06/25/flex-4-stylemanagergetstyledeclaration-take-2/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Flex 4 :: StyleManager.getStyleDeclaration()</title>
		<link>http://www.blog.teotigraphix.com/2009/06/25/flex-4-stylemanagergetstyledeclaration/</link>
		<comments>http://www.blog.teotigraphix.com/2009/06/25/flex-4-stylemanagergetstyledeclaration/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 19:15:54 +0000</pubDate>
		<dc:creator>teoti.graphix</dc:creator>
		
	<category>flex 4</category>
		<guid isPermaLink="false">http://www.blog.teotigraphix.com/2009/06/25/flex-4-stylemanagergetstyledeclaration/</guid>
		<description><![CDATA[Hi,
I'm in the process of creating new implementations of some Flex 3 classes in the Spark/Flex 4 framework.
Since Gumbo has been made available back in.. whenever, I kind of glossed over something with css I didn't quite understand.
I understand the new css namespaces but wasn't exactly sure how to create a TypeSelector in actionscript. Where [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I'm in the process of creating new implementations of some Flex 3 classes in the Spark/Flex 4 framework.</p>
<p>Since Gumbo has been made available back in.. whenever, I kind of glossed over something with css I didn't quite understand.</p>
<p>I understand the new css namespaces but wasn't exactly sure how to create a TypeSelector in actionscript. Where code like;</p>
<div class="syntax_hilite">
<div id="actionscript-5">
<div class="actionscript"><span style="color: #000000; font-weight: bold;">var</span> selector:CSSStyleDeclaration =<br />
&nbsp; &nbsp; StyleManager.<span style="color: #006600;">getStyleDeclaration</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color: #ff0000;">"TitleBar"</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</p>
<p><span style="color: #b1b100;">if</span> <span style="color:#006600; font-weight:bold;">&#40;</span>!<span style="color:#006600; font-weight:bold;">&#40;</span>selector is CSSStyleDeclaration<span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#41;</span><br />
<span style="color:#006600; font-weight:bold;">&#123;</span><br />
&nbsp; &nbsp; selector = <span style="color: #000000; font-weight: bold;">new</span> CSSStyleDeclaration<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>;<br />
&nbsp; &nbsp; StyleManager.<span style="color: #006600;">setStyleDeclaration</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color: #ff0000;">"TitleBar"</span>, selector, <span style="color: #000000; font-weight: bold;">false</span><span style="color:#006600; font-weight:bold;">&#41;</span>;<br />
<span style="color:#006600; font-weight:bold;">&#125;</span></div>
</div>
</div>
<p>would create a new TypeSelector for the <code>TitleBar</code> class. With the new @namespace feature of Flex 4, this has changed. You now need to write the fully qualified class name to register a TypeSelector.</p>
<div class="syntax_hilite">
<div id="actionscript-6">
<div class="actionscript"><span style="color: #000000; font-weight: bold;">var</span> selector:CSSStyleDeclaration =<br />
&nbsp; &nbsp; StyleManager.<span style="color: #006600;">getStyleDeclaration</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color: #ff0000;">"com.teotigraphix.ui.control.TitleBar"</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</p>
<p><span style="color: #b1b100;">if</span> <span style="color:#006600; font-weight:bold;">&#40;</span>!<span style="color:#006600; font-weight:bold;">&#40;</span>selector is CSSStyleDeclaration<span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#41;</span><br />
<span style="color:#006600; font-weight:bold;">&#123;</span><br />
&nbsp; &nbsp; selector = <span style="color: #000000; font-weight: bold;">new</span> CSSStyleDeclaration<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>;<br />
&nbsp; &nbsp; StyleManager.<span style="color: #006600;">setStyleDeclaration</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color: #ff0000;">"com.teotigraphix.ui.control.TitleBar"</span>, selector, <span style="color: #000000; font-weight: bold;">false</span><span style="color:#006600; font-weight:bold;">&#41;</span>;<br />
<span style="color:#006600; font-weight:bold;">&#125;</span></div>
</div>
</div>
<p>Hope that helps someone porting code from Flex 3 to Flex 4/Spark.</p>
<p>Mike
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.blog.teotigraphix.com/2009/06/25/flex-4-stylemanagergetstyledeclaration/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Flex :: ToolTipManager hideEffect</title>
		<link>http://www.blog.teotigraphix.com/2009/06/24/flex-tooltipmanager-hideeffect/</link>
		<comments>http://www.blog.teotigraphix.com/2009/06/24/flex-tooltipmanager-hideeffect/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 17:31:03 +0000</pubDate>
		<dc:creator>teoti.graphix</dc:creator>
		
	<category>general</category>
	<category>flex 4</category>
		<guid isPermaLink="false">http://www.blog.teotigraphix.com/2009/06/24/flex-tooltipmanager-hideeffect/</guid>
		<description><![CDATA[Hi,
Just a passing thought but, I was working on a custom tooltip component today and was researching the hideEffect of the ToolTipManager. I spent 1 whole hour trying to figure out why the hideEffect wasn't working that I registered with the manager.
Low and behold, running through the debugger I realized that when you mouse off [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>Just a passing thought but, I was working on a custom tooltip component today and was researching the <code>hideEffect</code> of the <code>ToolTipManager</code>. I spent 1 whole hour trying to figure out why the hideEffect wasn't working that I registered with the manager.</p>
<p>Low and behold, running through the debugger I realized that when you mouse off the currentTarget of the manager, the hide instantly method runs. The moral of the story is, to get the hideEffect to work that is assigned to the manager, the effect is dependent on the <code>hideDelay</code> of the manager!</p>
<p>Does anybody think there should be a feature that allows the hide effect to run conditionally on a moseOut event of the target? I think it would be nice. </p>
<p>On a side note, re-implementing a new tooltip manager might work, mx_internal overrides though. The problem with this is <code>hideImmediately()</code> is private!</p>
<p>Mike
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.blog.teotigraphix.com/2009/06/24/flex-tooltipmanager-hideeffect/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Flex 4 :: Beta 1 here : Flash Builder</title>
		<link>http://www.blog.teotigraphix.com/2009/06/01/flex-4-beta-1-here-flash-builder/</link>
		<comments>http://www.blog.teotigraphix.com/2009/06/01/flex-4-beta-1-here-flash-builder/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 22:47:06 +0000</pubDate>
		<dc:creator>teoti.graphix</dc:creator>
		
	<category>general</category>
	<category>flex 4</category>
		<guid isPermaLink="false">http://www.blog.teotigraphix.com/2009/06/01/flex-4-beta-1-here-flash-builder/</guid>
		<description><![CDATA[Well,
I think the blogging will now pick up since the vision is starting to become reality; Flex 4 Beta 1.
The last year has been quite a trek for my development. There are some interesting frameworks and components in the mix for this next version of Flex. A couple of open source projects as well from [...]]]></description>
			<content:encoded><![CDATA[<p>Well,</p>
<p>I think the blogging will now pick up since the vision is starting to become reality; <strong>Flex 4 Beta 1</strong>.</p>
<p>The last year has been quite a trek for my development. There are some interesting frameworks and components in the mix for this next version of Flex. A couple of open source projects as well from Teoti Graphix.</p>
<p>I have a reminiscent feeling of trekking through the Flex 2 alpha and betas and feeling a glimpse of something really kewl. From a component developers perspective that has been around the block,<strong> Flex 4 Spark is just plain awesome</strong>. The View has finally been decoupled from the Model and can breath a little better. As far as the Model and Controller, that has yet to b seen, I have an answer for that though.</p>
<p><em>Flash Builder</em>, for someone out of the loop a bit, I just had to laugh, tip my hat and say <strong>Flex Builder</strong> thanks for the fish.</p>
<p>For the sake of google and <strong>flex 4 namespaces</strong>; I am cringing at the pain new developers are experiencing when trying to get flex 4 namespaces working. For the google record and flex 4 namespace, here is my contribution to the monster search engine.</p>
<p><code type="xml"><br />
xmlns:fx="http://ns.adobe.com/mxml/2009"<br />
xmlns:mx="library://ns.adobe.com/flex/halo"<br />
xmlns:s="library://ns.adobe.com/flex/spark"<br />
</code></p>
<p><strong>fx</strong> : Holds all tags such as what was mx:Style, mx:Script ect. so... fx:Style, fx:Script</p>
<p><strong>mx</strong> : Holds all Halo components IE mx:Tree, mx:Box, mx:Button (can you say skin style with ProgrammaticSkin) <img src='http://www.blog.teotigraphix.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>s</strong> : Holds all of the new Spark architecture, s:Button, now uses skinClass.</p>
<p>Much more to come, now that the animal has been tamed, we can start to dissect it.</p>
<p>Mike
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.blog.teotigraphix.com/2009/06/01/flex-4-beta-1-here-flash-builder/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>TEOComponents get a Flex 3.2 update</title>
		<link>http://www.blog.teotigraphix.com/2009/03/16/teocomponents-get-a-flex-32-update/</link>
		<comments>http://www.blog.teotigraphix.com/2009/03/16/teocomponents-get-a-flex-32-update/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 10:11:44 +0000</pubDate>
		<dc:creator>teoti.graphix</dc:creator>
		
	<category>general</category>
		<guid isPermaLink="false">http://www.blog.teotigraphix.com/2009/03/16/teocomponents-get-a-flex-32-update/</guid>
		<description><![CDATA[Teoti Graphix, LLC has released it's Flex 3.2 maintenance upgrade, check our components out if you haven't.
Teoti Graphix, LLC
We have been selling Flex UI components since 2006 and have had 100's of happy customers that enjoy professional documentation and low to zero support issues. 
What's up with Teoti
We have held off this last year and [...]]]></description>
			<content:encoded><![CDATA[<p>Teoti Graphix, LLC has released it's Flex 3.2 maintenance upgrade, check our components out if you haven't.</p>
<p><a href="http://www.teotigraphix.com">Teoti Graphix, LLC</a></p>
<p>We have been selling Flex UI components since 2006 and have had 100's of happy customers that enjoy professional documentation and low to zero support issues. </p>
<p><strong>What's up with Teoti</strong></p>
<p>We have held off this last year and a half with new releases, getting ready for Flex 4's major view change. This is about the most important change to the framework in relation to component developers yet.</p>
<p><strong>CSB Flex 4 Framework</strong></p>
<p>In my last article I started to explain our CSB (Component, Skin, Behavior) framework. This has been implemented in Flex 4 and you will be hearing a lot more about this in the future.</p>
<p>Mike
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.blog.teotigraphix.com/2009/03/16/teocomponents-get-a-flex-32-update/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>The Component :: Part 1 :: CSB</title>
		<link>http://www.blog.teotigraphix.com/2008/12/18/the-component-part-1-csb/</link>
		<comments>http://www.blog.teotigraphix.com/2008/12/18/the-component-part-1-csb/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 12:36:33 +0000</pubDate>
		<dc:creator>teoti.graphix</dc:creator>
		
	<category>general</category>
		<guid isPermaLink="false">http://www.blog.teotigraphix.com/2008/12/18/the-component-part-1-csb/</guid>
		<description><![CDATA["We are not trying to apply MVC to component architecture since MVC was patterned after the Application domain. We are creating a pattern or more accurately, porting a pattern from the Application domain to the Component domain."
Component (Model) &#124; Skin (View) &#124; Behavior (Controller)
Ever tried comparing an apple to an orange? They're both fruit right? [...]]]></description>
			<content:encoded><![CDATA[<p>"We are not trying to apply <strong>MVC</strong> to component architecture since <strong>MVC</strong> was patterned after the Application domain. We are creating a pattern or more accurately, porting a pattern from the Application domain to the Component domain."</p>
<p><strong>Component (Model) | Skin (View) | Behavior (Controller)</strong></p>
<p>Ever tried comparing an apple to an orange? They're both fruit right? The apple and orange taste sweet and are colorful. If you try to describe both objects using the word 'fruit', you will not capture the essence of each.</p>
<p>We have the same thing happening with two other words of the same class, application and component. Same type of relationship right, 'Is A' fruit? No, these two objects are not in the same generalization, Component is an aggregation of Application. </p>
<ul>
<li>An Application is a domain to solve a larger network of problems, created by client's needs. </li>
<li>A Component is a domain to solve a larger network of problems, created by the application's needs.</li>
</ul>
<p>To many times we try to apply solutions to things that don't apply to each other and in the end wonder why things don't feel right or don't even work. I'm specifically talking about the MVC (Model View Controller) design pattern in relationship to the Component.</p>
<p>Language, the articulation of thought and path to understanding the 'object'. I have many years of experience with component development and books don't teach what experience brings. </p>
<p>There are some that also would say breaking rules confuses people, I think it's the rules that confuse people.</p>
<p>I have struggled with language for quite some time. When you try to explain things that are new, you either sound arrogant or full of yourself and someone tries to knock you down a peg.</p>
<p>I'm not trying to coin anything or declare an invention. I want the language and implementation of component development in Flex to be fun. So the first change to the MVC is the M (Model).</p>
<p>The M becomes C for Component. I have spent weeks agonizing about this decision since in ActionScript, the 'component' is tied to the display list, thus part of the View. But this is not really the case.</p>
<p>The display list is in the application's domain, not the components. Remember about what I said above, domain specifics. In our new component architecture coming up (inspired greatly by sections of <strong>OpenFlux </strong>and <strong>Flex 4</strong>) is going to treat components like hierarchal data structures. This data structure parent or container IS the display list, the API and data are the Component instances.</p>
<p>Here are some one liners;</p>
<ul>
<li>The Application domain contracts the Component.</li>
<li>The Component declares it's public API and public data structure.</li>
<li>The Skin observes Component through [Binding] or event handlers.</li>
<li>The Behavior/s observes Component through event handler bindings.</li>
</ul>
<p>There is a paradigm shift here where the behaviors of the once UIComponent needs to be abstracted off the Component class and into specific behavior classes. This is where the fun begins, since these behaviors can literally or figuratively be dragged onto a Component and reused or stacked.</p>
<p>I have introduced the idea of the behaviorManager that acts as an API service locater essentially delegating what is going on behaviorally within a Component. This also adds the ability to dynamically add API to component at runtime.</p>
<p>This is it for part 1, there is much more ahead since I am explaining the foundation of Teoti Graphix's new component architecture.</p>
<p>All this will fit like a glove in Flex 3 and Flex 4. Currently I have fully implemented the FxButton and FxToggleButton using this new pattern, it's awesome.</p>
<p>Ben Stucki, your awesome and thanks for a head start man.</p>
<p>Mike
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.blog.teotigraphix.com/2008/12/18/the-component-part-1-csb/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>New Place, same Face</title>
		<link>http://www.blog.teotigraphix.com/2008/12/17/new-place-same-face/</link>
		<comments>http://www.blog.teotigraphix.com/2008/12/17/new-place-same-face/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 11:52:13 +0000</pubDate>
		<dc:creator>teoti.graphix</dc:creator>
		
	<category>general</category>
		<guid isPermaLink="false">http://www.blog.teotigraphix.com/2008/12/17/new-place-same-face/</guid>
		<description><![CDATA[Seems like the post back in June got put up today when actually the post was written 6 months ago. I have changed my aggregation from flex2components.com(dead now) to this final resting place at www.blog.teotigraphix.com.
2009 is going to usher in a lot of interesting new niches, flex components is one of them. An exciting new [...]]]></description>
			<content:encoded><![CDATA[<p>Seems like the post back in June got put up today when actually the post was written 6 months ago. I have changed my aggregation from flex2components.com(dead now) to this final resting place at www.blog.teotigraphix.com.</p>
<p>2009 is going to usher in a lot of interesting new niches, flex components is one of them. An exciting new feature in Flex Builder 4 is going to allow professional flex component developers FINALLY look professional and not 3rd rate citizens (more on that later). I had a nice conversation with Adobe's DRM (Digital Rights Management) group and it was a very positive conversation.</p>
<p>I have some posts coming up on why we haven't released anything new in the past year, this is an interesting read.</p>
<p>I have also compiled design pattern notes and where I see Flex component development headed.</p>
<p>Flexcoders, well somebody there, not naming names took me down a notch <img src='http://www.blog.teotigraphix.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  haha and I haven't been active on that in the last 2 months. I'll probably head over there once my rule breaking affection wears off (well this probably won't happen any time soon).</p>
<p>Campbell, it's about 12 months in the labs now, I have a head start again. <img src='http://www.blog.teotigraphix.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Later,<br />
Mike
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.blog.teotigraphix.com/2008/12/17/new-place-same-face/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Teoti Graphix, LLC is back in town</title>
		<link>http://www.blog.teotigraphix.com/2008/06/16/teoti-graphix-llc-is-back-in-town/</link>
		<comments>http://www.blog.teotigraphix.com/2008/06/16/teoti-graphix-llc-is-back-in-town/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 09:58:24 +0000</pubDate>
		<dc:creator>teoti.graphix</dc:creator>
		
	<category>general</category>
		<guid isPermaLink="false">http://www.blog.teotigraphix.com/2008/06/16/teoti-graphix-llc-is-back-in-town/</guid>
		<description><![CDATA[Hello all,
Been a while but, I have been working in the labs for quite some time (8 months to be exact), I guess just waiting for this current US presidency to END! Always like molasses in the end.
Anyway, I have written some short tutorials and other adventure notes from my past travels and will start [...]]]></description>
			<content:encoded><![CDATA[<p>Hello all,</p>
<p>Been a while but, I have been working in the labs for quite some time (8 months to be exact), I guess just waiting for this current US presidency to END! Always like molasses in the end.</p>
<p>Anyway, I have written some short tutorials and other adventure notes from my past travels and will start posting them up here soon. </p>
<p>Teoti Graphix, LLC also has a new component framework that extends Container and UIComponent that we will be releasing early fall. We will have a variety of <strong>tool kits</strong> to choose from. </p>
<p>Part of this new release will be a full transform floating canvas with move, resize, rotation, snap and grid, with drag and drop. We have had many of our customers ask about these things when they purchased the ResizeManagerFX component.</p>
<p>Another thing to note: We will be selling our source code (optional)! So for all of you who have asked me about this, coming up is your chance to see beautiful code when purchasing our components. If you think wading through the mx framework is enlightening, wait till you get your hands on our code!</p>
<p>We have also created a documentation system that can handle our new frameworks. Cross linking and tutorials.</p>
<p>So stay tuned, this time I won't get lost in development and let my blog collect dust!</p>
<p>Mike
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.blog.teotigraphix.com/2008/06/16/teoti-graphix-llc-is-back-in-town/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>minWidth and minHeight in the mx.core.Container</title>
		<link>http://www.blog.teotigraphix.com/2008/05/05/minwidth-and-minheight-in-the-mxcorecontainer/</link>
		<comments>http://www.blog.teotigraphix.com/2008/05/05/minwidth-and-minheight-in-the-mxcorecontainer/#comments</comments>
		<pubDate>Mon, 05 May 2008 17:25:31 +0000</pubDate>
		<dc:creator>teoti.graphix</dc:creator>
		
	<category>general</category>
		<guid isPermaLink="false">http://www.blog.teotigraphix.com/2008/06/16/minwidth-and-minheight-in-the-mxcorecontainer/</guid>
		<description><![CDATA[Hi,
Through the years (man, it's been years now since Flex was released), I have seen a lot of confusion about container scroll bars.
The confusion summed up;
Developers have a child container within a parent. The child container's measuredHeight exceeds the parent's viewable height. The parent container then EXPANDS itself to make room for the child's measuredHeight.
With [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>Through the years (man, it's been years now since Flex was released), I have seen a lot of confusion about container scroll bars.</p>
<p>The confusion summed up;</p>
<p>Developers have a child container within a parent. The child container's measuredHeight exceeds the parent's viewable height. The parent container then EXPANDS itself to make room for the child's measuredHeight.</p>
<p>With this condition a developer thinks, well how come the parent is expanding and not showing it's scrollbars?</p>
<p>The answer; </p>
<p>In order to increase performance of the flex framework and LayoutManager, the engineers decided that having scroll bars pop up everywhere wasn't that appealing. So they decided to honor the minimums of a container.</p>
<p>This means by setting the child container's minHeight to something below 100, essentially 0, you will now force the parent to keep it's current height and show scrollbars for the child container that has it's measuredHeight greater than it's parent's height.</p>
<p>Once you think about this for a second, you realize it is kind of intuitive. You now have control over scrollbar appearance.</p>
<p>Mike</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.blog.teotigraphix.com/2008/05/05/minwidth-and-minheight-in-the-mxcorecontainer/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Flex :: DockAreaFX :: dock and float container release</title>
		<link>http://www.blog.teotigraphix.com/2007/11/06/flex-dockareafx-dock-and-float-container-release/</link>
		<comments>http://www.blog.teotigraphix.com/2007/11/06/flex-dockareafx-dock-and-float-container-release/#comments</comments>
		<pubDate>Tue, 06 Nov 2007 17:57:31 +0000</pubDate>
		<dc:creator>teoti.graphix</dc:creator>
		
	<category>flex2</category>
	<category>components</category>
	<category>releases</category>
		<guid isPermaLink="false">http://www.flex2components.com/f2cblog/2007/11/06/flex-dockareafx-dock-and-float-container-release/</guid>
		<description><![CDATA[Hi,
Back from the lab and we have a great component release, the DockAreaFX.
Product Page
Update, New Product
The DockAreaFX set is a new product that is well worth a look.
The DockAreaFX is a very powerful, extendable and simple to use drag and drop container set. The set consists of the DockAreaFX  that serves as the drop [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>Back from the lab and we have a great component release, the DockAreaFX.</p>
<p><a href="http://www.teotigraphix.com/components/containers/dockareafx">Product Page</a></p>
<h4>Update, <strong>New Product</strong></h4>
<p>The <code>DockAreaFX</code> set is a new product that is well worth a look.</p>
<p>The<code> DockAreaFX </code>is a very powerful, extendable and simple to use drag and drop container set. The set consists of the <code>DockAreaFX</code>  that serves as the drop container and the <code>DockPaneFX</code> that acts as the drag initiator container. Along with these two components, the <code>TitleBarFX</code> and <code>DockTaskListFX</code> are also included to serve as a jump start for more complicated drag and drop set ups.</p>
<p>We have added the ResizeDockAreaFX component that uses a Fire Works style open and close resize bar. This bar can close and open the dockarea with a click of it's toggle button or drag and resize the dock area! The bar placement can be set from top, left, right and bottom. This means the dock area can open and close from all 4 layout positions. The bar is also fully stylable with open and close transition styles. </p>
<p><img src="http://www.teotigraphix.com/assets/singles/icons/DockAreaSet.png"/></p>
<h3>Information sources</h3>
<ul>
<li><a href="http://www.teotigraphix.com/bookshelf/dockareafx" target="_blank">Online Help Book </a></li>
<li><a href="http://www.teotigraphix.com/asdoc/dockareafx/index.html" target="_blank">ASDoc Documentation </a></li>
<li><a href="http://www.teotigraphix.com/support/techforum" target="_blank">Technical Forum</a></li>
<li><a href="http://www.teotigraphix.com/forum/18" target="_blank">Ask Before You Buy</a></li>
<li><a href="http://www.teotigraphix.com/components/containers/dockareafx/explorer" target="_blank">SWF Examples </a></li>
</li>
</ul>
<h2>Main Features</h2>
<hr/><br />
<h3><a name="taskpanefx" id="taskpanefx"></a>DockAreaFX</h3>
<p><img src="http://www.teotigraphix.com/assets/singles/dockareafx/dockarea01.png"/></p>
<p>This image is taken from the <strong>ThemedDockTaskList.mxml</strong>  included in the product's example project and is also covered in the Help Books section of the web site. </p>
<h4>Important Notes:</h4>
<ul>
<li>The example uses a custom theme to create an OS look and feel. You could adjust this to any style and skin combination thinkable.</li>
<li>The <code>DockTaskListFX</code> component is used as the content holder within the <code>DockPaneFX</code> drag initiator. (The <code>DockTaskListFX</code> is a subclass of the <code>TaskListFX</code> component).</li>
<li>The task list component is specially designed to size it's parent when opening and closing (with or without a tween).</li>
<li>The task list component also uses a custom title bar that allows for a drag handle, alternate minimize button position, title and a menu popup button located on the right hand side of the title bar.</li>
<li>The <code>DockPaneFX</code> drag initiators can be placed in any container at startup or a <code>DockAreaFX</code> component.</li>
<li>The <code>DockPaneFX</code> drag initiators can be dropped on the <code>Application</code> or into a <code>DockAreaFX</code> container. These two actions constitute a dock or float operation. The <code>DockPaneFX's</code> <code>isDocked</code> property is updated just before the operation completes and the component's default action has run. </li>
<li>The <code>DockAreaFX</code> drop target containers can have layouts of <strong>absolute</strong>, <strong>vertical</strong>, <strong>horizontal</strong> and <strong>flow</strong>. Each of these layouts have specially placed drop indicators relative to it's children. The dock areas can also drag a bounding box around the full container (skinnable and stylable). </li>
<li>The <code>DockPaneFX</code> is completely resizable when in it's float state(<code>isDocked == false</code>) and when the <code>DockTaskListFX</code> is used, resizes vertically. Also note that when a <code>DockPaneFX</code> is closed (isOpen == false), it's resize is limited to left and right.</li>
<li>The <strong>Colors</strong> pane is being dropped into a vertical <code>DockAreaFX</code> component. </li>
</ul>
<p><img src="http://www.teotigraphix.com/assets/singles/dockareafx/dockarea02.png"/></p>
<p>The image above now shows the <code>DockPaneFX</code> dropped into the <code>DockAreaFX</code> component at index 1. You can see that when a pane's <code>isDocked</code> property is set to <code>false</code>, the default action is to hide the border and title bar. The dock pane also takes care of taking it out of the popUp state and then adding itself into the drop target  component. </p>
]]></content:encoded>
			<wfw:commentRSS>http://www.blog.teotigraphix.com/2007/11/06/flex-dockareafx-dock-and-float-container-release/feed/</wfw:commentRSS>
		</item>
	</channel>
</rss>
