<?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>Dobeweb</title>
	<atom:link href="http://dobeweb.com/feed" rel="self" type="application/rss+xml" />
	<link>http://dobeweb.com</link>
	<description>For flex,java,Ajax and Internet Resource</description>
	<pubDate>Mon, 04 Aug 2008 15:57:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Playing a video in a pop up window in Flex</title>
		<link>http://dobeweb.com/2008/playing-a-video-in-a-pop-up-window-in-flex.html</link>
		<comments>http://dobeweb.com/2008/playing-a-video-in-a-pop-up-window-in-flex.html#comments</comments>
		<pubDate>Mon, 04 Aug 2008 15:57:16 +0000</pubDate>
		<dc:creator>Flex</dc:creator>
		
		<category><![CDATA[Flex]]></category>

		<category><![CDATA[Flex Examples]]></category>

		<category><![CDATA[pop up window]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://dobeweb.com/?p=176</guid>
		<description><![CDATA[The following example shows how you can use the PopUpManager class to display a VideoDisplay control in a TitleWindow container in Flex.
&#60;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&#62;
&#60;mx:Application xmlns:mx=&#8221;http://www.adobe.com/2006/mxml&#8221;
        layout=&#8221;vertical&#8221;
        verticalAlign=&#8221;top&#8221;
        backgroundColor=&#8221;white&#8221;&#62;
    &#60;mx:Script&#62;
        &#60;![CDATA[
            import mx.managers.PopUpManager;
            private function button_click(evt:MouseEvent):void {
                var popUpVideoDisplay:PopUpVideoDisplay;
                popUpVideoDisplay = new PopUpVideoDisplay();
                popUpVideoDisplay.source = "http://www.helpexamples.com/flash/video/water.flv";
                PopUpManager.addPopUp(popUpVideoDisplay, this, true);
            }
        ]]&#62;
    &#60;/mx:Script&#62;
    &#60;mx:Button id=&#8221;button&#8221;
            label=&#8221;Launch video&#8221;
            [...]]]></description>
		<wfw:commentRss>http://dobeweb.com/2008/playing-a-video-in-a-pop-up-window-in-flex.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Flexbox of Flexlib–How to re-layout the children when the width of FlowBox is set to 100%</title>
		<link>http://dobeweb.com/2008/flexbox-of-flexlib%e2%80%93how-to-re-layout-the-children-when-the-width-of-flowbox-is-set-to-100.html</link>
		<comments>http://dobeweb.com/2008/flexbox-of-flexlib%e2%80%93how-to-re-layout-the-children-when-the-width-of-flowbox-is-set-to-100.html#comments</comments>
		<pubDate>Thu, 24 Jul 2008 18:13:51 +0000</pubDate>
		<dc:creator>Flex</dc:creator>
		
		<category><![CDATA[Flex]]></category>

		<category><![CDATA[Flex Examples]]></category>

		<category><![CDATA[Flexlib]]></category>

		<category><![CDATA[FlowBox]]></category>

		<guid isPermaLink="false">http://dobeweb.com/?p=175</guid>
		<description><![CDATA[The width of FlowBox will be the sum of its children’s width, if the width of FlowBox is set to 100%. So FlowBox will never re-layout the children.
It’s simple to solve this problem, just bind the width of FlowBox to the width of its parent or other fixed number.

&#60;?xml version=&#8220;1.0&#8220; encoding=&#8220;utf-8&#8220;?&#62;
&#60;mx:Application
    xmlns:mx=&#8220;http://www.adobe.com/2006/mxml&#8220;
    xmlns:local=&#8220;*&#8220;
  [...]]]></description>
		<wfw:commentRss>http://dobeweb.com/2008/flexbox-of-flexlib%e2%80%93how-to-re-layout-the-children-when-the-width-of-flowbox-is-set-to-100.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Lynda.com Releases New AIR For Flex Developers Course</title>
		<link>http://dobeweb.com/2008/lyndacom-releases-new-air-for-flex-developers-course.html</link>
		<comments>http://dobeweb.com/2008/lyndacom-releases-new-air-for-flex-developers-course.html#comments</comments>
		<pubDate>Thu, 24 Jul 2008 08:13:51 +0000</pubDate>
		<dc:creator>Flex</dc:creator>
		
		<category><![CDATA[Adobe AIR]]></category>

		<category><![CDATA[Others]]></category>

		<category><![CDATA[AIR]]></category>

		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://dobeweb.com/?p=174</guid>
		<description><![CDATA[Lynda.com has released a new course by David Gassner entitled AIR for Flex Developers. This course looks at how Flex Builder 3 and the Flex 3 framework can be used to build cross-system desktop applications with Adobe AIR, and covers every point of integration with the host operating system, including working with the local file [...]]]></description>
		<wfw:commentRss>http://dobeweb.com/2008/lyndacom-releases-new-air-for-flex-developers-course.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>The Source Code of ActionScript 3 Cookie class–Enables You to Read, Write, and Edit Shared Objects on the User’s Hard Disk</title>
		<link>http://dobeweb.com/2008/the-source-code-of-actionscript-3-cookie-class%e2%80%93enables-you-to-read-write-and-edit-shared-objects-on-the-user%e2%80%99s-hard-disk.html</link>
		<comments>http://dobeweb.com/2008/the-source-code-of-actionscript-3-cookie-class%e2%80%93enables-you-to-read-write-and-edit-shared-objects-on-the-user%e2%80%99s-hard-disk.html#comments</comments>
		<pubDate>Wed, 16 Jul 2008 01:26:38 +0000</pubDate>
		<dc:creator>Flex</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Flex]]></category>

		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[communitymx]]></category>

		<category><![CDATA[Cookie]]></category>

		<category><![CDATA[SharedObject]]></category>

		<guid isPermaLink="false">http://dobeweb.com/?p=173</guid>
		<description><![CDATA[Have you ever wanted to store persistent information in your Flash movies, save login information, shopping cart data, user preferences, even complex objects like arrays? If you have purchased “Flash Extension”, simply import the cookie class and copy the source code like following:


import com.communitymx.Cookie;
var myCookie:Cookie = new Cookie(”yoursite”);
 
// user info
myCookie.username = “nttlib”;
myCookie.password = “abcdefg”;
myCookie.save();
 
// retrieve cookie [...]]]></description>
		<wfw:commentRss>http://dobeweb.com/2008/the-source-code-of-actionscript-3-cookie-class%e2%80%93enables-you-to-read-write-and-edit-shared-objects-on-the-user%e2%80%99s-hard-disk.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Read bits from given ByteArray</title>
		<link>http://dobeweb.com/2008/read-bits-from-given-bytearray.html</link>
		<comments>http://dobeweb.com/2008/read-bits-from-given-bytearray.html#comments</comments>
		<pubDate>Tue, 15 Jul 2008 14:26:38 +0000</pubDate>
		<dc:creator>Flex</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Flex]]></category>

		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[Add new tag]]></category>

		<category><![CDATA[bits]]></category>

		<category><![CDATA[BitsReader]]></category>

		<category><![CDATA[ByteArray]]></category>

		<category><![CDATA[RECT]]></category>

		<guid isPermaLink="false">http://dobeweb.com/?p=172</guid>
		<description><![CDATA[Working on SWF file decompiling according to the swf_file_format_spec_v9.pdf provided by adobe these days.  After I decompiled the first 8 bytes data of a sample SWF file. I found that the FrameSize is defined as a RECT structure below:


RECT
Field Type Comment
Nbits UB[5] Bits in each rect value field
Xmin SB[Nbits] x minimum position for rect
Xmax SB[Nbits] [...]]]></description>
		<wfw:commentRss>http://dobeweb.com/2008/read-bits-from-given-bytearray.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Flex calendar</title>
		<link>http://dobeweb.com/2008/flex-calendar.html</link>
		<comments>http://dobeweb.com/2008/flex-calendar.html#comments</comments>
		<pubDate>Tue, 15 Jul 2008 14:23:22 +0000</pubDate>
		<dc:creator>Flex</dc:creator>
		
		<category><![CDATA[Flex Examples]]></category>

		<category><![CDATA[calendar]]></category>

		<category><![CDATA[Flex]]></category>

		<category><![CDATA[flex calendar]]></category>

		<guid isPermaLink="false">http://dobeweb.com/?p=171</guid>
		<description><![CDATA[This project strives to provided flex components for crating calendar components. (Timeline, day, week, month and agenda view)
This projects is still work in progress and is not even at an alpha stage, but please look around and offer help or suggestions.
Check out the current status of the code: 

Sample Calendar
Galery of Components

]]></description>
		<wfw:commentRss>http://dobeweb.com/2008/flex-calendar.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Apple&#8217;s Flawed MobileMe</title>
		<link>http://dobeweb.com/2008/apples-flawed-mobileme.html</link>
		<comments>http://dobeweb.com/2008/apples-flawed-mobileme.html#comments</comments>
		<pubDate>Tue, 15 Jul 2008 14:18:48 +0000</pubDate>
		<dc:creator>Flex</dc:creator>
		
		<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://dobeweb.com/?p=170</guid>
		<description><![CDATA[Apple&#8217;s new MobileMe service certainly sounds impressive, it delivers push functionality for the masses - your data is pushed up to your own storage spot in the cloud, and then automagically synced with your iPhone. Pretty cool. And it really works, kind of. It syncs contacts really well, and syncs schedules too (although Apple seems to [...]]]></description>
		<wfw:commentRss>http://dobeweb.com/2008/apples-flawed-mobileme.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>MXML Components VS ActionScript Components–Is the Memory Usage of Components Built with MXML tag Bigger than that of Components Built in ActionScript</title>
		<link>http://dobeweb.com/2008/mxml-components-vs-actionscript-components%e2%80%93is-the-memory-usage-of-components-built-with-mxml-tag-bigger-than-that-of-components-built-in-actionscript.html</link>
		<comments>http://dobeweb.com/2008/mxml-components-vs-actionscript-components%e2%80%93is-the-memory-usage-of-components-built-with-mxml-tag-bigger-than-that-of-components-built-in-actionscript.html#comments</comments>
		<pubDate>Fri, 11 Jul 2008 07:30:05 +0000</pubDate>
		<dc:creator>Flex</dc:creator>
		
		<category><![CDATA[Flex]]></category>

		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[Component]]></category>

		<category><![CDATA[Memory]]></category>

		<category><![CDATA[MXML]]></category>

		<category><![CDATA[PERFORMANCE]]></category>

		<guid isPermaLink="false">http://dobeweb.com/?p=169</guid>
		<description><![CDATA[ I have been puzzled by a problem for a long time: Is the memory usage of components built with mxml tag bigger than that of components built in actionScript? I did a simple experiment below to find the truth.
Preparation: use the codes below to add new mxml component:


&#60;mx:Button/&#62; &#60;mx:TextInput/&#62;
&#60;mx:Button/&#62; &#60;mx:TextInput/&#62;
&#60;mx:Button/&#62; &#60;mx:TextInput/&#62;


Comment : use copy and [...]]]></description>
		<wfw:commentRss>http://dobeweb.com/2008/mxml-components-vs-actionscript-components%e2%80%93is-the-memory-usage-of-components-built-with-mxml-tag-bigger-than-that-of-components-built-in-actionscript.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Working with SQL databases - A SQLite Example for Adobe AIR</title>
		<link>http://dobeweb.com/2008/working-with-sql-databases-a-sqlite-example-for-adobe-air.html</link>
		<comments>http://dobeweb.com/2008/working-with-sql-databases-a-sqlite-example-for-adobe-air.html#comments</comments>
		<pubDate>Fri, 11 Jul 2008 07:27:48 +0000</pubDate>
		<dc:creator>Flex</dc:creator>
		
		<category><![CDATA[Adobe AIR]]></category>

		<category><![CDATA[Adobe]]></category>

		<category><![CDATA[AIR]]></category>

		<category><![CDATA[database]]></category>

		<category><![CDATA[openAsync]]></category>

		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://dobeweb.com/?p=168</guid>
		<description><![CDATA[Adobe AIR includes the capability of creating and working with local SQL databases. Many stand SQL features are supported in the runtime, open source SQLite system can be used for storing local, persistent data.
The flollowing is a simplistic example that create a sqlite database, add, get, update and remove records from the “user” table.
Notice:
You might [...]]]></description>
		<wfw:commentRss>http://dobeweb.com/2008/working-with-sql-databases-a-sqlite-example-for-adobe-air.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>QuickFix? Try Google App Engine, Adobe AIR, and Flex</title>
		<link>http://dobeweb.com/2008/quickfix-try-google-app-engine-adobe-air-and-flex-2.html</link>
		<comments>http://dobeweb.com/2008/quickfix-try-google-app-engine-adobe-air-and-flex-2.html#comments</comments>
		<pubDate>Sun, 06 Jul 2008 01:56:08 +0000</pubDate>
		<dc:creator>Flex</dc:creator>
		
		<category><![CDATA[Adobe AIR]]></category>

		<category><![CDATA[Flex]]></category>

		<category><![CDATA[Google App Engine]]></category>

		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://dobeweb.com/?p=167</guid>
		<description><![CDATA[Last week  working on an application which combines Google App Engine, Adobe AIR, and Flex. This was a fun experiment that turned into a pretty cool application. The application, named QuickFix, sends an image to Google App Engine which does an “I’m Feeling Lucky” transformation on the image and sends it back. Here’s a screenshot [...]]]></description>
		<wfw:commentRss>http://dobeweb.com/2008/quickfix-try-google-app-engine-adobe-air-and-flex-2.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
