1. ATM 기 위치를 미리 파악해두자!

http://bit.ly/bCVwRH

Cirrus 가 부착되어 있는 ATM 기에서 현금 인출이 가능하다.

2. 효고현

http://www.hyogo-tourism.jp/korea/area/index.html

히메지성, 고시엔, 고베등 정보가 한글로!


크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기
2010/06/21 14:59 2010/06/21 14:59

 <PARAM NAME="AudioStream" VALUE="-1">

 <PARAM NAME="AutoSize" VALUE="-1">
 <PARAM NAME="AutoStart" VALUE="-1">
 <PARAM NAME="AnimationAtStart" VALUE="-1">
 <PARAM NAME="AllowScan" VALUE="-1">
 <PARAM NAME="AllowChangeDisplaySize" VALUE="-1">
 <PARAM NAME="AutoRewind" VALUE="0">
 <PARAM NAME="Balance" VALUE="0">
 <PARAM NAME="BaseURL" VALUE="">
 <PARAM NAME="BufferingTime" VALUE="5">
 <PARAM NAME="CaptioningID" VALUE="">
 <PARAM NAME="ClickToPlay" VALUE="-1">
 <PARAM NAME="CursorType" VALUE="0">
 <PARAM NAME="CurrentPosition" VALUE="0">
 <PARAM NAME="CurrentMarker" VALUE="0">
 <PARAM NAME="DefaultFrame" VALUE="">
 <PARAM NAME="DisplayBackColor" VALUE="0">
 <PARAM NAME="DisplayForeColor" VALUE="16777215">
 <PARAM NAME="DisplayMode" VALUE="0">
 <PARAM NAME="DisplaySize" VALUE="0">
 <PARAM NAME="Enabled" VALUE="-1">
 <PARAM NAME="EnableContextMenu" VALUE="0">
 <PARAM NAME="EnablePositionControls" VALUE="-1">
 <PARAM NAME="EnableFullScreenControls" VALUE="0">
 <PARAM NAME="EnableTracker" VALUE="-1">
 <PARAM NAME="Filename" VALUE="<%=vod%>">
 <PARAM NAME="InvokeURLs" VALUE="-1">
 <PARAM NAME="Language" VALUE="-1">
 <PARAM NAME="Mute" VALUE="0">
 <PARAM NAME="PlayCount" VALUE="1">
 <PARAM NAME="PreviewMode" VALUE="0">
 <PARAM NAME="Rate" VALUE="1">
 <PARAM NAME="SAMILang" VALUE="">
 <PARAM NAME="SAMIStyle" VALUE="">
 <PARAM NAME="SAMIFileName" VALUE="">
 <PARAM NAME="SelectionStart" VALUE="-1">
 <PARAM NAME="SelectionEnd" VALUE="-1">
 <PARAM NAME="SendOpenStateChangeEvents" VALUE="-1">
 <PARAM NAME="SendWarningEvents" VALUE="-1">
 <PARAM NAME="SendErrorEvents" VALUE="-1">
 <PARAM NAME="SendKeyboardEvents" VALUE="0">
 <PARAM NAME="SendMouseClickEvents" VALUE="0">
 <PARAM NAME="SendMouseMoveEvents" VALUE="0">
 <PARAM NAME="SendPlayStateChangeEvents" VALUE="-1">
 <PARAM NAME="ShowCaptioning" VALUE="0">
 <PARAM NAME="ShowControls" VALUE="-1">
 <PARAM NAME="ShowAudioControls" VALUE="-1">
 <PARAM NAME="ShowDisplay" VALUE="0">
 <PARAM NAME="ShowGotoBar" VALUE="0">
 <PARAM NAME="ShowPositionControls" VALUE="-1">
 <PARAM NAME="ShowStatusBar" VALUE="0">
 <PARAM NAME="ShowTracker" VALUE="1">
 <PARAM NAME="TransparentAtStart" VALUE="0">
 <PARAM NAME="VideoBorderWidth" VALUE="0">
 <PARAM NAME="VideoBorderColor" VALUE="0">
 <PARAM NAME="VideoBorder3D" VALUE="0">
 <PARAM NAME="Volume" VALUE="-600">
 <PARAM NAME="WindowlessVideo" VALUE="0">


[출처] object param값|작성자 가이횽

크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)
2010/03/24 17:05 2010/03/24 17:05

아.. 빨리도 한다. 소스 백업..;;



Function.as

//datagrid 에 콤보박스 넣는 부분

private function AddColums(addCount:int):void
{
 var columns:Array = setInitColumn(true);
 
 for(var i:int = 0; i < addCount; i++)
 {
  g_AllColumnArray.push({headerText:"항목선택", dataField:"", xmlIndex:g_ChildIndexOnXml} as Object);
  var col:DataGridColumn = new DataGridColumn("col" + i + 3);
  var colRender:ClassFactory = new ClassFactory(RendererComboBox);
  colRender.properties = {xmlIndex:g_ChildIndexOnXml};
  col.headerRenderer = colRender;
  col.width = 130;
  columns.push(col);
  g_ChildIndexOnXml++;
 }

 dataGrid.columns = columns;
}

//컬럼이 바뀌었을 때

public function columChanged(item:Object):void
{
 if(item != null) g_AllColumnArray[item.xmlIndex] = item;
}


RendererComboBox.mxml

<?xml version="1.0" encoding="utf-8"?>
<mx:HBox height="24" xmlns:mx="http://www.adobe.com/2006/mxml"
  horizontalAlign="center" verticalAlign="middle" horizontalScrollPolicy="off" creationComplete="initApp()">
 <mx:Script>
 <![CDATA[
   private var _xmlIndex:int;
 
  public function set xmlIndex(value:int):void
  {
   _xmlIndex = value;
  }
    
  public function get xmlIndex():int
  {
   return _xmlIndex;
  }

  private function Onchange():void
  {
   var item:Object = new Object();
     
   item.headerText = lvlLabel.selectedItem.label;
   item.dataField = lvlLabel.selectedItem.data;
   item.xmlIndex = _xmlIndex;
   parentDocument.columChanged(item);
  }
 
  private function initApp():void
  {
   lvlLabel.selectedIndex = 0;
  }
 ]]>
    </mx:Script>
 
    <mx:ComboBox width="100%" textAlign="left" id="lvlLabel" cornerRadius="0" height="100%" change="Onchange()">
     <mx:Object label="항목선택" data=""/>
     <mx:Object label="전자메일" data="emailId"/>
     <mx:Object label="회사" data="coNm"/>
     <mx:Object label="부서" data="coDept"/>
     <mx:Object label="직함" data="coHandle"/>
     <mx:Object label="우편번호(회사)" data="coZipCd"/>
     <mx:Object label="회사주소" data="coAddr1"/>
     <mx:Object label="회사전화" data="coTelNo"/>
     <mx:Object label="팩스" data="faxNo"/>
     <mx:Object label="우편번호(집)" data="homeZipCd"/>
     <mx:Object label="집주소" data="homeAddr1"/>
     <mx:Object label="집전화" data="homeTelNo"/>
     <mx:Object label="홈페이지" data="homepageUrl"/>
     <mx:Object label="메신저" data="messenger"/>
    </mx:ComboBox>
</mx:HBox>



크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)
2009/09/21 14:29 2009/09/21 14:29
TAG