<?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>All About Web &#38; Mobile Application Development &#187; Adobe Flex Builder</title>
	<atom:link href="http://www.londatiga.net/tag/adobe-flex-builder/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.londatiga.net</link>
	<description>All About Web &#38; Mobile Application Development</description>
	<lastBuildDate>Sat, 14 Jan 2012 16:56:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to Change Application Theme on Adobe Flex Builder 3</title>
		<link>http://www.londatiga.net/it/how-to-change-application-theme-on-adobe-flex-builder-3/</link>
		<comments>http://www.londatiga.net/it/how-to-change-application-theme-on-adobe-flex-builder-3/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 10:50:53 +0000</pubDate>
		<dc:creator>lorenz</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[Adobe Air]]></category>
		<category><![CDATA[Adobe Flex Builder]]></category>
		<category><![CDATA[flex builder chage theme]]></category>
		<category><![CDATA[flex change theme]]></category>
		<category><![CDATA[flex set theme]]></category>
		<category><![CDATA[flex theme]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://www.londatiga.net/?p=245</guid>
		<description><![CDATA[Themes are collections of styles, graphical assets such as images, and skins that define the Flex application&#8217;s appearance. There are two available theme formats, a single compiled SWC file and a CSS file. Adobe Flex Builder 3 comes with some predefined themes located on Flex SDK directory, the default location is on C:\Program Files\Adobe\Flex Builder [...]]]></description>
			<content:encoded><![CDATA[<p>Themes are collections of styles, graphical assets such as images, and skins that define the Flex application&#8217;s appearance. There are two available theme formats, a single compiled SWC file and a CSS file. Adobe Flex Builder 3 comes with some predefined themes located on Flex SDK directory, the default location is on <span style="color: #800000;">C:\Program Files\Adobe\Flex Builder 3\sdks\3.2.0\frameworks\themes </span>directory.</p>
<p>A theme can be applied into an application using two ways:</p>
<p>1.  By using <span style="color: #800000;">&lt;mx:Style&gt;</span> tag that points to theme&#8217;s CSS file.</p>
<p>The tag can be inserted into MXML  application after the <span style="color: #800000;">&lt;mx:Application&gt;</span> tag. The CSS file must be located on project&#8217;s root directory, if other than project&#8217;s root directory, a full absolute path to  CSS file must specified.</p>
<p>Example:</p>
<pre class="brush: xml; title: ;">
&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;&gt;
&lt;mx:Style source=&quot;myStyle.css&quot;/&gt;
&lt;mx:Label x=&quot;188&quot; y=&quot;154&quot; text=&quot;Hello World&quot; width=&quot;154&quot; height=&quot;39&quot; fontSize=&quot;17&quot; color=&quot;#CEEFF6&quot;/&gt;
&lt;/mx:Application&gt;
</pre>
<p>or</p>
<pre class="brush: xml; title: ;">
&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;&gt;
&lt;mx:Style source=&quot;C:\Program Files\Adobe\Flex Builder 3\sdks\3.2.0\frameworks\themes\Ice\Ice.css&quot;/&gt;
&lt;mx:Label x=&quot;188&quot; y=&quot;154&quot; text=&quot;Hello World&quot; width=&quot;154&quot; height=&quot;39&quot; fontSize=&quot;17&quot; color=&quot;#CEEFF6&quot;/&gt;
&lt;/mx:Application&gt;
</pre>
<p>2. By adding additional compiler arguments that points to theme&#8217;s CSS file.</p>
<ul>
<li>From an opened Flex application project , select  <span style="color: #800000;">Projec</span><span style="color: #800000;">t</span><span style="color: #800000;"> -&gt; </span><span style="color: #800000;">Properties</span> menu to open <span style="color: #800000;">Properti</span><span style="color: #800000;">e</span><span style="color: #800000;">s</span> window</li>
<li>Select <span style="color: #800000;">Flex Compiler</span> section from the tree on left side <span style="color: #800000;">Propertie</span><span style="color: #800000;">s</span> window</li>
<li><span style="color: #800000;"><span style="color: #000000;">At</span> Additional compiler argument</span><span style="color: #800000;">s</span> field, add<span style="color: #800000;">-theme</span> parameter to specify path to desired theme&#8217;s CSS file</li>
</ul>
<p>Example:</p>
<p>-<span style="color: #800000;"> theme &#8220;C:\Program Files\Adobe\Flex Builder 3\sdks\3.2.0\frameworks\themes\Ice\Ice.css&#8221;</span></p>
<p><span style="color: #800000;"> </span></p>
<div class="wp-caption alignnone" style="width: 510px"><img title="Properties Window" src="http://londatiga.net/images/flex/properties_window.jpg" alt="Properties Window" width="500" height="432" /><p class="wp-caption-text">Properties Window </p></div>
<p><span style="color: #800000;"> </span></p>
<ul>
<li>Click <span style="color: #800000;">OK</span> to apply</li>
<li>Run the application to open it on Web browser, the appearance should be changed to the new specified theme.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.londatiga.net/it/how-to-change-application-theme-on-adobe-flex-builder-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Change Default Web Browser on Adobe Flex Builder 3</title>
		<link>http://www.londatiga.net/it/how-to-change-default-web-browser-on-adobe-flex-builder-3/</link>
		<comments>http://www.londatiga.net/it/how-to-change-default-web-browser-on-adobe-flex-builder-3/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 10:46:11 +0000</pubDate>
		<dc:creator>lorenz</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Adobe Air]]></category>
		<category><![CDATA[Adobe Flex Builder]]></category>
		<category><![CDATA[change flex builder default browser]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex builder default browser]]></category>
		<category><![CDATA[flex change browser]]></category>
		<category><![CDATA[flex default browser]]></category>
		<category><![CDATA[RIA]]></category>

		<guid isPermaLink="false">http://www.londatiga.net/?p=243</guid>
		<description><![CDATA[Adobe Flex Builder, an Integrated Development Environment (IDE) for Flex application uses system default Web browser  to running and debugging applications. To change the default Web browser to another Web browser, you can change the workbench Web browser setting which effects how application are run and debugged.
To change default Web  browser:
1. Go to [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Adobe Flex Builder" href="http://www.adobe.com/products/flex/" target="_blank">Adobe Flex Builder</a>, an Integrated Development Environment (IDE) for Flex application uses system default Web browser  to running and debugging applications. To change the default Web browser to another Web browser, you can change the workbench Web browser setting which effects how application are run and debugged.</p>
<p>To change default Web  browser:</p>
<p>1. Go to <span style="color: #800000;">Preferences</span> -&gt; <span style="color: #800000;">Windo</span><span style="color: #800000;">w</span> menu to open <span style="color: #800000;">Preferences</span> window</p>
<p><img title="Preferences Window" src="http://londatiga.net/images/flex/preferences.jpg" alt="Preferences Window" width="400" height="346" />Preferences Window</p>
<p>2. Choose <span style="color: #993300;">U<span style="color: #800000;">se external Web browse</span></span><span style="color: #800000;">r</span> option and select your desired Web browser on available <span style="color: #800000;">External Web browsers</span></p>
<p>3. If the desired Web browser doesn&#8217;t exists, click <span style="color: #800000;">New</span> to open <span style="color: #800000;">Add External Web Browse</span><span style="color: #800000;">r</span> dialog</p>
<p><img title="Add Dialog" src="http://londatiga.net/images/flex/add_dialog.jpg" alt="Add Dialog" width="400" height="188" />Add Dialog</p>
<p>4. Type the name of your external Web browser, eg: Chrome</p>
<p>5. Click <span style="color: #800000;">Browse</span> to point to your Web browser&#8217;s executable file location</p>
<p>6. Click <span style="color: #800000;">OK</span> to add</p>
<p>7. Select your newly added external Web browser (Chrome) and then click <span style="color: #800000;">OK</span> to apply</p>
<p>Open your  Flex application project and run, your application should be run in the specified Web browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.londatiga.net/it/how-to-change-default-web-browser-on-adobe-flex-builder-3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

