All the sources codespage 61
ActionScript
June 11, 2014 am30 03:15
#173
//--------------------------------------------------------------------------
//
// Notes: Child management
//
//--------------------------------------------------------------------------
/*
Although at the level of a Flash DisplayObjectContainer, all
children are equal, in a Flex Container some children are "more
equal than others". (George Orwell, "Animal Farm")
....
*/
Java
June 09, 2014 am30 01:58
#223
catch (OutOfMemoryError e) {
System.gc();
}
Java
June 09, 2014 am30 01:42
#200
public boolean isTrue(boolean b){
if(b != false){
return true;
else if(b != true){
return false;
}else{
isTrue(b);