Minor Updates to coldfusiondocs.com

On March 23, 2008, in ColdFusion, Flex, by Anuj Gakhar

I have added a new category to the coldfusion documentation at www.coldfusiondocs.com. The category is called ‘CF8 Javascript Functions’ and it lists all the available JS functions in CF8. There are 33 functions in total, however, I wouldnt mind adding any ‘undocumented’ JS functions to the list, so if you know of any, feel free […]

 

Adobe releases Flex 3.0 and AIR 1.0

On February 25, 2008, in AIR, Flex, Adobe, by Anuj Gakhar

I am a bit late in blogging about this as the news is all over the blogospher by now but its Monday morning and I just found this out. Adobe have released Flex 3.0 and AIR 1.0 . This was a much awaited news as far as I know. The good thing is that they […]

Tagged with:  

Flex powered VW site launched!

On February 12, 2008, in Web Development, Flex, by Anuj Gakhar

A friend of mine (who happens to be on the dev team for this) just told me that VW UK have launched the Flex version of their site. It is one of the first flex technology applications in the very customer-facing, highly branded websites! Here is the URL http://www.vw.co.uk I checked out the website, its […]

Tagged with:  

Possible bug with TabNavigator?

On January 22, 2008, in Flex, by Anuj Gakhar

Ok, I have spent quite some time on this now and I am getting inclined towards the thinking that this might actually be a bug.I have a TabNavigator component in my code and I want to be able to run some code each time a particular tab is clicked. The obvious way to do that […]

Tagged with:  

Coldfusiondocs.com Updates

On January 13, 2008, in ColdFusion, Flex, by Anuj Gakhar

I had some free time this weekend so I decided to work on some of the requested features of coldfusiondocs.com. I could not get a lot done but here is what I have done :- The search now allows for a “type search” which means you can now search for e.g. Application framework tags, data […]

Tagged with:  

Flex : How to have tooltip on every Row of DataGrid

On January 13, 2008, in Flex, by Anuj Gakhar

If you have a DatGrid and you want to display row specific data on mouseOver, here is how this can be done. The first step is to enable showDataTips property for every DataGridColumn that you want to enable this functionality on. Secondly, you need to have a dataTipFunction function on the DatGrid itself. Because dataTipFunction […]

Tagged with:  

Must have Eclipse Plugins for CF’ers

On January 11, 2008, in Flex Builder, Eclipse, by Anuj Gakhar

Whether its FlexBuilder or CFEclipse, Eclipse is what I use all day long. I was thinking of compiling a list of really useful Eclipse plugins from the perspective of a Coldfusion developer. Here are the ones that I use :- CFEclipse – Ofcourse! XmlBuddy – Allows me to manage XML files better. Subclipse – Subversion […]

Tagged with:  

Adobe Flex and AIR Pre-Release Tour comes to London

On January 10, 2008, in Flex, Adobe, by Anuj Gakhar

As the subject says, January 24th is the date for this event. Although getting to London takes me not more than 30 mins and my schedule for 24th is not very busy as well, so, unless any unforeseen problems, I am going to attend this event.

Tagged with:  

Flex : How to remove Duplicates from an Array

On January 7, 2008, in Flex, by Anuj Gakhar

If you have an Array and you want to get rid of duplicates from the array, here is a little function you can use to achieve the same. [xml] private function removeDuplicates(arr:Array):Array { var currentValue:String = ""; var tempArray:Array = new Array(); arr.sort(Array.CASEINSENSITIVE); arr.forEach( function(item:*, index:uint, array:Array):void { if (currentValue != item) { tempArray.push(item); currentValue= […]

Tagged with:  

How to manually generate RSL file for Flash Player

On January 4, 2008, in Flex, by Anuj Gakhar

In my last post , I spoke about how we can exclude the RSL files from Flex SWF generation. So, I uploaded framework_3.0.189825.swz file to the same folder where the SWF sits on the server. This file can be found under C:\Program Files\Adobe\Flex Builder 3\sdks\3.0.0\frameworks\rsls assuming that you have the default installation. However, a few […]

Tagged with:  
© 2011 Anuj Gakhar