Simple is best

Posted by 미쉬마르

jQuery Ajax

2009. 11. 25. 13:16 : 프로그래밍/JavaScript
jQuery로 플러그인 aJax 사용하기 (jquery.from.js) Html 헤더에 js를 추가한다. Script 부분

HTML 부분
Posted by 미쉬마르
http://www.springbyexample.org/

멋진곳이다.. 예제들이 왕창?
Posted by 미쉬마르

1. 기존 플래쉬 플레이어 삭제
2. 플래쉬 플레이서 디버그 설치


http://www.adobe.com/support/flashplayer/downloads.html 가서 받으면 된다..
Posted by 미쉬마르

Python 관련

2009. 8. 25. 23:32 : 프로그래밍/Django
Python 사이트
http://turing.cafe24.com/ 참으로 쉽게 잘 나와있다.. 흐흐
Posted by 미쉬마르

<?xml version="1.0" encoding="utf-8"?>
<mx:Panel xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" width="100%"
cornerRadius="10"
  creationComplete="addCheckBox()"
  >

 <mx:Script>
  <![CDATA[

   import mx.controls.Alert;
   import mx.controls.CheckBox;
    

   /** 타이틀위에 체크박스 붙이기 **/
   private function addCheckBox():void {
    var checkBox:CheckBox = new CheckBox();
    checkBox.x = (this.titleBar.width - checkBox.width)-10;
    checkBox.y = (this.titleBar.height - checkBox.height) / 2;
    checkBox.addEventListener(Event.CHANGE, checkBoxChangeEvent);
    this.titleBar.addChild(checkBox);
   }
   
   public function checkBoxChangeEvent(event:Event):void {
    Alert.show("변경");
   }
  ]]>
 </mx:Script>
 
</mx:Panel>

위치는 마음대로.. ㅡ.ㅡ;;

Posted by 미쉬마르
http://www.adobeairtutorials.com/





Posted by 미쉬마르
http://www.adobe.com/cfusion/entitlement/index.cfm?e=flex3email





Posted by 미쉬마르

 public void paramHeader(HttpServletRequest request) {
        Enumeration paramNames = request.getParameterNames();
        while(paramNames.hasMoreElements()) {
            String paramName = (String)paramNames.nextElement();


            System.out.println("Header : " + paramName);
       
            String[] paramValues = request.getParameterValues(paramName);
       
                if (paramValues.length == 1) {
                    String paramValue = paramValues[0];
                    if (paramValue.length() == 0)
                        System.out.println("Value : No Value");
                    else
                        System.out.println(paramValue);
                } else {
                    for(int i=0; i<paramValues.length; i++) {
                        System.out.println("Value : " + paramValues[i]);
                    }
                }
            }
        }

Posted by 미쉬마르
Posted by 미쉬마르