Changeset 19567

Show
Ignore:
Timestamp:
09/19/08 06:44:27 (4 months ago)
Author:
kan
Message:

カメラを選択可能にした

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • platform/air/wasaco/src/imageWindow.mxml

    r19455 r19567  
    11<?xml version="1.0" encoding="utf-8"?> 
    2 <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="318" height="300" > 
     2<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="318" height="354" > 
    33        <mx:Script> 
    44                <![CDATA[ 
     
    1212                         
    1313                        private function init():void { 
     14                                cameraSel.dataProvider = Camera.names; 
    1415                                var camera:Camera = Camera.getCamera(); 
    1516                                 
     
    2122 
    2223                                loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loaderComplete); 
     24            } 
     25             
     26            private function selectCamera():void { 
     27                var camera:Camera = Camera.getCamera(cameraSel.selectedIndex.toString()); 
     28 
     29                                if (camera) { 
     30                                        camera_fg = true; 
     31                                        camera.setMode(video.width, video.height, 30); 
     32                        video.attachCamera(camera); 
     33                            } 
    2334            } 
    2435                         
     
    8394        <mx:TextInput x="10" y="10" width="299" id="stat"/> 
    8495        <mx:Button x="195" y="38" label="Cancel" click="cancel();" width="61" fontSize="9"/> 
    85         <mx:TabNavigator id="srcTab" x="10" y="68" width="299" height="221"> 
     96        <mx:TabNavigator id="srcTab" x="10" y="68" width="299" height="276"> 
    8697                <mx:Canvas label="カメラ" width="100%" height="100%" creationComplete="init()"> 
    87                         <mx:VideoDisplay id="video" x="10" y="10" width="277" height="168" /> 
     98                        <mx:VideoDisplay id="video" x="10" y="40" width="277" height="192" /> 
     99                        <mx:ComboBox id="cameraSel" x="10" y="10" width="277" change="selectCamera()"></mx:ComboBox> 
    88100                </mx:Canvas> 
    89101                <mx:Canvas label="ファイルアップロード" width="100%" height="100%">