FLEX2009. 7. 15. 15:34

모든 작업이 끝나고 늦은 호출(point를 가져 오든지)을 할때 이용한다.

유용하므로 꼭 기억 할 것
Posted by lahuman
FLEX2009. 7. 8. 16:41

flex에서 기본적으로 제공 해주는 몇가지 Util을 눈 여겨 봐야 한다.


 var todayJobDp:Array = new Array(e.result);
 var tmp:Array =todayJobDp[0];
 /* 좋은 팁 알아 냈다 ㅋ  */
 for each(var tmpObj:Object in tmp){
   ObjectUtil.toString(tmpObj) // Object의 모든 값을 String 으로  뿌려준다.
   ObjectUtil.getClassInfo(tmpObj).properties //Object의 Key 값만 가져와서 뿌려준다.
  //등등 많다.. 꼭 참고 할 것!!
 }
Posted by lahuman
FLEX2009. 7. 3. 14:00


dependencies에 spring-flex만 넣어도 자동으로 blazeds를 가져오지만,

뭔가 모자르게 가져온다.

그래서 꼭

      
    	org.springframework.flex
    	spring-flex
    	1.0.0.RELEASE
    	jar
    	compile
    
    
    	com.adobe.blazeds
    	blazeds-common
    	3.2.0.3978
    	jar
    	compile
    
    
    	com.adobe.blazeds
    	blazeds-core
    	3.2.0.3978
    	jar
    	compile
    
    
    	com.adobe.blazeds
    	blazeds-opt
    	3.2.0.3978
    	jar
    	compile
    
    
    	com.adobe.blazeds
    	blazeds-proxy
    	3.2.0.3978
    	jar
    	compile
    
    
    	com.adobe.blazeds
    	blazeds-remoting
    	3.2.0.3978
    	jar
    	compile
    
    
    	xalan
    	xalan
    	2.7.1
    	jar
    	compile
    
이렇게 하도록!
Posted by lahuman