Changeset 3ca964460e3aac0dc3aa4f6744345113eb1f0081 for flex/inout-av
- Timestamp:
- 02/27/11 23:52:37 (15 months ago)
- Parents:
- e4e203671406cf05793d8bdd3f90000f29767307
- Children:
- 2f7b6650795d38c763f324a167de2027135b725b
- git-committer:
- Robin Gareus <robin@gareus.org> / 2011-02-28T00:52:37Z+0100
- Files:
-
- 1 modified
-
flex/inout-av/src/main.mxml (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
flex/inout-av/src/main.mxml
r8c0c8a9 r3ca9644 32 32 var argv:Object = Application.application.parameters; 33 33 baseName=argv['name']; 34 server="rtmp:// io.citu.info/recorder";34 server="rtmp://188.165.42.118/recorder"; 35 35 username="4dc84c9279d0fcaa793eecfbc544cdbe7ea5f6e4"; 36 36 password="f78b64c9e0f2ea24fddce2b0d809cb2855fed1a6"; … … 62 62 mic.gain=80; 63 63 64 cam.setMode(384,288, 25);64 cam.setMode(384,288,15); 65 65 /* 66 66 Alert.show('width:'+cam.width+'\n'+ … … 73 73 private function changeSize(event:Event):void { 74 74 if (event.currentTarget.selectedIndex == 0) 75 cam.setMode(160,120, 25);75 cam.setMode(160,120,15); 76 76 if (event.currentTarget.selectedIndex == 1) 77 cam.setMode(384,288, 25);77 cam.setMode(384,288,15); 78 78 if (event.currentTarget.selectedIndex == 2) 79 cam.setMode(400,300, 25);79 cam.setMode(400,300,15); 80 80 if (event.currentTarget.selectedIndex == 3) 81 cam.setMode(640,480, 25);81 cam.setMode(640,480,15); 82 82 if (event.currentTarget.selectedIndex == 4) 83 cam.setMode(768,576, 25);83 cam.setMode(768,576,15); 84 84 if (event.currentTarget.selectedIndex == 5) 85 cam.setMode(800,600, 25);85 cam.setMode(800,600,15); 86 86 87 87 Alert.show( … … 266 266 <mx:Text width="100%"> 267 267 <mx:htmlText> 268 <![CDATA[The ID needs to match a project-name created in the <font color="#0000ff"><a href="http://wiki.citu.fr/signup">Wiki</a></font>.<br/>View a list of <font color="#0000ff"><a href="http://wiki.citu.info/projects">registered projects</a></font> .]]>268 <![CDATA[The ID needs to match a project-name created in the <font color="#0000ff"><a href="http://wiki.citu.fr/signup">Wiki</a></font>.<br/>View a list of <font color="#0000ff"><a href="http://wiki.citu.info/projects">registered projects</a></font> or <font color="#0000ff"><a href="http://wiki.citu.info/inout/identifiers">read more</a></font> on how IDs work.]]> 269 269 </mx:htmlText> 270 270 </mx:Text> … … 277 277 <mx:Text width="180"> 278 278 <mx:htmlText> 279 <![CDATA[Step 2: Set up camera (right click -> settings )]]>279 <![CDATA[Step 2: Set up camera (right click -> settings ; camera-tab; Select your camera from the drop-down menu)]]> 280 280 </mx:htmlText> 281 281 </mx:Text> … … 295 295 </mx:VBox> 296 296 </mx:Box> 297 298 297 </mx:Application>
