<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3086728026098108550</id><updated>2012-02-16T17:04:34.970+05:30</updated><category term='Flex'/><title type='text'>Ravi Mishra - Adobe Flex Developer</title><subtitle type='html'>In this blog I will keep on sharing the new things about Flex, ActionScript, Sports and Movies, which I come across.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://achieveravi.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3086728026098108550/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://achieveravi.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Ravi</name><uri>http://www.blogger.com/profile/17126542935371635536</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_TdmWRWSXkHU/ST28MmX6M6I/AAAAAAAAAbc/xp98RdC8ZhQ/S220/DSC01074.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>8</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3086728026098108550.post-3357285881050766750</id><published>2009-08-18T22:43:00.002+05:30</published><updated>2009-08-18T22:54:07.211+05:30</updated><title type='text'>My Blog is on AXNA/MXNA</title><content type='html'>This morning came with a big surprise for me. I was just browsing the blog list on &lt;a href="http://www.adobe.com/devnet/flex"&gt;Flex devnet&lt;/a&gt; and found that my blog is also registered with MXNA/AXNA (Macromedia/Adobe XML News Aggregator). I wasn't aware of this thing so it was a pleasant surprise for me and it made my day.&lt;br /&gt;So, from now on, my posts can also be seen on Flex devnet. :)&lt;br /&gt;&lt;br /&gt;Cheers!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3086728026098108550-3357285881050766750?l=achieveravi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://achieveravi.blogspot.com/feeds/3357285881050766750/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3086728026098108550&amp;postID=3357285881050766750' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3086728026098108550/posts/default/3357285881050766750'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3086728026098108550/posts/default/3357285881050766750'/><link rel='alternate' type='text/html' href='http://achieveravi.blogspot.com/2009/08/my-blog-is-on-axnamxna.html' title='My Blog is on AXNA/MXNA'/><author><name>Ravi</name><uri>http://www.blogger.com/profile/17126542935371635536</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_TdmWRWSXkHU/ST28MmX6M6I/AAAAAAAAAbc/xp98RdC8ZhQ/S220/DSC01074.JPG'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3086728026098108550.post-6197512370985392091</id><published>2009-08-07T23:12:00.003+05:30</published><updated>2009-08-18T12:31:45.322+05:30</updated><title type='text'>Hyperlink Component</title><content type='html'>&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:verdana;"&gt;So many times I see people ask for Hyperlink kind of component in Flex. Though there is LinkButton available in Flex framework but it does not give the feel of traditional hyperlink as it is in HTML. Therefore I tried tweaking the Label component &lt;mx:label&gt; a bit and I guess it is exactly like traditional hyperlink. Trust me, it was far more easier than the imagination. Check out the  code below:&lt;br /&gt;&lt;br /&gt;package com.components&lt;br /&gt;{&lt;br /&gt;   import flash.events.MouseEvent;&lt;br /&gt; &lt;br /&gt;   import mx.controls.Label;&lt;br /&gt;&lt;br /&gt;   public class HyperLink extends Label&lt;br /&gt;   {&lt;br /&gt;       public function HyperLink()&lt;br /&gt;       {&lt;br /&gt;           super();&lt;br /&gt;           this.setStyle('color','#0000FF');&lt;br /&gt;           this.addEventListener(MouseEvent.MOUSE_OVER,mouseOverHandler);&lt;br /&gt;           this.addEventListener(MouseEvent.MOUSE_OUT,mouseOutHandler);&lt;br /&gt;       }&lt;br /&gt;     &lt;br /&gt;       override protected function commitProperties():void{&lt;br /&gt;           super.commitProperties();&lt;br /&gt;           this.buttonMode = true;&lt;br /&gt;           this.useHandCursor = true;&lt;br /&gt;           this.mouseChildren = false;&lt;br /&gt;       }&lt;br /&gt;     &lt;br /&gt;       private function mouseOverHandler(e:MouseEvent):void{&lt;br /&gt;           setStyle('textDecoration','underline');&lt;br /&gt;       }&lt;br /&gt;     &lt;br /&gt;       private function mouseOutHandler(e:MouseEvent):void{&lt;br /&gt;           setStyle('textDecoration','normal');&lt;br /&gt;       }&lt;br /&gt;   }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;You can use this component directly.&lt;br /&gt;&lt;br /&gt;Let me know if you like it. :)&lt;br /&gt;&lt;br /&gt;Cheers!&lt;br /&gt;&lt;/mx:label&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3086728026098108550-6197512370985392091?l=achieveravi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://achieveravi.blogspot.com/feeds/6197512370985392091/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3086728026098108550&amp;postID=6197512370985392091' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3086728026098108550/posts/default/6197512370985392091'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3086728026098108550/posts/default/6197512370985392091'/><link rel='alternate' type='text/html' href='http://achieveravi.blogspot.com/2009/08/hyperlink-component.html' title='Hyperlink Component'/><author><name>Ravi</name><uri>http://www.blogger.com/profile/17126542935371635536</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_TdmWRWSXkHU/ST28MmX6M6I/AAAAAAAAAbc/xp98RdC8ZhQ/S220/DSC01074.JPG'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3086728026098108550.post-889251280036281529</id><published>2009-08-06T22:17:00.002+05:30</published><updated>2009-08-06T22:35:45.895+05:30</updated><title type='text'>Flex HackrChallenges</title><content type='html'>&lt;span style="font-family: verdana;"&gt;&lt;a href="http://flashahead.adobe.com/challenges/"&gt;HackrChallenges&lt;/a&gt; is a step taken by a group of Adobe evangelists in India to attract Flex users. I found it interesting because they have started it with a small Flex challenge. I hope it would grow positively in near future.&lt;br /&gt;&lt;br /&gt;One more good thing is that they have created a new &lt;a href="http://flashahead.adobe.com/"&gt;forum&lt;/a&gt; which contains some useful things and it is completely dedicated to Flex. Though it is in beta currently but I feel it is worth visiting.&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3086728026098108550-889251280036281529?l=achieveravi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://achieveravi.blogspot.com/feeds/889251280036281529/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3086728026098108550&amp;postID=889251280036281529' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3086728026098108550/posts/default/889251280036281529'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3086728026098108550/posts/default/889251280036281529'/><link rel='alternate' type='text/html' href='http://achieveravi.blogspot.com/2009/08/flex-hackrchallenges.html' title='Flex HackrChallenges'/><author><name>Ravi</name><uri>http://www.blogger.com/profile/17126542935371635536</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_TdmWRWSXkHU/ST28MmX6M6I/AAAAAAAAAbc/xp98RdC8ZhQ/S220/DSC01074.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3086728026098108550.post-3802199419919262295</id><published>2009-08-06T21:41:00.003+05:30</published><updated>2009-08-06T22:14:52.057+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Flex'/><title type='text'>It's been a long time</title><content type='html'>&lt;span style="font-family:verdana;font-size:85%;"&gt;It has really been a long time since I wrote my last post. I can give thousands of reasons for that :)&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:verdana;font-size:85%;"&gt;but that would really be shameful, isn't it ;). But as they say its better late than never, I am trying to come back again. This time I would try (not PROMISE) to become more active on this blog.&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;Again I would be writing about some flex related topics and my findings (if any) on Flex.&lt;br /&gt;&lt;br /&gt;Keep visiting, I will post something very soon.&lt;br /&gt;&lt;br /&gt;Cheers!&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3086728026098108550-3802199419919262295?l=achieveravi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://achieveravi.blogspot.com/feeds/3802199419919262295/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3086728026098108550&amp;postID=3802199419919262295' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3086728026098108550/posts/default/3802199419919262295'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3086728026098108550/posts/default/3802199419919262295'/><link rel='alternate' type='text/html' href='http://achieveravi.blogspot.com/2009/08/its-been-long-time.html' title='It&apos;s been a long time'/><author><name>Ravi</name><uri>http://www.blogger.com/profile/17126542935371635536</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_TdmWRWSXkHU/ST28MmX6M6I/AAAAAAAAAbc/xp98RdC8ZhQ/S220/DSC01074.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3086728026098108550.post-176650877917848452</id><published>2009-03-14T12:49:00.002+05:30</published><updated>2009-03-14T13:09:40.393+05:30</updated><title type='text'>How to enable server in a Flex Project</title><content type='html'>Few days back I ran into a problem where I wanted to enable the server technologies in a pre-existing Flex project (A project in which server was not configured at the time of creation). In such projects when you right-click on the project inside project navigator and then click on Flex Server, you will find that everything is disabled!&lt;br /&gt;&lt;br /&gt;Now what to do?&lt;br /&gt;&lt;br /&gt;Should I create a new project with server configuration and then copy all the source file to that newly created project?&lt;br /&gt;&lt;br /&gt;Sounds weird!!! There is not to do all those things, just a single configuration change.&lt;br /&gt;&lt;br /&gt;Go to your project directory and open the .flexPeoperties file in a text editor and change the value of  &lt;span style="font-style: italic;"&gt;flexServerType&lt;/span&gt; to 1 (which is 0 by default.)&lt;br /&gt;&lt;br /&gt;Save the file, close it. Now go back to your flex builder and again right click on your project, select properties and then select Flex Server.&lt;br /&gt;&lt;br /&gt;Everything is enabled now and you can do your server configuration on the same project.&lt;br /&gt;&lt;br /&gt;Do post your comments if you find it helpful.&lt;br /&gt;&lt;br /&gt;Cheers!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3086728026098108550-176650877917848452?l=achieveravi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://achieveravi.blogspot.com/feeds/176650877917848452/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3086728026098108550&amp;postID=176650877917848452' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3086728026098108550/posts/default/176650877917848452'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3086728026098108550/posts/default/176650877917848452'/><link rel='alternate' type='text/html' href='http://achieveravi.blogspot.com/2009/03/how-to-enable-server-in-flex-project.html' title='How to enable server in a Flex Project'/><author><name>Ravi</name><uri>http://www.blogger.com/profile/17126542935371635536</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_TdmWRWSXkHU/ST28MmX6M6I/AAAAAAAAAbc/xp98RdC8ZhQ/S220/DSC01074.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3086728026098108550.post-2850905795679750117</id><published>2009-02-17T00:16:00.003+05:30</published><updated>2009-02-17T00:31:52.677+05:30</updated><title type='text'>Copy only selected items from a datagrid to clipboard in Flex</title><content type='html'>&lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;Hi,&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;After a long time I wished to write a post again :)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;This time I am writing a simple class but I think it could be very useful to someone. There have been some classes which were copying the data from a datagrid. I decide to write a class which copies only the selected data from the datagrid.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;First you will have to set the allowMultipleSelection="true" of the datagrid you want to copy. Then use the following class to copy the selected data from the datagrid.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;package com&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;    import flash.system.System;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;    &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;    import mx.controls.DataGrid;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;    &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;    public class CopyToCB&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;    {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;        public static var ccString:String;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;        public function CopyToCB()&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;        {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;        }&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;        &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;        public static function CopyData(dg:DataGrid):void{&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;            ccString = new String();&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;            for(var i:Number=0;i&amp;lt;dg.columncount;i++){&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;                ccString += dg.columns[i].headerText + "\t";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;            }&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;            ccString += "\n";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;            for each(var item:Object in dg.selectedItems){&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;                for(var t:Number=0;t&amp;lt;dg.columncount;t++){&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;                    ccString += item[dg.columns[t].dataField] + "\t";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;                }&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;                ccString += "\n";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;            }&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;            &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;            System.setClipboard(ccString);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;        }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;    }&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;Do let me know if it helps you.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;Cheers!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;-Ravi&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3086728026098108550-2850905795679750117?l=achieveravi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://achieveravi.blogspot.com/feeds/2850905795679750117/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3086728026098108550&amp;postID=2850905795679750117' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3086728026098108550/posts/default/2850905795679750117'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3086728026098108550/posts/default/2850905795679750117'/><link rel='alternate' type='text/html' href='http://achieveravi.blogspot.com/2009/02/copy-only-selected-items-from-datagrid.html' title='Copy only selected items from a datagrid to clipboard in Flex'/><author><name>Ravi</name><uri>http://www.blogger.com/profile/17126542935371635536</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_TdmWRWSXkHU/ST28MmX6M6I/AAAAAAAAAbc/xp98RdC8ZhQ/S220/DSC01074.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3086728026098108550.post-3502484284322175436</id><published>2008-10-14T10:58:00.002+05:30</published><updated>2008-10-14T11:07:36.051+05:30</updated><title type='text'>Direct Connection of Flex to MySql</title><content type='html'>Yesterday I came across &lt;a href="http://asql.mooska.pl/"&gt;ASQL&lt;/a&gt; which is a complete library for creating a connection between Flex 2 and MySql without using any kind of service (RPC, Messaging, etc.). This is a kind of revolutionary thing in developing data application with Flex 2.&lt;br /&gt;&lt;br /&gt;I tried my hands with it and found really interesting. We can just pass the query string in our Flex code and can get the result from MySql database. This is simply amazing.&lt;br /&gt;&lt;br /&gt;Thanks to Lukasz Blachowicz for creating such a cool library.&lt;br /&gt;&lt;br /&gt;Cheers!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3086728026098108550-3502484284322175436?l=achieveravi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://achieveravi.blogspot.com/feeds/3502484284322175436/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3086728026098108550&amp;postID=3502484284322175436' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3086728026098108550/posts/default/3502484284322175436'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3086728026098108550/posts/default/3502484284322175436'/><link rel='alternate' type='text/html' href='http://achieveravi.blogspot.com/2008/10/direct-connection-of-flex-to-mysql.html' title='Direct Connection of Flex to MySql'/><author><name>Ravi</name><uri>http://www.blogger.com/profile/17126542935371635536</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_TdmWRWSXkHU/ST28MmX6M6I/AAAAAAAAAbc/xp98RdC8ZhQ/S220/DSC01074.JPG'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3086728026098108550.post-1440404957691359803</id><published>2008-09-27T00:22:00.000+05:30</published><updated>2008-09-27T00:45:03.557+05:30</updated><title type='text'>Open office Suite from SUN</title><content type='html'>Yesterday I was prompted by a Java update on my machine.&lt;br /&gt;&lt;br /&gt;After downloading and installing the Java update I came to know that there is a new shortcut icon on my desktop for &lt;strong&gt;OpenOffice&lt;/strong&gt;. That icon redirected me to download openoffice.&lt;br /&gt;&lt;br /&gt;I was surprised to see an open source office suite. It is exactly like Microsoft office suite. There is almost everything you can imagine for an office suite.&lt;br /&gt;&lt;br /&gt;There is WRITER for doc files, IMPRESS for presentations, BASE for database files, CALC for spreadsheets.&lt;br /&gt;&lt;br /&gt;I haven't use this suite though, but I would say SUN ppl have done a great job.&lt;br /&gt;&lt;br /&gt;Cheers!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3086728026098108550-1440404957691359803?l=achieveravi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://achieveravi.blogspot.com/feeds/1440404957691359803/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3086728026098108550&amp;postID=1440404957691359803' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3086728026098108550/posts/default/1440404957691359803'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3086728026098108550/posts/default/1440404957691359803'/><link rel='alternate' type='text/html' href='http://achieveravi.blogspot.com/2008/09/open-office-suite-from-sun.html' title='Open office Suite from SUN'/><author><name>Ravi</name><uri>http://www.blogger.com/profile/17126542935371635536</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_TdmWRWSXkHU/ST28MmX6M6I/AAAAAAAAAbc/xp98RdC8ZhQ/S220/DSC01074.JPG'/></author><thr:total>0</thr:total></entry></feed>
