<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.6" -->
<rss version="0.92">
<channel>
	<title>Garuna Web Designer</title>
	<link>http://www.garunawebdesigner.com</link>
	<description>Forum for Aspiring Web Designer</description>
	<lastBuildDate>Wed, 23 Jul 2008 14:53:28 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Navigation Bars in Flex3</title>
		<description><![CDATA[

1. From the topic:
View Stack Container in Flex3
http://www.garunawebdesigner.com/?p=252

2. Add ID

&#60;?xml version="1.0" encoding="utf-8"?&#62;
&#60;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"&#62;
&#60;mx:ViewStack id="myviewstack"&#62;
&#60;mx:Panel width="250" height="200" layout="absolute" title="Home"&#62;
&#60;mx:Text x="10" y="10" text="container1" width="200" height="120" id="home"/&#62;
&#60;/mx:Panel&#62;
&#60;mx:Panel width="250" height="200" layout="absolute" title="Product"&#62;
&#60;mx:Text x="15" y="20" text="container2" width="200" height="120" id="product"/&#62;
&#60;/mx:Panel&#62;
&#60;mx:Panel width="250" height="200" layout="absolute" title="Contact us"&#62;
&#60;mx:Text x="20" y="10" text="container3" width="200" height="120" id="contact"/&#62;
&#60;/mx:Panel&#62;
&#60;/mx:ViewStack&#62;
&#60;/mx:Application&#62;


3. Add HBox
&#60;?xml version="1.0" encoding="utf-8"?&#62;
&#60;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"&#62;
&#60;mx:ViewStack id="myviewstack"&#62;
&#60;mx:Panel width="250" height="200" [...]]]></description>
		<link>http://www.garunawebdesigner.com/?p=273</link>
			</item>
	<item>
		<title>Hero Wanted (2008)</title>
		<description><![CDATA[


Download:

http://rapidshare.com/files/113048276/Hero.Wanted.2008.DvDRip.Eng-FxM.part1.rar
http://rapidshare.com/files/113049444/Hero.Wanted.2008.DvDRip.Eng-FxM.part2.rar
http://rapidshare.com/files/113050438/Hero.Wanted.2008.DvDRip.Eng-FxM.part3.rar
http://rapidshare.com/files/113051375/Hero.Wanted.2008.DvDRip.Eng-FxM.part4.rar
http://rapidshare.com/files/113052407/Hero.Wanted.2008.DvDRip.Eng-FxM.part5.rar
http://rapidshare.com/files/113053650/Hero.Wanted.2008.DvDRip.Eng-FxM.part6.rar
http://rapidshare.com/files/113054877/Hero.Wanted.2008.DvDRip.Eng-FxM.part7.rar
http://rapidshare.com/files/131310797/Hero.Wanted.2008.DvDRip.Eng-FxM.part8.rar]]></description>
		<link>http://www.garunawebdesigner.com/?p=271</link>
			</item>
	<item>
		<title>Mastering CSS with Dreamweaver CS3</title>
		<description><![CDATA[


In Mastering CSS with Dreamweaver CS3, authors Stephanie Sullivan and Greg Rewis demonstrate how to use Dreamweaver CS3 and CSS together to create highly individualized, standards-based layouts. Through hands-on projects with visuals, the book gives readers an in-depth understanding of Dreamweaver's 32 CSS-based layouts (new in Dreamweaver CS3) and their application, enabling every user of [...]]]></description>
		<link>http://www.garunawebdesigner.com/?p=263</link>
			</item>
	<item>
		<title>View Stack Container in Flex3</title>
		<description><![CDATA[




1. Drag 3 Panel containers,
and layout = "Vertical"


2. Drag Text



3. Add "ID" and "Text"


4. Code
&#60;?xml version="1.0" encoding="utf-8"?&#62;
&#60;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"&#62;
&#60;mx:Panel width="250" height="200" layout="absolute" title="Home"&#62;
&#60;mx:Text x="10" y="10" text="container1" width="200" height="120" id="home"/&#62;
&#60;/mx:Panel&#62;
&#60;mx:Panel width="250" height="200" layout="absolute" title="Product"&#62;
&#60;mx:Text x="15" y="20" text="container2" width="200" height="120" id="product"/&#62;
&#60;/mx:Panel&#62;
&#60;mx:Panel width="250" height="200" layout="absolute" title="Contact us"&#62;
&#60;mx:Text x="20" y="10" text="container3" width="200" height="120" id="contact"/&#62;
&#60;/mx:Panel&#62;
&#60;/mx:Application&#62;


5. Add "mx:ViewStack" code
&#60;?xml version="1.0" encoding="utf-8"?&#62;
&#60;mx:Application [...]]]></description>
		<link>http://www.garunawebdesigner.com/?p=252</link>
			</item>
	<item>
		<title>Mastering phpMyAdmin for Effective MySQL Management</title>
		<description><![CDATA[



PhpMyAdmin is a well known and popular open-source tool written in PHP intended to handle the administration of MySQL over the Internet. Currently it can create and drop databases, create/drop/alter tables, delete/edit/add fields, execute any SQL statement, and manage keys on fields. While most MySQL developers use routine features of phpMyAdmin every day, few are [...]]]></description>
		<link>http://www.garunawebdesigner.com/?p=238</link>
			</item>
	<item>
		<title>Photoshop CS3 &#038; Dreamweaver CS3: Integration</title>
		<description><![CDATA[



With Adobe® Photoshop® CS3 and Adobe® Dreamweaver® CS3, creating an Internet site from scratch has never been easier! Rafael "RC" Concepcion NAPP education and curriculum developer and regular contributing writer for Layers magazine ­shows you how in this easy-to-follow DVD.

As many pros will tell you, designing a website that effectively communicates with your audience can [...]]]></description>
		<link>http://www.garunawebdesigner.com/?p=235</link>
			</item>
	<item>
		<title>Create Form Container in Flex3</title>
		<description><![CDATA[




1. Drag Form to the page,
and resize


2. Drag FormHeading,
and put text "contact form"



3. In Controls Components,
Drag TextInput


4. Add more TextInput and put Text



5. Add button


6. Form
]]></description>
		<link>http://www.garunawebdesigner.com/?p=219</link>
			</item>
	<item>
		<title>Photoshop CS3 Restoration and Retouching Bible</title>
		<description><![CDATA[



The Photoshop CS3 Restoration and Retouching Bible is a full-color comprehensive reference to retouching and restoring photographs using Adobe Photoshop CS3. Written by an Adobe Certified Expert and Adobe Certified Instructor in Photoshop CS &#38; CS2, Mark Fitzgerald, the Photoshop CS3 Restoration and Retouching Bible provides training, tips, and techniques for amateur to professional photographers [...]]]></description>
		<link>http://www.garunawebdesigner.com/?p=207</link>
			</item>
	<item>
		<title>You.Dont.Mess.With.The.Zohan.(R5)</title>
		<description><![CDATA[





Download:

http://rapidshare.com/files/131220975/k-zohan.part1.rar
http://rapidshare.com/files/131220958/k-zohan.part2.rar
http://rapidshare.com/files/131221072/k-zohan.part3.rar
http://rapidshare.com/files/131220997/k-zohan.part4.rar
http://rapidshare.com/files/131221015/k-zohan.part5.rar
http://rapidshare.com/files/131221042/k-zohan.part6.rar
http://rapidshare.com/files/131220986/k-zohan.part7.rar
Password: areg]]></description>
		<link>http://www.garunawebdesigner.com/?p=195</link>
			</item>
	<item>
		<title>Login upgrade WordPress 2.6 problem from my experience</title>
		<description><![CDATA[

Whatever reasons, 
you can not solve the problem form direct way, 
here is another way 

*Use with Web Browser: Firefox 3.0.1*
Prepare: 1. Back up file: 


2. Clear Cookies and Cache (Firefox)





3. Delete the old version in WebRoot
4. Download and Unzip WordPress 2.6
from http://wordpress.org/,
then upload to FTP
5. Go to : http://example.com/blog/wp-admin/install.php 
to run install script and [...]]]></description>
		<link>http://www.garunawebdesigner.com/?p=156</link>
			</item>
</channel>
</rss>
