Planning to give a presentation on cloud computing...!
had a bit of idea what it is...so will try to build on that
Sunday, May 9, 2010
Saturday, May 8, 2010
Dynamic table rendering in coldfusion
Working this weekend on how to create dynamic table in html whch is driven b values from database.
Thursday, May 6, 2010
Exciting new world of Coldfusion
I am loving the exciting new world of coldfusion and the power it brings when you want to build any application rapidly.
Hey!... FYI.... www.adobe.com is built in coldfusion.
Hey!... FYI.... www.adobe.com is built in coldfusion.
Comparing Array Elements
public function compareArrayElements(var:array[]):Boolean
{
var arrayLength = array.length;
if (arrayLength > 0) {
var firstElement = array[0];
for (var i = 1; i < arrayLength; ++i) {
if (array[i] != firstElement) {
return false;
}
}
}
return true;
}
{
var arrayLength = array.length;
if (arrayLength > 0) {
var firstElement = array[0];
for (var i = 1; i < arrayLength; ++i) {
if (array[i] != firstElement) {
return false;
}
}
}
return true;
}
Monday, January 4, 2010
Building custom components in Flex
Found a very good resource on how to build custom components using flex. You can find three different ways to do so:
Building components in MXML
Building components in ActionScript
Building components using code behind
Building components in MXML
Building components in ActionScript
Building components using code behind
Labels:
actionscript,
adobe,
ARP,
code behind,
custom component,
flash,
flex,
RIA
Subscribe to:
Comments (Atom)