Flickr Photos Search

February 22, 2008

Click here to check Flickr Photos Search, that loads my marriage photos by default :)


using root keyword in Flex (AS3 migration)

February 7, 2008

var root_mc:Object = parent.parent.parent.parent.parent.parent.parent.parent
root_mc.functionNAME();

 use the parent as per the level of components used, then u can refer the root_mc to control the objects or to call the functions of the root level elements.


Favourite AS3 removeChild code

February 1, 2008

if(MC) if(MC.parent ) MC.parent.removeChild(MC);