<?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>Designscripting</title>
	<atom:link href="http://www.designscripting.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.designscripting.com</link>
	<description>Latest in flash, Free slideshow, Flash tutorials, advance flash, actionscript, Adobe Air, flash slideshow, New technology, RIA, Abstract wall paper</description>
	<lastBuildDate>Thu, 11 Mar 2010 08:12:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Looping through each XMLNode and each attributes within Node:</title>
		<link>http://www.designscripting.com/2010/03/looping-through-each-xmlnode-and-each-attributes-within-node/</link>
		<comments>http://www.designscripting.com/2010/03/looping-through-each-xmlnode-and-each-attributes-within-node/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 08:12:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash CS4]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=371</guid>
		<description><![CDATA[In this tutorial we are going to iterate through node in a XML. Intead of using direct approach of getting the XML Length(); We are going to use indirect approach to loop through the XML.
Here we are going to use For each statement and iterate through the nodes to access information intead of using index values. 
Here is XMLManager class to load XML without pain.
Before proceeding we must know the difference between XML and XMLList.
XML:
XML is a single or collection of XMLNodes with in a rootnode.
XML example:


	
	

Note:
Here the root node ...]]></description>
			<content:encoded><![CDATA[<p>In this tutorial we are going to iterate through node in a XML. Intead of using direct approach of getting the XML Length(); We are going to use indirect approach to loop through the XML.</p>
<p>Here we are going to use For each statement and iterate through the nodes to access information intead of using index values. </p>
<p>Here is <a href="http://www.designscripting.com/2008/11/xmlmanager-in-actionscript-30/">XMLManager class</a> to load XML without pain.</p>
<p>Before proceeding we must know the difference between XML and XMLList.</p>
<p>XML:<br />
XML is a single or collection of XMLNodes with in a rootnode.</p>
<p>XML example:</p>
<pre class="brush:as3">
<library>
	<book id='1' name='Book1' author='XXXXXX' category='YYYYYY'></book>
	<book id='2' name='Book2' author='AAAAAA' category='ZZZZZZ'></book>
</library></pre>
<p>Note:<br />
Here the root node is Library which contains Book Nodes.</p>
<p>XMLList:<br />
A collection of XMLNode without root node.</p>
<p>XMLList example:</p>
<pre class="brush:as3">
	<book id='1' name='Book1' author='XXXXXX' category='YYYYYY'></book>
	<book id='2' name='Book2' author='AAAAAA' category='ZZZZZZ'></book>
</pre>
<p>Next we will see how to interate through XMLNodes.</p>
<pre class="brush:as3">
var _xml:XML =
<library><book id='1' name='asdasd' author='sdcxc' category='fgsdgvs'></book><book id='2' name='sdas' author='hfdhghfg' category='sdfsdf'></book></library>
var _xmlList:XMLList = _xml.Book;

for each(var node in _xmlList)
trace(node.attribute('id'))
</pre>
<p>There may be situation that the number of attributes with in a node may not be know. So we should loop through the all the attributes of a XMLNode. </p>
<pre class="brush:as3">var _xml:XML =
<library><book id='1' name='asdasd' author='sdcxc' category='fgsdgvs'></book><book id='2' name='sdas' author='hfdhghfg' category='sdfsdf'></book></library>
var _xmlList:XMLList = _xml.Book;
trace("Attribute::Value");
trace("----------------")
for each(var node in _xmlList){
		for each(var attribute in node.attributes())
		trace(attribute.name()+"::"+attribute)
		trace("********Node End*********")
	}
</pre>
<p>Output:</p>
<p>Attribute::Value<br />
&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
id::1<br />
name::Book1<br />
author::XXXXXX<br />
category::YYYYYY<br />
********Node End*********<br />
id::2<br />
name::Book2<br />
author::AAAAAA<br />
category::ZZZZZZ<br />
********Node End*********</p>
<p>Cheers :p</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2010/03/looping-through-each-xmlnode-and-each-attributes-within-node/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe have released Flash player 10.1 for Mobiles</title>
		<link>http://www.designscripting.com/2010/03/adobe-have-released-flash-player-10-1-for-mobiles/</link>
		<comments>http://www.designscripting.com/2010/03/adobe-have-released-flash-player-10-1-for-mobiles/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 07:23:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Flash CS4]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=346</guid>
		<description><![CDATA[Adobe have released Flash player 10.1 for Mobiles. The full Flash Player will be available on smartphones and other Internet-connected mobile devices, To deliver on a high level of consistency and move onto mobile platforms with limited memory and processing resources, Flash Player 10.1 leverages hardware acceleration of graphics and video and many other performance improvements, such as rendering, scripting, memory utilization, start-up time, battery and CPU optimizations.

Flash Player 10.1 is also designed to take advantage of media delivery with HTTP streaming, including integration of content protection powered by Adobe ...]]></description>
			<content:encoded><![CDATA[<p>Adobe have released Flash player 10.1 for Mobiles. The full Flash Player will be available on smartphones and other Internet-connected mobile devices, To deliver on a high level of consistency and move onto mobile platforms with limited memory and processing resources, Flash Player 10.1 leverages hardware acceleration of graphics and video and many other performance improvements, such as rendering, scripting, memory utilization, start-up time, battery and CPU optimizations.</p>
<p><a href="http://www.designscripting.com/wp-content/uploads/2010/03/Player_10.1.jpg"><img class="aligncenter size-full wp-image-347" title="Player_10.1" src="http://www.designscripting.com/wp-content/uploads/2010/03/Player_10.1.jpg" alt="Player_10.1" width="300" height="358" /></a></p>
<p>Flash Player 10.1 is also designed to take advantage of media delivery with HTTP streaming, including integration of content protection powered by Adobe Flash Access 2.0. This initiative, codenamed Zeri, will be an open format based on industry standards and will provide content publishers, distributors and partners the tools they need to utilize HTTP infrastructures for high-quality media delivery in Flash Player 10.1 and Adobe Air 2.0 software.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2010/03/adobe-have-released-flash-player-10-1-for-mobiles/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>To use Flex SWC files in Flash CS4</title>
		<link>http://www.designscripting.com/2010/02/to-use-flex-swc-files-in-flash-cs4/</link>
		<comments>http://www.designscripting.com/2010/02/to-use-flex-swc-files-in-flash-cs4/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 07:20:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash CS4]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=339</guid>
		<description><![CDATA[Now we can use the SWC files created for Flex applications in Flash.
Just we need to add the SWC to Flash compiler. Follow the steps to use Flex SWC files in Flash development.
1. Open new File Flash CS4.
 2. Select File &#62; Publish Settings or Press Ctrl + Shift + F12, Publish Settings window will Popup.
 3. Click on Settings&#8230;  and Select Library path

4. Click on Plus Symbol to add SWC path or File.

5. Copy and Paste the Flex SWC files Path.
For example:C:\Program Files\Adobe\Adobe Flash Builder Beta 2\sdks\4.0.0\frameworks\libs
Thats it ...]]></description>
			<content:encoded><![CDATA[<p>Now we can use the SWC files created for Flex applications in Flash.<br />
Just we need to add the SWC to Flash compiler. Follow the steps to use Flex SWC files in Flash development.</p>
<p><strong>1.</strong> Open new File Flash CS4.<br />
<strong> 2.</strong> Select File &gt; Publish Settings or Press Ctrl + Shift + F12, Publish Settings window will Popup.<br />
<strong> 3.</strong> Click on Settings&#8230;  and Select Library path</p>
<p><a href="http://www.designscripting.com/wp-content/uploads/2010/02/publish-settings.jpg"><img class="aligncenter size-full wp-image-340" title="publish-settings" src="http://www.designscripting.com/wp-content/uploads/2010/02/publish-settings.jpg" alt="publish-settings" width="449" height="308" /></a></p>
<p><strong>4.</strong> Click on Plus Symbol to add SWC path or File.</p>
<p><a href="http://www.designscripting.com/wp-content/uploads/2010/02/Settings.jpg"><img class="aligncenter size-full wp-image-341" title="Settings" src="http://www.designscripting.com/wp-content/uploads/2010/02/Settings.jpg" alt="Settings" width="449" height="308" /></a></p>
<p><strong>5</strong>. Copy and Paste the Flex SWC files Path.</p>
<p><span style="color: #993300;">For example:</span><em><span style="color: #808080;">C:\Program Files\Adobe\Adobe Flash Builder Beta 2\sdks\4.0.0\frameworks\libs</span></em></p>
<p>Thats it now we can compile SWC files created for Flex Applications.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2010/02/to-use-flex-swc-files-in-flash-cs4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create First Java Application in Red5 Server</title>
		<link>http://www.designscripting.com/2010/02/create-first-java-application-in-red5-server/</link>
		<comments>http://www.designscripting.com/2010/02/create-first-java-application-in-red5-server/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 08:28:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[RED5]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=328</guid>
		<description><![CDATA[Last we have seen how to Install/Setup Red5 Server. If you dont have the Red5 Setup in your system click here.
In this tutorial we are going to see how to make new Red5 Project.
Before trying this tutorial, make sure the Red5 Server and its sample runs.
Type http://127.0.0.1:5080/ in address bar of your browser and you will see the page below.

Next we will see how to setup server-side code in Eclipse.
Download and install Eclipse for Java EE.
1. Create new Java Project in Eclipse. delete the src folder
 2. Create WEB-INF folder ...]]></description>
			<content:encoded><![CDATA[<p>Last we have seen <a href="http://www.designscripting.com/2009/03/installing-and-deploying-red5-server-in-tomcat-server/" target="_blank">how to Install/Setup Red5 Serve</a>r. If you dont have the Red5 Setup in your system <a href="http://www.designscripting.com/2009/03/installing-and-deploying-red5-server-in-tomcat-server/" target="_blank">click here</a>.</p>
<p>In this tutorial we are going to see how to make new Red5 Project.</p>
<p>Before trying this tutorial, make sure the Red5 Server and its sample runs.</p>
<p>Type <span style="color: #003366;">http://127.0.0.1:5080/</span> in address bar of your browser and you will see the page below.</p>
<p><a href="http://www.designscripting.com/wp-content/uploads/2010/02/StartPage.png"><img class="aligncenter size-full wp-image-330" title="StartPage" src="http://www.designscripting.com/wp-content/uploads/2010/02/StartPage.png" alt="StartPage" width="400" height="193" /></a></p>
<p><strong><em>Next we will see how to setup server-side code in Eclipse.</em></strong></p>
<p>Download and install Eclipse for Java EE.</p>
<p><strong>1.</strong> Create new Java Project in Eclipse. delete the src folder<br />
<strong> 2.</strong> Create WEB-INF folder under the project with sub-folders src and classes<br />
<strong> 3. </strong>Right click src folder under the project then select- Build path &gt; use as source folder.<br />
<strong> 4.</strong> Again right click WEB-INF/src folder under the project then select- Build path &gt; Configure Output Folder.<br />
<strong> 5.</strong> Right click Project &gt; Properties from the Menu. Select Java Build Path from Left Menu.<br />
<strong> 6</strong>. On Right side tabs click on Libraries &gt; Add External Jars.. Select red5.jar from Red5 root installation folder(example: C:\Program Files\Red5\red5.jar)<br />
<strong> 7.</strong> Right Click on src &gt; new &gt; Class. Type the Package name like org.red5.sample, Class name then click on Finish.<br />
<strong> 8.</strong> Type some Java code and compile the application by Run Menu/ Run Icon.<br />
<strong> 9.</strong> Navigate to Red 5&gt; Doc &gt; Templates &gt; MyApp &gt; WEB-INF copy the four files into your newly created WEB-INF folder under the Project.<br />
<strong> 10.</strong> Refresh your project in eclipse so you can now see the four files.</p>
<p><strong><em>Now we need to deploy the application to Red5 Server.</em></strong></p>
<p><strong>11</strong>. Create Folder and name it like Red5App under Red5 &gt; webapps folder<br />
<strong> 12.</strong> Copy the WEB-INF folder in to Red5App now the folder structure will be like Red5 &gt; webapps &gt; WEB-INF under that will be Classes and src Folders.<br />
<strong> 13.</strong> Edit red5-web.properties using Notepad to.</p>
<p><em><span style="color: #333333;">webapp.contextPath=/Red5App<br />
webapp.virtualHosts=localhost, 127.0.0.1</span></em></p>
<p><em><span style="color: #993300;">Note:</span></em> Red5App is the Folder Name created in Step11.</p>
<p><strong>14.</strong> Edit red5-web.xml look for bean id =&#8221;web.handler&#8221; add the package name and class name we have give in step7 here.</p>
<p><em><span style="color: #333333;">&lt;bean id=&#8221;web.handler&#8221;<br />
class=&#8221;org.red5.sample.ClassName&#8221;<br />
singleton=&#8221;true&#8221; /&gt;</span></em></p>
<p><strong>15.</strong> Edit web.xml look for &lt;param-name&gt;webAppRootKey&lt;/param-name&gt; and change the param-value below that to</p>
<p><em><span style="color: #333333;">&lt;context-param&gt;<br />
&lt;param-name&gt;webAppRootKey&lt;/param-name&gt;<br />
&lt;param-value&gt;/Red5App&lt;/param-value&gt;<br />
&lt;/context-param&gt;</span></em></p>
<p>Thats it we have created a server-side Java application for Red5 Server.</p>
<p><strong>Below is the entire application Folder structure:</strong></p>
<p><a href="http://www.designscripting.com/wp-content/uploads/2010/02/Folder_Structure.jpg"><img class="aligncenter size-full wp-image-329" title="Folder_Structure" src="http://www.designscripting.com/wp-content/uploads/2010/02/Folder_Structure.jpg" alt="Folder_Structure" width="400" height="364" /></a></p>
<p>In next tutorial we will see How to create client side application.</p>
<p><strong> <img src='http://www.designscripting.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2010/02/create-first-java-application-in-red5-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Appcelerator Titanium</title>
		<link>http://www.designscripting.com/2010/02/appcelerator-titanium/</link>
		<comments>http://www.designscripting.com/2010/02/appcelerator-titanium/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 12:56:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Webmasters]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=322</guid>
		<description><![CDATA[Titanium makes cross-platform native application development easy.
A free and open source application development platform, Titanium let’s you create native mobile and desktop application experiences using existing web skills like Javascript, HTML, CSS, Python, Ruby, and PHP.

Titanium For Mobile:
Titanium translates your hard won web skills into native applications that perform and look just like they were written in Objective-C [iPhone] or Java [Android]. With over 300 APIs, a thriving developer community6, and the support you need, you can build applications that are more social, local, media rich, interactive, and extensible.
Titanium For ...]]></description>
			<content:encoded><![CDATA[<p>Titanium makes cross-platform native application development easy.<br />
A free and open source application development platform, Titanium let’s you create native mobile and desktop application experiences using existing web skills like Javascript, HTML, CSS, Python, Ruby, and PHP.</p>
<p><a href="http://www.designscripting.com/wp-content/uploads/2010/02/Untitled-1.jpg"><img class="aligncenter size-full wp-image-323" title="Appcelerator Titanium" src="http://www.designscripting.com/wp-content/uploads/2010/02/Untitled-1.jpg" alt="Appcelerator Titanium" width="400" height="157" /></a></p>
<p><strong>Titanium For Mobile:</strong><br />
Titanium translates your hard won web skills into native applications that perform and look just like they were written in Objective-C [iPhone] or Java [Android]. With over 300 APIs, a thriving developer community6, and the support you need, you can build applications that are more social, local, media rich, interactive, and extensible.</p>
<p><strong>Titanium For Desktop:</strong><br />
Build more engaging applications that have better performance and full control over OS-specific UI, database access, offline functionality, notifications, and multimedia. Flaunt your geek cred with Linux applications, go mainstream with Windows, get hip with OSX, or do all three from one code base. Titanium apps take up to 1/10th the memory of Adobe AIR apps and have complete access to the local system.</p>
<p><strong>Why Appcelerator Titanium?</strong><br />
Most full-featured application development<br />
platform on the market<br />
iPhone without Objective-C / Android without Java<br />
Windows, OSX and Linux apps on a single code base<br />
Give your apps The Native Advantage</p>
<p>For More information about Titanium visit http://www.appcelerator.com/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2010/02/appcelerator-titanium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Play Flv enables Windows Media Player open FLV files</title>
		<link>http://www.designscripting.com/2010/01/play-flv-enables-windows-media-player-open-flv-files/</link>
		<comments>http://www.designscripting.com/2010/01/play-flv-enables-windows-media-player-open-flv-files/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 10:58:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Webmasters]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=317</guid>
		<description><![CDATA[There are many websites include YouTube, Google Video, Yahoo! Video, metacafe, Reuters.com use FLV as their video format. But still problem exists to play Flv video files with Windows media player.
Flv files need to be played using special FLV players.
Here comes the Play Flv package that enables the Windows Media Player to play FLV files
Here the Key features

Plugin that enables Windows Media Player to playback FLV files
Features all default functions, such as zooming, skipping and full screen view
Creates file association: Double-click FLV files to play them in Windows Media Player
Very ...]]></description>
			<content:encoded><![CDATA[<p>There are many websites include YouTube, Google Video, Yahoo! Video, metacafe, Reuters.com use FLV as their video format. But still problem exists to play Flv video files with Windows media player.</p>
<p>Flv files need to be played using special FLV players.</p>
<p>Here comes the Play Flv package that enables the Windows Media Player to play FLV files</p>
<p>Here the <strong>Key features</strong></p>
<ul>
<li>Plugin that enables Windows Media Player to playback FLV files</li>
<li>Features all default functions, such as zooming, skipping and full screen view</li>
<li>Creates file association: Double-click FLV files to play them in Windows Media Player</li>
<li>Very lightweight plugin</li>
<li>Free and open source</li>
</ul>
<p>Visit<br />
http://www.playflv.com/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2010/01/play-flv-enables-windows-media-player-open-flv-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox for Mobile 1.0 Release</title>
		<link>http://www.designscripting.com/2010/01/firefox-for-mobile-1-0-release/</link>
		<comments>http://www.designscripting.com/2010/01/firefox-for-mobile-1-0-release/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 10:30:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Webmasters]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=311</guid>
		<description><![CDATA[Now the mobile users going to get Mozilla firefox soon on their handsets.

Mozilla have initially released its brwoser engine for N900, we hope they will release for other mobile devices too.

Features
Firefox for your mobile phone comes complete with favorite and familiar features that you enjoy on your desktop:

The Awesome Bar searches your history, bookmarks and tags to go to your favorite sites instantly
Share your Firefox preferences, history, and bookmarks between your desktop and mobile
Add-ons to make your browser your own
Tabs that let you browse multiple sites at once
One-touch bookmarking to ...]]></description>
			<content:encoded><![CDATA[<p>Now the mobile users going to get Mozilla firefox soon on their handsets.</p>
<p><a href="http://www.designscripting.com/wp-content/uploads/2010/01/Coming-Soon.jpg"><img class="aligncenter size-full wp-image-312" title="Coming-Soon" src="http://www.designscripting.com/wp-content/uploads/2010/01/Coming-Soon.jpg" alt="Coming-Soon" width="400" height="202" /></a></p>
<p>Mozilla have initially released its brwoser engine for N900, we hope they will release for other mobile devices too.</p>
<p><a href="http://www.designscripting.com/wp-content/uploads/2010/01/N900+FF.jpg"><img class="aligncenter size-full wp-image-314" title="N900+FF" src="http://www.designscripting.com/wp-content/uploads/2010/01/N900+FF.jpg" alt="N900+FF" width="413" height="324" /></a></p>
<p><strong>Features</strong><br />
Firefox for your mobile phone comes complete with favorite and familiar features that you enjoy on your desktop:</p>
<ul>
<li>The Awesome Bar searches your history, bookmarks and tags to go to your favorite sites instantly</li>
<li>Share your Firefox preferences, history, and bookmarks between your desktop and mobile</li>
<li>Add-ons to make your browser your own</li>
<li>Tabs that let you browse multiple sites at once</li>
<li>One-touch bookmarking to quickly organize websites</li>
</ul>
<p><strong>Benefits for Developers</strong></p>
<ul>
<li>Put your innovations in the hands of people all over the world to access anytime, anywhere</li>
<li>Build rich mobile applications using the latest Web technology like HTML5, CSS and JavaScript.</li>
<li>Tap into the device capabilities of the phone, such as geolocation, camera and calling</li>
<li>Develop game changing add-ons on the first mobile Web browser to offer add-ons</li>
</ul>
<p><a href="http://www.mozilla.com/en-US/mobile/" target="_blank">Article Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2010/01/firefox-for-mobile-1-0-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just bought Sony Ericsson C510 Cybershot</title>
		<link>http://www.designscripting.com/2010/01/just-bought-sony-ericsson-c510-cybershot/</link>
		<comments>http://www.designscripting.com/2010/01/just-bought-sony-ericsson-c510-cybershot/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 12:20:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=306</guid>
		<description><![CDATA[Yeah last week I bought Sony Ericsson C510 Cybershot for 9000K.
Wanted to buy a mobile with good camera and music play with 3G, with price range of 9000K to 12000K and I was convinced with the C510.
here the listed specification

SIZE	Dimensions	107 x 47 x 12.5 mm
CAMERA	Primary	3.15 MP, 2048&#215;1536 pixels, autofocus, LED flash
DATA    3G	HSDPA; HSUPA
MESSAGING 	SMS (threaded view), MMS, Email, Instant Messaging
DISPLAY	Type	TFT, 256K colors


I like the camera, event its not excellent in indoor.
Music player is gud.
I has accelerometer to rotate the screen on all the directions.
Threaded SMS.
3G
Smile shutter while ...]]></description>
			<content:encoded><![CDATA[<p>Yeah last week I bought Sony Ericsson C510 Cybershot for 9000K.</p>
<p>Wanted to buy a mobile with good camera and music play with 3G, with price range of 9000K to 12000K and I was convinced with the C510.</p>
<p>here the listed specification</p>
<ul>
<li>SIZE	Dimensions	107 x 47 x 12.5 mm</li>
<li>CAMERA	Primary	3.15 MP, 2048&#215;1536 pixels, autofocus, LED flash</li>
<li>DATA    3G	HSDPA; HSUPA</li>
<li>MESSAGING 	SMS (threaded view), MMS, Email, Instant Messaging</li>
<li>DISPLAY	Type	TFT, 256K colors</li>
</ul>
<p><img class="alignnone" title="C510" src="http://www.letsgomobile.org/images/specs/1762/sony-ericsson-c510.jpg" alt="" width="190" height="300" /></p>
<p>I like the camera, event its not excellent in indoor.<br />
Music player is gud.<br />
I has accelerometer to rotate the screen on all the directions.<br />
Threaded SMS.<br />
3G<br />
Smile shutter while taking snaps.<br />
Gud video quality.</p>
<p>But it doesnt have Xenon flash in it. <img src='http://www.designscripting.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Overall I am happy with the mobile. Its worth for its price.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2010/01/just-bought-sony-ericsson-c510-cybershot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>karthik calling karthik: &#8216;Hey ya&#8217; Lyrics</title>
		<link>http://www.designscripting.com/2010/01/karthik-calling-karthik-hey-ya-lyrics/</link>
		<comments>http://www.designscripting.com/2010/01/karthik-calling-karthik-hey-ya-lyrics/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 10:21:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Lyrics - I like :O)]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=303</guid>
		<description><![CDATA[
Song Details:-
Song Name: Hey Ya / Tum Jo Mere Saath Ho
Film/Album: Karthik Calling Karthik
Singer(s): K K, Clinton Cerejo
Music Director: Shankar, Ehsaan &#38; Loy
Lyricist: Javed Akhtar
Picturised on: Farhan Akhtar, Deepika Padukone
Music Label: T-Series
Lyrics of Hey Ya / Tum Jo Mere Saath Ho Song
Hey ya, I wanna get closer to you
Hey you, I need to be closer to you
Hey ya, I got to tell you how I feel
Oh baby you are the only one for me
Tumhe kaise main bataun, kya main paa gaya hoon
Tum jo mere saath ho
Mujhko duniya mil gayi hai, ...]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://fullytimepass.com/wp-content/uploads/2010/01/Karthik-Calling-Karthik-5.jpg" alt="" width="331" height="480" /></p>
<p><strong>Song Details:-</strong><br />
<strong>Song Name</strong>: Hey Ya / Tum Jo Mere Saath Ho<br />
<strong>Film/Album</strong>: Karthik Calling Karthik<br />
<strong>Singer(s)</strong>: K K, Clinton Cerejo<br />
<strong>Music Director</strong>: Shankar, Ehsaan &amp; Loy<br />
<strong>Lyricist</strong>: Javed Akhtar<br />
<strong>Picturised on</strong>: Farhan Akhtar, Deepika Padukone<br />
<strong>Music Label</strong>: T-Series</p>
<p>Lyrics of Hey Ya / Tum Jo Mere Saath Ho Song<br />
Hey ya, I wanna get closer to you<br />
Hey you, I need to be closer to you<br />
Hey ya, I got to tell you how I feel<br />
Oh baby you are the only one for me<br />
Tumhe kaise main bataun, kya main paa gaya hoon<br />
Tum jo mere saath ho<br />
Mujhko duniya mil gayi hai, zindagi badal gayi hai<br />
Tum jo mere saath ho<br />
Hey ya, hey ya</p>
<p>Haseen haseen hai ye safar<br />
Sajji sajji ye raahein<br />
Juki juki ye nazar, khuli khuli ye bahein<br />
Meri palkon par ko sattne jaaye<br />
Haule haule dil ye gaaye<br />
Mujhko duniya mil gayi hai, zindagi badal gayi hai<br />
Tum jo mere saath ho<br />
Baby, you are the one for me, hey ya</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2010/01/karthik-calling-karthik-hey-ya-lyrics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe not releasing the public beta of &#8220;Flash Professional CS5&#8243;</title>
		<link>http://www.designscripting.com/2010/01/adobe-not-releasing-the-public-beta-of-flash-professional-cs5/</link>
		<comments>http://www.designscripting.com/2010/01/adobe-not-releasing-the-public-beta-of-flash-professional-cs5/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 03:47:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash CS4]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=296</guid>
		<description><![CDATA[There is not public beta of Flash CS5 named &#8216;Viper&#8217;,
Now adobe is going to ship CS5 suite by April 2010..(Source)
The announcement of Adobe

Screen shot of Flash CS5

]]></description>
			<content:encoded><![CDATA[<p>There is not public beta of Flash CS5 named &#8216;Viper&#8217;,<br />
Now adobe is going to ship CS5 suite by April 2010..(<a href="http://cs5.org/?p=136#more-136">Source</a>)</p>
<p>The announcement of Adobe<br />
<a href="http://www.designscripting.com/wp-content/uploads/2010/01/Adobe_not_releasing.jpg"><img class="aligncenter size-full wp-image-297" title="Adobe_not_releasing" src="http://www.designscripting.com/wp-content/uploads/2010/01/Adobe_not_releasing.jpg" alt="Adobe_not_releasing" width="546" height="318" /></a><a href="http://www.designscripting.com/wp-content/uploads/2010/01/Flash_CS5.jpg"></a></p>
<p>Screen shot of Flash CS5</p>
<p><a href="http://www.designscripting.com/wp-content/uploads/2010/01/Flash_CS5.jpg"><img class="aligncenter size-full wp-image-298" title="Flash_CS5" src="http://www.designscripting.com/wp-content/uploads/2010/01/Flash_CS5.jpg" alt="Flash_CS5" width="546" height="318" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2010/01/adobe-not-releasing-the-public-beta-of-flash-professional-cs5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
