flash : update mic management.
--- a/.hgignore Mon Jun 04 19:18:51 2012 +0200
+++ b/.hgignore Tue Jun 05 12:49:37 2012 +0200
@@ -1,3 +1,5 @@
syntax: regexp
-^\.project$
\ No newline at end of file
+^\.project$
+syntax: regexp
+^script/record_mic/record_mic/bin$
\ No newline at end of file
--- a/script/record_mic/record_mic.as Mon Jun 04 19:18:51 2012 +0200
+++ b/script/record_mic/record_mic.as Tue Jun 05 12:49:37 2012 +0200
@@ -1,1 +1,1 @@
-package {
import flash.events.MouseEvent;
import flash.events.NetStatusEvent;
import flash.events.IOErrorEvent;
import flash.events.SecurityErrorEvent;
import flash.events.AsyncErrorEvent;
import flash.events.ErrorEvent;
import flash.events.ActivityEvent;
import flash.events.Event;
import flash.display.MovieClip;
import flash.display.SimpleButton;
import flash.display.Sprite;
import flash.text.TextField;
import flash.system.Security;
import flash.media.Microphone;
import flash.net.NetConnection;
import flash.net.NetStream;
import flash.utils.getTimer;
import fl.controls.ProgressBar;
import fl.controls.ProgressBarDirection;
import fl.controls.ProgressBarMode;
public class record_mic extends MovieClip {
private var t:TextField;
private var r:SimpleButton;
private var s:Sprite;
private var p:Sprite;
private var pb:ProgressBar;
private var urlServer:String = "rtmp://media.iri.centrepompidou.fr/ddc_micro_record";
private var nc:NetConnection;
private var ns:NetStream;
private var ns2:NetStream;
private var mic:Microphone;
private var filename:String;
private var recordStopped:Boolean = false;
public function record_mic() {
// constructor code
Security.allowDomain("*");
Security.allowInsecureDomain("*");
t = _t;
r = _recordBtn;
s = _stopBtn;
p = _playBtn;
pb = _pb;
trace("t = " + t + ", r = " + r + ", s = " + s + ", p = " + p + ", pb = " + pb);
//r.buttonMode = r.useHandCursor =
s.buttonMode = s.useHandCursor = p.buttonMode = p.useHandCursor = true;
pb.mode = ProgressBarMode.MANUAL;
r.addEventListener(MouseEvent.CLICK, startRecord);
s.addEventListener(MouseEvent.CLICK, stopRecord);
p.addEventListener(MouseEvent.CLICK, playRecord);
}
private function startRecord(e:MouseEvent=null):void{
trace("startRecord nc = " + nc);
if (nc==null){
trace(" startRecord 2");
nc = new NetConnection();
nc.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler, false, 0, true);
nc.addEventListener(IOErrorEvent.IO_ERROR, errorHandler, false, 0, true);
nc.addEventListener(SecurityErrorEvent.SECURITY_ERROR, errorHandler, false, 0, true);
nc.addEventListener(AsyncErrorEvent.ASYNC_ERROR, errorHandler, false, 0, true);
nc.connect(urlServer);
}
else{
publish();
}
}
private function errorHandler(e:*=null):void {
trace("errorHandler");
closeStream();
}
private function closeStream():void{
trace("closeStream");
if(ns!=null){
trace(" ns.close()");
ns.close();
ns = null;
}
}
private function netStatusHandler(event:NetStatusEvent):void {
trace("netStatusHandler : " + event.info.code);
switch (event.info.code) {
case 'NetConnection.Connect.Success':
publish();
break;
case 'NetConnection.Connect.Failed':
case 'NetConnection.Connect.Reject':
case 'NetConnection.Connect.Closed':
//closeStream();
break;
}
}
// send data over rtmp
private function publish():void {
trace("publish (ns==null && nc!=null && nc.connected) = " + (ns==null && nc!=null && nc.connected));
if(nc!=null && nc.connected) {
trace(" publish 2");
ns = new NetStream(nc);
ns.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler, false, 0, true);
ns.addEventListener(IOErrorEvent.IO_ERROR, errorHandler, false, 0, true);
ns.addEventListener(AsyncErrorEvent.ASYNC_ERROR, errorHandler, false, 0, true);
// informs the server to record what it receives
// in fact file name is passed as the user name (the server is meant to record everything it has to in a file named from the user name)
filename = "r_" + now();
trace("filename = " + filename);
ns.publish(filename, 'record');
mic = Microphone.getMicrophone(-1);
mic.rate = 22;
mic.gain = 50;
// mic.addEventListener(ActivityEvent.ACTIVITY, activity);
mic.addEventListener(ActivityEvent.ACTIVITY, runMicActivity);
mic.setUseEchoSuppression(true);
ns.attachAudio(mic);
}
}
// stop the recording of audio to the stream
private function stopRecord(e:*=null):void{
trace("stopRecord (ns!=null) = " + (ns!=null));
if(ns!=null){
trace(" stopRecord 2");
recordStopped = true;
ns.play(false); // flushes the recording buffer
ns.close();
}
}
// plays back the audio that was recorded
private function playRecord(e:*=null):void{
trace("playRecord (ns!=null && recordStopped) = " + (ns!=null && recordStopped));
if(recordStopped){
trace(" playRecord 2");
ns2 = new NetStream(nc);
ns2.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler2, false, 0, true);
ns2.addEventListener(IOErrorEvent.IO_ERROR, errorHandler2, false, 0, true);
ns2.addEventListener(AsyncErrorEvent.ASYNC_ERROR, errorHandler2, false, 0, true);
ns2.play(filename);
}
}
private function netStatusHandler2(event:NetStatusEvent):void {
trace("netStatusHandler 2 : " + event.info.code);
}
private function errorHandler2(e:*=null):void {
trace("errorHandler 2");
closeStream2();
}
private function closeStream2():void{
trace("closeStream 2");
/*if(ns2!=null){
trace(" ns.close()");
ns2.close();
ns2 = null;
}*/
}
// Now in string
private function now():String{
var d:Date = new Date();
var m:uint = d.month + 1; // because Date.month begins at 0
return d.fullYear + (m<10?("0"+m):m) + (d.date<10?("0"+d.date):d.date) + (d.hours<10?("0"+d.hours):d.hours) + (d.minutes<10?("0"+d.minutes):d.minutes) + (d.seconds<10?("0"+d.seconds):d.seconds);
}
// sets the module ready to record mic activity changes
private function runMicActivity(event:ActivityEvent):void {
trace("runMicActivity");
addEventListener(Event.ENTER_FRAME, showMicActivity);
}
// updates the progress bar relating to mic activity
private function showMicActivity(e:Event):void {
trace("showMicActivity res = " + (mic.activityLevel*mic.gain/100));
//pb.setProgress(mic.activityLevel*mic.gain/100 ,100);
pb.setProgress(mic.activityLevel,100);
}
}
}
\ No newline at end of file
+package {
import flash.events.MouseEvent;
import flash.events.NetStatusEvent;
import flash.events.IOErrorEvent;
import flash.events.SecurityErrorEvent;
import flash.events.AsyncErrorEvent;
import flash.events.ErrorEvent;
import flash.events.ActivityEvent;
import flash.events.Event;
import flash.display.MovieClip;
import flash.display.SimpleButton;
import flash.display.Sprite;
import flash.text.TextField;
import flash.system.Security;
import flash.media.Microphone;
import flash.net.NetConnection;
import flash.net.NetStream;
import flash.utils.getTimer;
import fl.controls.ProgressBar;
import fl.controls.ProgressBarDirection;
import fl.controls.ProgressBarMode;
import flash.utils.Timer;
import flash.events.TimerEvent;
import fl.controls.Slider;
import fl.events.SliderEvent;
public class record_mic extends MovieClip {
private var t:TextField;
private var r:SimpleButton;
private var s:Sprite;
private var p:Sprite;
private var urlServer:String = "rtmp://media.iri.centrepompidou.fr/ddc_micro_record";
private var nc:NetConnection;
private var ns:NetStream;
private var ns2:NetStream;
private var mic:Microphone;
private var filename:String;
private var recordStopped:Boolean = false;
// Draw mic feedback
private var pb:ProgressBar;
private var activityCurve:Sprite;
private var micGain:Slider;
// Variables for the activity curve
private var xInc:int = 0;
private var xSpeed:int = 2;
private var activityWidth:Number;
// Intervals used to draw the curve et keep track of the duration of the recording
private var drawCurve:Number;
private var timecodeInterval:Number;
private var timecode:Number = 0;
public function record_mic() {
// constructor code
Security.allowDomain("*");
Security.allowInsecureDomain("*");
//t = _t;
r = _recordBtn;
s = _stopBtn;
p = _playBtn;
pb = _pb;
activityWidth = _act.width;
activityCurve = _act._activityCurve;
micGain = _micGain;
trace("t = " + t + ", r = " + r + ", s = " + s + ", p = " + p + ", pb = " + pb);
//r.buttonMode = r.useHandCursor =
s.buttonMode = s.useHandCursor = p.buttonMode = p.useHandCursor = true;
pb.mode = ProgressBarMode.MANUAL;
r.addEventListener(MouseEvent.CLICK, startRecord);
s.addEventListener(MouseEvent.CLICK, stopRecord);
p.addEventListener(MouseEvent.CLICK, playRecord);
}
private function startRecord(e:MouseEvent=null):void{
trace("startRecord nc = " + nc);
if (nc==null){
trace(" startRecord 2");
nc = new NetConnection();
nc.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler, false, 0, true);
nc.addEventListener(IOErrorEvent.IO_ERROR, errorHandler, false, 0, true);
nc.addEventListener(SecurityErrorEvent.SECURITY_ERROR, errorHandler, false, 0, true);
nc.addEventListener(AsyncErrorEvent.ASYNC_ERROR, errorHandler, false, 0, true);
nc.connect(urlServer);
}
else{
publish();
}
}
private function errorHandler(e:*=null):void {
trace("errorHandler");
closeStream();
}
private function closeStream():void{
trace("closeStream");
if(ns!=null){
trace(" ns.close()");
ns.close();
ns = null;
}
}
private function netStatusHandler(event:NetStatusEvent):void {
trace("netStatusHandler : " + event.info.code);
switch (event.info.code) {
case 'NetConnection.Connect.Success':
publish();
break;
case 'NetConnection.Connect.Failed':
case 'NetConnection.Connect.Reject':
case 'NetConnection.Connect.Closed':
//closeStream();
break;
}
}
// send data over rtmp
private function publish():void {
trace("publish (ns==null && nc!=null && nc.connected) = " + (ns==null && nc!=null && nc.connected));
if(nc!=null && nc.connected) {
trace(" publish 2");
ns = new NetStream(nc);
ns.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler, false, 0, true);
ns.addEventListener(IOErrorEvent.IO_ERROR, errorHandler, false, 0, true);
ns.addEventListener(AsyncErrorEvent.ASYNC_ERROR, errorHandler, false, 0, true);
// informs the server to record what it receives
// in fact file name is passed as the user name (the server is meant to record everything it has to in a file named from the user name)
filename = "r_" + now();
trace("filename = " + filename);
ns.publish(filename, 'record');
mic = Microphone.getMicrophone(-1);
mic.rate = 22;
micGain.minimum = 0;
micGain.maximum = 100;
micGain.value = mic.gain = 50;
micGain.addEventListener(SliderEvent.CHANGE, onSliderChange);
// mic.addEventListener(ActivityEvent.ACTIVITY, activity);
mic.addEventListener(ActivityEvent.ACTIVITY, runMicActivity);
mic.setUseEchoSuppression(true);
ns.attachAudio(mic);
}
}
// stop the recording of audio to the stream
private function stopRecord(e:*=null):void{
trace("stopRecord (ns!=null) = " + (ns!=null));
if(ns!=null){
trace(" stopRecord 2");
recordStopped = true;
ns.play(false); // flushes the recording buffer
ns.close();
}
}
// plays back the audio that was recorded
private function playRecord(e:*=null):void{
trace("playRecord (ns!=null && recordStopped) = " + (ns!=null && recordStopped));
if(recordStopped){
trace(" playRecord 2");
ns2 = new NetStream(nc);
ns2.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler2, false, 0, true);
ns2.addEventListener(IOErrorEvent.IO_ERROR, errorHandler2, false, 0, true);
ns2.addEventListener(AsyncErrorEvent.ASYNC_ERROR, errorHandler2, false, 0, true);
ns2.play(filename);
}
}
private function netStatusHandler2(event:NetStatusEvent):void {
trace("netStatusHandler 2 : " + event.info.code);
}
private function errorHandler2(e:*=null):void {
trace("errorHandler 2");
closeStream2();
}
private function closeStream2():void{
trace("closeStream 2");
/*if(ns2!=null){
trace(" ns.close()");
ns2.close();
ns2 = null;
}*/
}
// Now in string
private function now():String{
var d:Date = new Date();
var m:uint = d.month + 1; // because Date.month begins at 0
return d.fullYear + (m<10?("0"+m):m) + (d.date<10?("0"+d.date):d.date) + (d.hours<10?("0"+d.hours):d.hours) + (d.minutes<10?("0"+d.minutes):d.minutes) + (d.seconds<10?("0"+d.seconds):d.seconds);
}
// sets the module ready to record mic activity changes
private function runMicActivity(event:ActivityEvent):void {
trace("runMicActivity");
addEventListener(Event.ENTER_FRAME, showMicActivity);
// Start activity curve feedback, every second
activityCurve.graphics.clear();
activityCurve.graphics.lineStyle(1, 0xc4c4c4, 1);
activityCurve.graphics.moveTo(0, 20);
activityCurve.graphics.beginFill(0xc4c4c4, 100);
xInc = 0;
activityCurve.x = 1;
var tmr:Timer = new Timer(1000, 1000);
tmr.addEventListener(TimerEvent.TIMER_COMPLETE, onTimerComplete);
tmr.addEventListener(TimerEvent.TIMER, drawSoundCurve);
tmr.start();
}
// updates the progress bar relating to mic activity
private function showMicActivity(e:Event):void {
//trace("showMicActivity res = " + (mic.activityLevel*mic.gain/100));
//pb.setProgress(mic.activityLevel*mic.gain/100 ,100);
pb.setProgress(mic.activityLevel,100);
}
// updates the actiity curve relating to mic activity
private function drawSoundCurve(e:TimerEvent):void {
trace("drawSoundCurve mic.activityLevel = " + mic.activityLevel + ", mic.gain = " + mic.gain + ", h = " + (19*mic.activityLevel/100));
activityCurve.graphics.lineTo(xInc, 19 - (19*mic.activityLevel/100));
activityCurve.graphics.lineTo(xInc, 19);
if(xInc>activityWidth){
activityCurve.x -= xSpeed;
}
xInc += xSpeed;
}
private function onTimerComplete(e:TimerEvent):void {
trace("onTimerEnd");
}
// Updates mic gain
private function onSliderChange(e:SliderEvent):void {
trace("onSliderChange");
mic.gain = micGain.value;
}
}
}
\ No newline at end of file
Binary file script/record_mic/record_mic.swf has changed
--- a/script/record_mic/record_mic/DOMDocument.xml Mon Jun 04 19:18:51 2012 +0200
+++ b/script/record_mic/record_mic/DOMDocument.xml Tue Jun 05 12:49:37 2012 +0200
@@ -1,8 +1,10 @@
-<DOMDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" width="220" height="140" frameRate="12" currentTimeline="1" xflVersion="2.0" creatorInfo="Adobe Flash Professional CS5" platform="Macintosh" versionInfo="Saved by Adobe Flash Macintosh 11.0 build 489" majorVersion="11" buildNumber="489" viewAngle3D="23.524879919254" nextSceneIdentifier="2" playOptionsPlayLoop="false" playOptionsPlayPages="false" playOptionsPlayFrameActions="false">
+<DOMDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" width="220" height="140" frameRate="12" currentTimeline="1" xflVersion="2.0" creatorInfo="Adobe Flash Professional CS5" platform="Macintosh" versionInfo="Saved by Adobe Flash Macintosh 11.0 build 489" majorVersion="11" buildNumber="489" rulerVisible="true" viewAngle3D="23.524879919254" nextSceneIdentifier="2" playOptionsPlayLoop="false" playOptionsPlayPages="false" playOptionsPlayFrameActions="false">
<folders>
<DOMFolderItem name="Component Assets" itemID="44e488a0-000016d6"/>
<DOMFolderItem name="Component Assets/_private" itemID="4573a4bc-000003c6"/>
<DOMFolderItem name="Component Assets/ProgressBarSkins" itemID="44c91c22-00000249"/>
+ <DOMFolderItem name="Component Assets/Shared" itemID="44f892ff-0000001e"/>
+ <DOMFolderItem name="Component Assets/SliderSkins" itemID="44c91c94-00000267"/>
</folders>
<fonts>
<DOMFontItem name="ArialRegular" itemID="4fc8c261-0000029e" font="ArialMT" size="0" id="1" sourceLastImported="1338557025" embedRanges="9999"/>
@@ -98,7 +100,6 @@
</DOMCompiledClipItem>
<DOMBitmapItem name="record.png" itemID="4fcc8c08-000002a2" sourceExternalFilepath="./LIBRARY/record.png" sourceLastImported="1338804437" sourcePlatform="macintosh" externalFileSize="7399" originalCompressionType="lossless" quality="50" href="record.png" bitmapDataHRef="M 11 1338805256.dat" frameRight="1900" frameBottom="1900"/>
<DOMBitmapItem name="record2.png" itemID="4fcc8c08-000002a7" sourceExternalFilepath="./LIBRARY/record2.png" sourceLastImported="1338804430" sourcePlatform="macintosh" externalFileSize="7554" originalCompressionType="lossless" quality="50" href="record2.png" bitmapDataHRef="M 12 1338805256.dat" frameRight="1900" frameBottom="1900"/>
- <DOMBitmapItem name="Screen Shot 2012-06-04 at 12.33.03 PM.png" itemID="4fcc8f19-00000353" sourceExternalFilepath="./LIBRARY/Screen Shot 2012-06-04 at 12.33.03 PM.png" sourceLastImported="1338805986" sourcePlatform="macintosh" useImportedJPEGData="false" compressionType="lossless" originalCompressionType="lossless" quality="50" href="Screen Shot 2012-06-04 at 12.33.03 PM.png" bitmapDataHRef="M 13 1338806026.dat" frameRight="4860" frameBottom="3240"/>
</media>
<symbols>
<Include href="ActivityProgress.xml" loadImmediate="false"/>
@@ -106,30 +107,39 @@
<Include href="Component Assets/ProgressBarSkins/ProgressBar_barSkin.xml"/>
<Include href="Component Assets/ProgressBarSkins/ProgressBar_indeterminateSkin.xml"/>
<Include href="Component Assets/ProgressBarSkins/ProgressBar_trackSkin.xml"/>
+ <Include href="Component Assets/Shared/focusRectSkin.xml"/>
+ <Include href="Component Assets/SliderSkins/SliderThumb_disabledSkin.xml"/>
+ <Include href="Component Assets/SliderSkins/SliderThumb_downSkin.xml"/>
+ <Include href="Component Assets/SliderSkins/SliderThumb_overSkin.xml"/>
+ <Include href="Component Assets/SliderSkins/SliderThumb_upSkin.xml"/>
+ <Include href="Component Assets/SliderSkins/SliderTick_skin.xml"/>
+ <Include href="Component Assets/SliderSkins/SliderTrack_disabledSkin.xml"/>
+ <Include href="Component Assets/SliderSkins/SliderTrack_skin.xml"/>
+ <Include href="EmptyMC.xml" loadImmediate="false"/>
<Include href="PlayBtn.xml" loadImmediate="false"/>
<Include href="ProgressBar.xml"/>
<Include href="RecordBtn.xml" itemIcon="0" loadImmediate="false"/>
+ <Include href="Slider.xml"/>
<Include href="StopBtn.xml" loadImmediate="false"/>
- <Include href="Symbole 1.xml" loadImmediate="false"/>
</symbols>
<timelines>
- <DOMTimeline name="Séquence 1">
+ <DOMTimeline name="Séquence 1" guides='<guidelines><guideline direction="v">110</guideline></guidelines>'>
<layers>
- <DOMLayer name="activity" color="#FF800A" current="true" isSelected="true" autoNamed="false">
+ <DOMLayer name="activity" color="#FF800A" autoNamed="false">
<frames>
<DOMFrame index="0" keyMode="9728">
<elements>
- <DOMSymbolInstance libraryItemName="ActivityProgress" name="_act" centerPoint3DX="98" centerPoint3DY="21.5">
+ <DOMSymbolInstance libraryItemName="ActivityProgress" name="_act" centerPoint3DX="108" centerPoint3DY="22.5">
<matrix>
- <Matrix tx="67" ty="12"/>
+ <Matrix tx="77" ty="13"/>
</matrix>
<transformationPoint>
<Point x="31" y="9.5"/>
</transformationPoint>
</DOMSymbolInstance>
- <DOMComponentInstance libraryItemName="ProgressBar" name="_pb" centerPoint3DX="145.55" centerPoint3DY="22.45" uniqueID="4">
+ <DOMComponentInstance libraryItemName="ProgressBar" name="_pb" centerPoint3DX="155.55" centerPoint3DY="23.45" uniqueID="4">
<matrix>
- <Matrix a="0" b="-0.139999389648438" c="1.49998474121094" d="0" tx="142.1" ty="33.1"/>
+ <Matrix a="0" b="-0.139999389648438" c="1.49998474121094" d="0" tx="152.1" ty="34.1"/>
</matrix>
<transformationPoint>
<Point x="75" y="2"/>
@@ -154,35 +164,61 @@
</property>
]]></parametersAsXML>
</DOMComponentInstance>
+ <DOMComponentInstance libraryItemName="Slider" name="_micGain" centerPoint3DX="74.5" centerPoint3DY="22" uniqueID="2">
+ <matrix>
+ <Matrix a="0" b="0.3125" c="1" d="0" tx="73" ty="9.5"/>
+ </matrix>
+ <transformationPoint>
+ <Point x="40" y="1.5"/>
+ </transformationPoint>
+ <dataBindingXML><![CDATA[<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Séquence 1' oldCopiedComponentPath='2'>
+</component>
+]]></dataBindingXML>
+ <parametersAsXML><![CDATA[ <property id="direction">
+ <Inspectable name="direction" variable="direction" category="" verbose="0" defaultValue="vertical" enumeration="horizontal,vertical" type="List"/>
+ </property>
+ <property id="enabled">
+ <Inspectable name="enabled" variable="enabled" category="" verbose="1" defaultValue="true" type="Boolean"/>
+ </property>
+ <property id="liveDragging">
+ <Inspectable name="liveDragging" variable="liveDragging" category="" verbose="0" defaultValue="false" type="Boolean"/>
+ </property>
+ <property id="maximum">
+ <Inspectable name="maximum" variable="maximum" category="" verbose="0" defaultValue="100.00" type="Number"/>
+ </property>
+ <property id="minimum">
+ <Inspectable name="minimum" variable="minimum" category="" verbose="0" defaultValue="0" type="Number"/>
+ </property>
+ <property id="snapInterval">
+ <Inspectable name="snapInterval" variable="snapInterval" category="" verbose="0" defaultValue="0" type="Number"/>
+ </property>
+ <property id="tickInterval">
+ <Inspectable name="tickInterval" variable="tickInterval" category="" verbose="0" defaultValue="0" type="Number"/>
+ </property>
+ <property id="value">
+ <Inspectable name="value" variable="value" category="" verbose="0" defaultValue="0" type="Number"/>
+ </property>
+ <property id="visible">
+ <Inspectable name="visible" variable="visible" category="" verbose="1" defaultValue="true" type="Boolean"/>
+ </property>
+]]></parametersAsXML>
+ </DOMComponentInstance>
</elements>
</DOMFrame>
</frames>
</DOMLayer>
- <DOMLayer name="btns" color="#4FFF4F" autoNamed="false">
+ <DOMLayer name="btns" color="#4FFF4F" current="true" isSelected="true" autoNamed="false">
<frames>
<DOMFrame index="0" keyMode="9728">
<elements>
<DOMSymbolInstance libraryItemName="RecordBtn" name="_recordBtn" symbolType="button">
<matrix>
- <Matrix tx="65" ty="44"/>
+ <Matrix tx="63" ty="44"/>
</matrix>
<transformationPoint>
<Point x="30" y="22"/>
</transformationPoint>
</DOMSymbolInstance>
- <DOMDynamicText name="_t" width="67" height="51" lineType="multiline">
- <matrix>
- <Matrix tx="38" ty="63"/>
- </matrix>
- <textRuns>
- <DOMTextRun>
- <characters>t</characters>
- <textAttrs>
- <DOMTextAttrs aliasText="false" bitmapSize="240" face="ArialMT"/>
- </textAttrs>
- </DOMTextRun>
- </textRuns>
- </DOMDynamicText>
<DOMSymbolInstance libraryItemName="StopBtn" name="_stopBtn" centerPoint3DX="194" centerPoint3DY="71">
<matrix>
<Matrix tx="178" ty="55"/>
@@ -206,19 +242,7 @@
<DOMLayer name="bg" color="#9933CC" autoNamed="false" visible="false">
<frames>
<DOMFrame index="0" keyMode="9728">
- <elements>
- <DOMSymbolInstance libraryItemName="Symbole 1" name="" centerPoint3DX="109" centerPoint3DY="75">
- <matrix>
- <Matrix tx="-12.5" ty="-6"/>
- </matrix>
- <transformationPoint>
- <Point x="121.5" y="81"/>
- </transformationPoint>
- <color>
- <Color alphaMultiplier="0.1015625"/>
- </color>
- </DOMSymbolInstance>
- </elements>
+ <elements/>
</DOMFrame>
</frames>
</DOMLayer>
@@ -528,6 +552,14 @@
</extendedSwatchLists>
<PrinterSettings platform="macintosh"/>
<publishHistory>
+ <PublishItem publishSize="184630" publishTime="1338892772"/>
+ <PublishItem publishSize="189633" publishTime="1338892081"/>
+ <PublishItem publishSize="189607" publishTime="1338892028"/>
+ <PublishItem publishSize="189607" publishTime="1338891955"/>
+ <PublishItem publishSize="189607" publishTime="1338891888"/>
+ <PublishItem publishSize="189640" publishTime="1338891838"/>
+ <PublishItem publishSize="189609" publishTime="1338891768"/>
+ <PublishItem publishSize="189613" publishTime="1338891524"/>
<PublishItem publishSize="189227" publishTime="1338829861"/>
<PublishItem publishSize="189246" publishTime="1338829743"/>
<PublishItem publishSize="189254" publishTime="1338829700"/>
@@ -540,14 +572,6 @@
<PublishItem publishSize="171474" publishTime="1338828956"/>
<PublishItem publishSize="172980" publishTime="1338806219"/>
<PublishItem publishSize="172981" publishTime="1338806187"/>
- <PublishItem publishSize="172981" publishTime="1338806158"/>
- <PublishItem publishSize="163884" publishTime="1338805968"/>
- <PublishItem publishSize="163882" publishTime="1338805823"/>
- <PublishItem publishSize="161891" publishTime="1338805796"/>
- <PublishItem publishSize="161886" publishTime="1338805783"/>
- <PublishItem publishSize="163869" publishTime="1338805741"/>
- <PublishItem publishSize="163869" publishTime="1338805677"/>
- <PublishItem publishSize="163869" publishTime="1338805571"/>
</publishHistory>
<swcCache>
<Swc hashKey="kfuaIecnz3BPM/B8Awo4b." href="I06HM53Q5Z.swc">
--- a/script/record_mic/record_mic/LIBRARY/ActivityProgress.xml Mon Jun 04 19:18:51 2012 +0200
+++ b/script/record_mic/record_mic/LIBRARY/ActivityProgress.xml Tue Jun 05 12:49:37 2012 +0200
@@ -1,15 +1,42 @@
-<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="ActivityProgress" itemID="4fcce4f8-0000037d" sourceLibraryItemHRef="Symbole 2" lastModified="1338828619">
+<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="ActivityProgress" itemID="4fcce4f8-0000037d" sourceLibraryItemHRef="Symbole 2" lastModified="1338890832">
<timeline>
<DOMTimeline name="ActivityProgress">
<layers>
- <DOMLayer name="Calque 2" color="#9933CC">
+ <DOMLayer name="mask" color="#9933CC" autoNamed="false" visible="false" layerType="mask">
<frames>
<DOMFrame index="0" keyMode="9728">
- <elements/>
+ <elements>
+ <DOMShape>
+ <fills>
+ <FillStyle index="1">
+ <SolidColor color="#FF0000"/>
+ </FillStyle>
+ </fills>
+ <edges>
+ <Edge fillStyle1="1" edges="!1500 400|20 400!20 400|20 20!20 20|1500 20!1500 20|1500 400"/>
+ </edges>
+ </DOMShape>
+ </elements>
</DOMFrame>
</frames>
</DOMLayer>
- <DOMLayer name="bg" color="#4FFF4F" current="true" isSelected="true" autoNamed="false">
+ <DOMLayer name="mc" color="#FF800A" parentLayerIndex="0" current="true" isSelected="true" autoNamed="false">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements>
+ <DOMSymbolInstance libraryItemName="EmptyMC" name="_activityCurve" selected="true" centerPoint3DX="50" centerPoint3DY="32.5">
+ <matrix>
+ <Matrix tx="1" ty="1"/>
+ </matrix>
+ <transformationPoint>
+ <Point x="49" y="31.5"/>
+ </transformationPoint>
+ </DOMSymbolInstance>
+ </elements>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ <DOMLayer name="bg" color="#4FFF4F" locked="true" autoNamed="false">
<frames>
<DOMFrame index="0" keyMode="9728">
<elements>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/script/record_mic/record_mic/LIBRARY/Component Assets/Shared/focusRectSkin.xml Tue Jun 05 12:49:37 2012 +0200
@@ -0,0 +1,33 @@
+<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Component Assets/Shared/focusRectSkin" itemID="44d8b6f8-00000055" linkageExportForAS="true" linkageExportInFirstFrame="false" linkageClassName="focusRectSkin" sourceLibraryItemHRef="Component Assets/Shared/focusRectSkin" sourceLastModified="1163714957" scaleGridLeft="4.9" scaleGridRight="76.95" scaleGridTop="4.95" scaleGridBottom="16.95" lastModified="1168290361">
+ <timeline>
+ <DOMTimeline name="focusRectSkin">
+ <layers>
+ <DOMLayer name="border" color="#4FFF4F" current="true" isSelected="true" autoNamed="false">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements>
+ <DOMShape>
+ <fills>
+ <FillStyle index="1">
+ <LinearGradient>
+ <matrix>
+ <Matrix a="1.52587890625e-05" b="0.01318359375" c="-0.013427734375" d="1.52587890625e-05" tx="41.05" ty="11"/>
+ </matrix>
+ <GradientEntry color="#0075BF" ratio="0"/>
+ <GradientEntry color="#009DFF" ratio="1"/>
+ </LinearGradient>
+ </FillStyle>
+ </fills>
+ <edges>
+ <Edge fillStyle0="1" edges="!1640.5 80[#668.86 0 1560.5 0!1560.5 0|80.5 0!80.5 0[#0.7A 0 0.5 80!0.5 80|0.5 360!0.5 360[#0.7A 440 80.5 440!80.5 440|1560.5 440!1560.5 440[#668.86 440 1640.5 360!1640.5 360|1640.5 80!1620.5 360[#654.84 #1A2.BC 1563 420!1563 420|78 420
+!78 420[#14.7B #1A2.BC 20.5 360!20.5 360|20.5 80!20.5 80[#14.7B #15.44 78 20!78 20|1563 20!1563 20[#654.84 #15.44 1620.5 80!1620.5 80|1620.5 360"/>
+ </edges>
+ </DOMShape>
+ </elements>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ </layers>
+ </DOMTimeline>
+ </timeline>
+</DOMSymbolItem>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/script/record_mic/record_mic/LIBRARY/Component Assets/SliderSkins/SliderThumb_disabledSkin.xml Tue Jun 05 12:49:37 2012 +0200
@@ -0,0 +1,54 @@
+<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Component Assets/SliderSkins/SliderThumb_disabledSkin" itemID="44b6b7cb-00000026" linkageExportForAS="true" linkageExportInFirstFrame="false" linkageClassName="SliderThumb_disabledSkin" sourceLibraryItemHRef="Component Assets/SliderSkins/SliderThumb_disabledSkin" sourceLastModified="1163715024" lastModified="1168290382">
+ <timeline>
+ <DOMTimeline name="SliderThumb_disabledSkin">
+ <layers>
+ <DOMLayer name="skin" color="#4FFF4F" current="true" isSelected="true" autoNamed="false">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements>
+ <DOMShape>
+ <fills>
+ <FillStyle index="1">
+ <LinearGradient>
+ <matrix>
+ <Matrix a="0" b="-0.0079345703125" c="0.0079345703125" d="0" ty="6.5"/>
+ </matrix>
+ <GradientEntry color="#5B5D5E" alpha="0.298039215686275" ratio="0"/>
+ <GradientEntry color="#B7BABC" alpha="0.298039215686275" ratio="1"/>
+ </LinearGradient>
+ </FillStyle>
+ <FillStyle index="2">
+ <LinearGradient>
+ <matrix>
+ <Matrix a="0" b="-0.0067138671875" c="0.0067138671875" d="0" ty="6.5"/>
+ </matrix>
+ <GradientEntry color="#CCCCCC" alpha="0.2" ratio="0"/>
+ <GradientEntry color="#FFFFFF" alpha="0.298039215686275" ratio="1"/>
+ </LinearGradient>
+ </FillStyle>
+ </fills>
+ <edges>
+ <Edge fillStyle0="1" edges="!22 0|-22 0!-22 0|-130 200!-130 200|-90 260!-90 260|90 260!90 260|130 200!130 200|22 0"/>
+ <Edge fillStyle0="1" fillStyle1="2" edges="!110 200|70 240!70 240|-70 240!-70 240|-110 200!-110 200|-21 20!-21 20|21 20!21 20|110 200"/>
+ <Edge cubics="!21 20(;21,20 -21,20 -21,20p21 20 -21 20);"/>
+ <Edge cubics="!110 200(;110,200 21,20 21,20p110 200 21 20);"/>
+ <Edge cubics="!70 240(70,240;70,240 110,200 110,200p70 240 110 200);"/>
+ <Edge cubics="!-70 240(-70,240;-70,240 70,240 70,240p-70 240 70 240);"/>
+ <Edge cubics="!-110 200(;-110,200 -70,240 -70,240p-110 200 -70 240);"/>
+ <Edge cubics="!-21 20(-21,20;-21,20 -110,200 -110,200p-21 20 -110 200)-110,200;"/>
+ <Edge cubics="!130 200(;130,200 22,0 22,0q130 200 22 0);"/>
+ <Edge cubics="!90 260(;90,260 130,200 130,200q90 260 130 200);"/>
+ <Edge cubics="!-22 0(;-22,0 -130,200 -130,200q-22 0 -130 200);"/>
+ <Edge cubics="!-130 200(;-130,200 -90,260 -90,260q-130 200 -90 260);"/>
+ <Edge cubics="!-90 260(;-90,260 90,260 90,260q-90 260 90 260)90,260;"/>
+ <Edge cubics="!22 0(;22,0 -22,0 -22,0q22 0 -22 0);"/>
+ </edges>
+ </DOMShape>
+ </elements>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ </layers>
+ </DOMTimeline>
+ </timeline>
+</DOMSymbolItem>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/script/record_mic/record_mic/LIBRARY/Component Assets/SliderSkins/SliderThumb_downSkin.xml Tue Jun 05 12:49:37 2012 +0200
@@ -0,0 +1,54 @@
+<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Component Assets/SliderSkins/SliderThumb_downSkin" itemID="44b6b7d2-00000027" linkageExportForAS="true" linkageExportInFirstFrame="false" linkageClassName="SliderThumb_downSkin" sourceLibraryItemHRef="Component Assets/SliderSkins/SliderThumb_downSkin" sourceLastModified="1163715028" lastModified="1168290388">
+ <timeline>
+ <DOMTimeline name="SliderThumb_downSkin">
+ <layers>
+ <DOMLayer name="skin" color="#4FFF4F" current="true" isSelected="true" autoNamed="false">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements>
+ <DOMShape>
+ <fills>
+ <FillStyle index="1">
+ <LinearGradient>
+ <matrix>
+ <Matrix a="0" b="-0.0079345703125" c="0.0079345703125" d="0" ty="6.5"/>
+ </matrix>
+ <GradientEntry color="#0075BF" ratio="0"/>
+ <GradientEntry color="#009DFF" ratio="0.992156862745098"/>
+ </LinearGradient>
+ </FillStyle>
+ <FillStyle index="2">
+ <LinearGradient>
+ <matrix>
+ <Matrix a="0" b="-0.0067138671875" c="0.0067138671875" d="0" ty="6.5"/>
+ </matrix>
+ <GradientEntry color="#99D7FE" ratio="0"/>
+ <GradientEntry color="#D9F0FE" ratio="1"/>
+ </LinearGradient>
+ </FillStyle>
+ </fills>
+ <edges>
+ <Edge fillStyle0="1" edges="!22 0|-22 0!-22 0|-130 200!-130 200|-90 260!-90 260|90 260!90 260|130 200!130 200|22 0"/>
+ <Edge fillStyle0="1" fillStyle1="2" edges="!110 200|70 240!70 240|-70 240!-70 240|-110 200!-110 200|-21 20!-21 20|21 20!21 20|110 200"/>
+ <Edge cubics="!21 20(;21,20 110,200 110,200q21 20 110 200);"/>
+ <Edge cubics="!130 200(;130,200 22,0 22,0q130 200 22 0);"/>
+ <Edge cubics="!110 200(;110,200 70,240 70,240q110 200 70 240);"/>
+ <Edge cubics="!90 260(;90,260 130,200 130,200q90 260 130 200);"/>
+ <Edge cubics="!-22 0(;-22,0 -130,200 -130,200q-22 0 -130 200);"/>
+ <Edge cubics="!-110 200(;-110,200 -21,20 -21,20q-110 200 -21 20);"/>
+ <Edge cubics="!-130 200(;-130,200 -90,260 -90,260q-130 200 -90 260);"/>
+ <Edge cubics="!-70 240(;-70,240 -110,200 -110,200q-70 240 -110 200)-110,200;"/>
+ <Edge cubics="!-90 260(;-90,260 90,260 90,260q-90 260 90 260);"/>
+ <Edge cubics="!70 240(;70,240 -70,240 -70,240q70 240 -70 240)-70,240;"/>
+ <Edge cubics="!-21 20(;-21,20 21,20 21,20q-21 20 21 20);"/>
+ <Edge cubics="!22 0(;22,0 -22,0 -22,0q22 0 -22 0);"/>
+ </edges>
+ </DOMShape>
+ </elements>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ </layers>
+ </DOMTimeline>
+ </timeline>
+</DOMSymbolItem>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/script/record_mic/record_mic/LIBRARY/Component Assets/SliderSkins/SliderThumb_overSkin.xml Tue Jun 05 12:49:37 2012 +0200
@@ -0,0 +1,54 @@
+<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Component Assets/SliderSkins/SliderThumb_overSkin" itemID="44b6b7f2-0000002a" linkageExportForAS="true" linkageExportInFirstFrame="false" linkageClassName="SliderThumb_overSkin" sourceLibraryItemHRef="Component Assets/SliderSkins/SliderThumb_overSkin" sourceLastModified="1163715031" lastModified="1168290392">
+ <timeline>
+ <DOMTimeline name="SliderThumb_overSkin">
+ <layers>
+ <DOMLayer name="skin" color="#4FFF4F" current="true" isSelected="true" autoNamed="false">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements>
+ <DOMShape>
+ <fills>
+ <FillStyle index="1">
+ <LinearGradient>
+ <matrix>
+ <Matrix a="0" b="-0.0079345703125" c="0.0079345703125" d="0" ty="6.5"/>
+ </matrix>
+ <GradientEntry color="#0075BF" ratio="0"/>
+ <GradientEntry color="#009DFF" ratio="0.992156862745098"/>
+ </LinearGradient>
+ </FillStyle>
+ <FillStyle index="2">
+ <LinearGradient>
+ <matrix>
+ <Matrix a="0" b="-0.0067138671875" c="0.0067138671875" d="0" ty="6.5"/>
+ </matrix>
+ <GradientEntry color="#EEEEEE" alpha="0.650980392156863" ratio="0"/>
+ <GradientEntry color="#FFFFFF" alpha="0.741176470588235" ratio="1"/>
+ </LinearGradient>
+ </FillStyle>
+ </fills>
+ <edges>
+ <Edge fillStyle0="1" edges="!22 0|-22 0!-22 0|-130 200!-130 200|-90 260!-90 260|90 260!90 260|130 200!130 200|22 0"/>
+ <Edge fillStyle0="1" fillStyle1="2" edges="!110 200|70 240!70 240|-70 240!-70 240|-110 200!-110 200|-21 20!-21 20|21 20!21 20|110 200"/>
+ <Edge cubics="!21 20(;21,20 110,200 110,200q21 20 110 200);"/>
+ <Edge cubics="!130 200(;130,200 22,0 22,0q130 200 22 0);"/>
+ <Edge cubics="!110 200(110,200;110,200 70,240 70,240q110 200 70 240)70,240;"/>
+ <Edge cubics="!90 260(;90,260 130,200 130,200q90 260 130 200);"/>
+ <Edge cubics="!-22 0(;-22,0 -130,200 -130,200q-22 0 -130 200);"/>
+ <Edge cubics="!-110 200(;-110,200 -21,20 -21,20q-110 200 -21 20);"/>
+ <Edge cubics="!-130 200(;-130,200 -90,260 -90,260q-130 200 -90 260);"/>
+ <Edge cubics="!-70 240(;-70,240 -110,200 -110,200q-70 240 -110 200);"/>
+ <Edge cubics="!70 240(;70,240 -70,240 -70,240q70 240 -70 240);"/>
+ <Edge cubics="!-90 260(;-90,260 90,260 90,260q-90 260 90 260);"/>
+ <Edge cubics="!22 0(;22,0 -22,0 -22,0q22 0 -22 0);"/>
+ <Edge cubics="!-21 20(-21,20;-21,20 21,20 21,20q-21 20 21 20)21,20;"/>
+ </edges>
+ </DOMShape>
+ </elements>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ </layers>
+ </DOMTimeline>
+ </timeline>
+</DOMSymbolItem>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/script/record_mic/record_mic/LIBRARY/Component Assets/SliderSkins/SliderThumb_upSkin.xml Tue Jun 05 12:49:37 2012 +0200
@@ -0,0 +1,54 @@
+<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Component Assets/SliderSkins/SliderThumb_upSkin" itemID="44b6b7e8-00000029" linkageExportForAS="true" linkageExportInFirstFrame="false" linkageClassName="SliderThumb_upSkin" sourceLibraryItemHRef="Component Assets/SliderSkins/SliderThumb_upSkin" sourceLastModified="1163715034" lastModified="1168290396">
+ <timeline>
+ <DOMTimeline name="SliderThumb_upSkin">
+ <layers>
+ <DOMLayer name="skin" color="#4FFF4F" current="true" isSelected="true" autoNamed="false">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements>
+ <DOMShape>
+ <fills>
+ <FillStyle index="1">
+ <LinearGradient>
+ <matrix>
+ <Matrix a="0" b="-0.0079345703125" c="0.0079345703125" d="0" ty="6.5"/>
+ </matrix>
+ <GradientEntry color="#5B5D5E" ratio="0"/>
+ <GradientEntry color="#B7BABC" ratio="1"/>
+ </LinearGradient>
+ </FillStyle>
+ <FillStyle index="2">
+ <LinearGradient>
+ <matrix>
+ <Matrix a="0" b="-0.0067138671875" c="0.0067138671875" d="0" ty="6.5"/>
+ </matrix>
+ <GradientEntry color="#CCCCCC" alpha="0.4" ratio="0"/>
+ <GradientEntry color="#FFFFFF" alpha="0.6" ratio="1"/>
+ </LinearGradient>
+ </FillStyle>
+ </fills>
+ <edges>
+ <Edge fillStyle0="1" edges="!22 0|-22 0!-22 0|-130 200!-130 200|-90 260!-90 260|90 260!90 260|130 200!130 200|22 0"/>
+ <Edge fillStyle0="1" fillStyle1="2" edges="!110 200|70 240!70 240|-70 240!-70 240|-110 200!-110 200|-21 20!-21 20|21 20!21 20|110 200"/>
+ <Edge cubics="!21 20(;21,20 110,200 110,200q21 20 110 200);"/>
+ <Edge cubics="!130 200(;130,200 22,0 22,0q130 200 22 0);"/>
+ <Edge cubics="!110 200(;110,200 70,240 70,240q110 200 70 240);"/>
+ <Edge cubics="!90 260(;90,260 130,200 130,200q90 260 130 200);"/>
+ <Edge cubics="!-22 0(;-22,0 -130,200 -130,200q-22 0 -130 200);"/>
+ <Edge cubics="!-110 200(;-110,200 -21,20 -21,20q-110 200 -21 20)-21,20;"/>
+ <Edge cubics="!-130 200(;-130,200 -90,260 -90,260q-130 200 -90 260);"/>
+ <Edge cubics="!-70 240(;-70,240 -110,200 -110,200q-70 240 -110 200);"/>
+ <Edge cubics="!-90 260(;-90,260 90,260 90,260q-90 260 90 260);"/>
+ <Edge cubics="!70 240(;70,240 -70,240 -70,240q70 240 -70 240);"/>
+ <Edge cubics="!-21 20(;-21,20 21,20 21,20q-21 20 21 20);"/>
+ <Edge cubics="!22 0(;22,0 -22,0 -22,0q22 0 -22 0);"/>
+ </edges>
+ </DOMShape>
+ </elements>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ </layers>
+ </DOMTimeline>
+ </timeline>
+</DOMSymbolItem>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/script/record_mic/record_mic/LIBRARY/Component Assets/SliderSkins/SliderTick_skin.xml Tue Jun 05 12:49:37 2012 +0200
@@ -0,0 +1,30 @@
+<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Component Assets/SliderSkins/SliderTick_skin" itemID="44fdb8d4-000002a7" linkageExportForAS="true" linkageExportInFirstFrame="false" linkageClassName="SliderTick_skin" sourceLibraryItemHRef="Component Assets/SliderSkins/SliderTick_skin" sourceLastModified="1163715039" lastModified="1168290400">
+ <timeline>
+ <DOMTimeline name="SliderTick_skin">
+ <layers>
+ <DOMLayer name="skin" color="#4FFF4F" current="true" isSelected="true" autoNamed="false">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements>
+ <DOMShape>
+ <fills>
+ <FillStyle index="1">
+ <SolidColor color="#919999"/>
+ </FillStyle>
+ </fills>
+ <edges>
+ <Edge fillStyle1="1" edges="!10 40|-10 40!-10 40|-10 0!-10 0|10 0!10 0|10 40"/>
+ <Edge cubics="!1 1(;1,1 20,1 20,1q1 1 20 1);"/>
+ <Edge cubics="!1 39(;1,39 21,39 21,39q1 39 21 39);"/>
+ <Edge cubics="!1 39(;1,39 1,1 1,1q1 39 1 1);"/>
+ <Edge cubics="!20 1(;20,1 21,39 21,39q20 1 21 39);"/>
+ </edges>
+ </DOMShape>
+ </elements>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ </layers>
+ </DOMTimeline>
+ </timeline>
+</DOMSymbolItem>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/script/record_mic/record_mic/LIBRARY/Component Assets/SliderSkins/SliderTrack_disabledSkin.xml Tue Jun 05 12:49:37 2012 +0200
@@ -0,0 +1,49 @@
+<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Component Assets/SliderSkins/SliderTrack_disabledSkin" itemID="44bafbb2-00000054" linkageExportForAS="true" linkageExportInFirstFrame="false" linkageClassName="SliderTrack_disabledSkin" sourceLibraryItemHRef="Component Assets/SliderSkins/SliderTrack_disabledSkin" sourceLastModified="1163715046" scaleGridLeft="2" scaleGridRight="78" scaleGridTop="-1" scaleGridBottom="4.05" lastModified="1168290405">
+ <timeline>
+ <DOMTimeline name="SliderTrack_disabledSkin">
+ <layers>
+ <DOMLayer name="skin" color="#4FFF4F" current="true" isSelected="true" autoNamed="false">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements>
+ <DOMShape>
+ <fills>
+ <FillStyle index="1">
+ <SolidColor color="#EBEBEB"/>
+ </FillStyle>
+ <FillStyle index="2">
+ <SolidColor color="#999999"/>
+ </FillStyle>
+ <FillStyle index="3">
+ <SolidColor color="#CCCCCC"/>
+ </FillStyle>
+ <FillStyle index="4">
+ <SolidColor color="#BBBBBB"/>
+ </FillStyle>
+ </fills>
+ <edges>
+ <Edge fillStyle1="2" edges="!20 20|20 0!20 0|1580 0!1580 0|1580 20"/>
+ <Edge fillStyle0="4" fillStyle1="1" edges="!1580 20|1580 40"/>
+ <Edge fillStyle0="3" fillStyle1="4" edges="!1580 40|1580 60"/>
+ <Edge fillStyle0="3" edges="!1580 60|1581 60!1581 60|1581 40"/>
+ <Edge fillStyle0="3" fillStyle1="4" edges="!1581 40|1580 40"/>
+ <Edge fillStyle0="4" fillStyle1="1" edges="!1580 40|1560 40"/>
+ <Edge fillStyle0="3" fillStyle1="1" edges="!1560 40|40 40"/>
+ <Edge fillStyle0="3" fillStyle1="4" edges="!40 40|40 60"/>
+ <Edge fillStyle0="3" edges="!40 60|1560 60"/>
+ <Edge fillStyle0="3" fillStyle1="4" edges="!1560 60|1560 40"/>
+ <Edge fillStyle0="4" edges="!1581 40|1600 40!1600 40|1600 20!1600 20|1580 20"/>
+ <Edge fillStyle0="1" fillStyle1="2" edges="!1580 20|20 20"/>
+ <Edge fillStyle1="4" edges="!1580 60|1560 60"/>
+ <Edge fillStyle0="4" edges="!20 20|0 20!0 20|0 40!0 40|20 40!20 40|20 60!20 60|40 60"/>
+ <Edge fillStyle0="4" fillStyle1="1" edges="!40 40|20 40!20 40|20 20"/>
+ </edges>
+ </DOMShape>
+ </elements>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ </layers>
+ </DOMTimeline>
+ </timeline>
+</DOMSymbolItem>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/script/record_mic/record_mic/LIBRARY/Component Assets/SliderSkins/SliderTrack_skin.xml Tue Jun 05 12:49:37 2012 +0200
@@ -0,0 +1,44 @@
+<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Component Assets/SliderSkins/SliderTrack_skin" itemID="44fdb8c9-000002a6" linkageExportForAS="true" linkageExportInFirstFrame="false" linkageClassName="SliderTrack_skin" sourceLibraryItemHRef="Component Assets/SliderSkins/SliderTrack_skin" sourceLastModified="1163715055" scaleGridLeft="2.25" scaleGridRight="78" scaleGridTop="-1" scaleGridBottom="3.95" lastModified="1168290411">
+ <timeline>
+ <DOMTimeline name="SliderTrack_skin">
+ <layers>
+ <DOMLayer name="skin" color="#4FFF4F" current="true" isSelected="true" autoNamed="false">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements>
+ <DOMShape>
+ <fills>
+ <FillStyle index="1">
+ <SolidColor color="#AEB2B4"/>
+ </FillStyle>
+ <FillStyle index="2">
+ <SolidColor color="#EBEBEB"/>
+ </FillStyle>
+ <FillStyle index="3">
+ <SolidColor color="#8C9295"/>
+ </FillStyle>
+ <FillStyle index="4">
+ <SolidColor color="#575E62"/>
+ </FillStyle>
+ </fills>
+ <edges>
+ <Edge fillStyle0="3" edges="!1560 60|1580 60!1580 60|1580 40!1580 40|1600 40!1600 40|1600 20!1600 20|1580 20"/>
+ <Edge fillStyle0="3" fillStyle1="2" edges="!1580 20|1580 40!1580 40|1560 40"/>
+ <Edge fillStyle0="1" fillStyle1="2" edges="!1560 40|40 40"/>
+ <Edge fillStyle0="1" fillStyle1="3" edges="!40 40|40 60"/>
+ <Edge fillStyle0="1" edges="!40 60|1560 60"/>
+ <Edge fillStyle0="1" fillStyle1="3" edges="!1560 60|1560 40"/>
+ <Edge fillStyle1="4" edges="!20 20|20 0!20 0|1580 0!1580 0|1580 20"/>
+ <Edge fillStyle0="2" fillStyle1="4" edges="!1580 20|20 20"/>
+ <Edge fillStyle1="3" edges="!20 40|0 40!0 40|0 20!0 20|20 20!40 60|20 60!20 60|20 40"/>
+ <Edge fillStyle0="2" fillStyle1="3" edges="!20 40|40 40!20 20|20 40"/>
+ </edges>
+ </DOMShape>
+ </elements>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ </layers>
+ </DOMTimeline>
+ </timeline>
+</DOMSymbolItem>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/script/record_mic/record_mic/LIBRARY/EmptyMC.xml Tue Jun 05 12:49:37 2012 +0200
@@ -0,0 +1,15 @@
+<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="EmptyMC" itemID="4fcdd873-00000265" sourceLibraryItemHRef="Symbole 2" lastModified="1338890835">
+ <timeline>
+ <DOMTimeline name="EmptyMC">
+ <layers>
+ <DOMLayer name="Calque 1" color="#4FFF4F" current="true" isSelected="true">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements/>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ </layers>
+ </DOMTimeline>
+ </timeline>
+</DOMSymbolItem>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/script/record_mic/record_mic/LIBRARY/Slider.xml Tue Jun 05 12:49:37 2012 +0200
@@ -0,0 +1,668 @@
+<DOMComponentItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Slider" itemID="44b670ee-000000f8" linkageExportForAS="true" linkageClassName="fl.controls.Slider" sourceLibraryItemHRef="Slider" sourceLastModified="1164926528" lastModified="1267043571" lastUniqueIdentifier="19" tooltip="Slider" customIconID="0" actionscriptClass="fl.controls.Slider" livePreviewScmHRef="haf16x0luk.swf" livePreviewScmSourceFilename="Slider.swf" persistLivePreview11="true" livePreview11ScmHRef="haf16x0luk18.swf" livePreview11ScmSourceFilename="C:\Documents and Settings\jkamerer\Local Settings\Application Data\Adobe\Flash CS5\en_US\Configuration\TMPag3blyd52s..swf" editFrameIndex="2" requiredMinimumPlayerVersion="9" requiredMinimumASVersion="3" parametersAreLocked="true">
+ <timeline>
+ <DOMTimeline name="Slider" currentFrame="1">
+ <layers>
+ <DOMLayer name="assets" color="#4FFF4F" autoNamed="false">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements/>
+ </DOMFrame>
+ <DOMFrame index="1" keyMode="9728">
+ <elements>
+ <DOMSymbolInstance libraryItemName="Component Assets/SliderSkins/SliderThumb_upSkin" name="">
+ <matrix>
+ <Matrix tx="103.5" ty="121.5"/>
+ </matrix>
+ <transformationPoint>
+ <Point x="6.5" y="6.5"/>
+ </transformationPoint>
+ </DOMSymbolInstance>
+ <DOMSymbolInstance libraryItemName="Component Assets/SliderSkins/SliderThumb_overSkin" name="">
+ <matrix>
+ <Matrix tx="103.5" ty="157.75"/>
+ </matrix>
+ <transformationPoint>
+ <Point x="6.5" y="6.5"/>
+ </transformationPoint>
+ </DOMSymbolInstance>
+ <DOMSymbolInstance libraryItemName="Component Assets/SliderSkins/SliderThumb_downSkin" name="">
+ <matrix>
+ <Matrix tx="103.5" ty="188"/>
+ </matrix>
+ <transformationPoint>
+ <Point x="6.5" y="6.5"/>
+ </transformationPoint>
+ </DOMSymbolInstance>
+ <DOMSymbolInstance libraryItemName="Component Assets/SliderSkins/SliderThumb_disabledSkin" name="">
+ <matrix>
+ <Matrix tx="103.5" ty="220.25"/>
+ </matrix>
+ <transformationPoint>
+ <Point x="6.5" y="6.5"/>
+ </transformationPoint>
+ </DOMSymbolInstance>
+ <DOMSymbolInstance libraryItemName="Component Assets/SliderSkins/SliderTrack_skin" name="">
+ <matrix>
+ <Matrix tx="32" ty="32"/>
+ </matrix>
+ <transformationPoint>
+ <Point x="39.5" y="1.5"/>
+ </transformationPoint>
+ </DOMSymbolInstance>
+ <DOMSymbolInstance libraryItemName="Component Assets/SliderSkins/SliderTick_skin" name="">
+ <matrix>
+ <Matrix tx="101" ty="95.75"/>
+ </matrix>
+ <transformationPoint>
+ <Point x="0.5" y="1"/>
+ </transformationPoint>
+ </DOMSymbolInstance>
+ <DOMSymbolInstance libraryItemName="Component Assets/SliderSkins/SliderTrack_disabledSkin" name="">
+ <matrix>
+ <Matrix tx="32" ty="64"/>
+ </matrix>
+ <transformationPoint>
+ <Point x="39.5" y="1.5"/>
+ </transformationPoint>
+ </DOMSymbolInstance>
+ <DOMSymbolInstance libraryItemName="Component Assets/Shared/focusRectSkin" name="">
+ <matrix>
+ <Matrix tx="32" ty="250"/>
+ </matrix>
+ <transformationPoint>
+ <Point x="41.05" y="11"/>
+ </transformationPoint>
+ </DOMSymbolInstance>
+ </elements>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ <DOMLayer name="asset names" color="#4FFFFF" locked="true" autoNamed="false" layerType="guide">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements/>
+ </DOMFrame>
+ <DOMFrame index="1" keyMode="9728">
+ <elements>
+ <DOMRectangleObject objectWidth="280" objectHeight="298" x="88" y="-32" lockFlag="true" topLeftRadius="20" topRightRadius="20" bottomLeftRadius="20" bottomRightRadius="20">
+ <matrix>
+ <Matrix tx="-88" ty="32"/>
+ </matrix>
+ <fill>
+ <SolidColor color="#EEEEEE"/>
+ </fill>
+ <stroke>
+ <SolidStroke scaleMode="normal">
+ <fill>
+ <SolidColor color="#CCCCCC"/>
+ </fill>
+ </SolidStroke>
+ </stroke>
+ </DOMRectangleObject>
+ <DOMStaticText width="102.4" height="247.6" autoExpand="true" isSelectable="false">
+ <matrix>
+ <Matrix tx="145.85" ty="23.15"/>
+ </matrix>
+ <textRuns>
+ <DOMTextRun>
+ <characters>up
disabled
tick
thumb_up
thumb_over
thumb_down
thumb_disabled
focusRectSkin</characters>
+ <textAttrs>
+ <DOMTextAttrs aliasText="false" lineSpacing="14.8" size="16" face="TimesNewRomanPSMT" fillColor="#666666"/>
+ </textAttrs>
+ </DOMTextRun>
+ </textRuns>
+ </DOMStaticText>
+ </elements>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ <DOMLayer name="avatar" color="#9933CC" current="true" isSelected="true" autoNamed="false">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements>
+ <DOMSymbolInstance libraryItemName="Component Assets/_private/Component_avatar" name="">
+ <matrix>
+ <Matrix d="0.1363525390625"/>
+ </matrix>
+ <transformationPoint>
+ <Point x="40" y="11"/>
+ </transformationPoint>
+ </DOMSymbolInstance>
+ </elements>
+ </DOMFrame>
+ <DOMFrame index="1" keyMode="9728">
+ <elements/>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ <DOMLayer name="ComponentShim" color="#FF4FFF" locked="true" autoNamed="false">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements/>
+ </DOMFrame>
+ <DOMFrame index="1" keyMode="9728">
+ <elements>
+ <DOMCompiledClipInstance libraryItemName="Component Assets/_private/ComponentShim" uniqueID="18">
+ <matrix>
+ <Matrix d="1.00311279296875" tx="10" ty="10"/>
+ </matrix>
+ <dataBindingXML><![CDATA[<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Séquence 1' oldCopiedComponentPath='2.18'>
+</component>
+]]></dataBindingXML>
+ </DOMCompiledClipInstance>
+ </elements>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ </layers>
+ </DOMTimeline>
+ </timeline>
+ <parametersAsXML><![CDATA[ <property id="direction">
+ <Inspectable name="direction" variable="direction" category="" verbose="0" defaultValue="horizontal" enumeration="horizontal,vertical" type="List"/>
+ </property>
+ <property id="enabled">
+ <Inspectable name="enabled" variable="enabled" category="" verbose="1" defaultValue="true" type="Boolean"/>
+ </property>
+ <property id="liveDragging">
+ <Inspectable name="liveDragging" variable="liveDragging" category="" verbose="0" defaultValue="false" type="Boolean"/>
+ </property>
+ <property id="maximum">
+ <Inspectable name="maximum" variable="maximum" category="" verbose="0" defaultValue="10" type="Number"/>
+ </property>
+ <property id="minimum">
+ <Inspectable name="minimum" variable="minimum" category="" verbose="0" defaultValue="0" type="Number"/>
+ </property>
+ <property id="snapInterval">
+ <Inspectable name="snapInterval" variable="snapInterval" category="" verbose="0" defaultValue="0" type="Number"/>
+ </property>
+ <property id="tickInterval">
+ <Inspectable name="tickInterval" variable="tickInterval" category="" verbose="0" defaultValue="0" type="Number"/>
+ </property>
+ <property id="value">
+ <Inspectable name="value" variable="value" category="" verbose="0" defaultValue="0" type="Number"/>
+ </property>
+ <property id="visible">
+ <Inspectable name="visible" variable="visible" category="" verbose="1" defaultValue="true" type="Boolean"/>
+ </property>
+]]></parametersAsXML>
+ <classProperties><![CDATA[<classDefs>
+ <classDef id="Date"/>
+ <classDef id="Date"/>
+ <classDef id="Boolean"/>
+ <classDef id="Namespace"/>
+ <classDef id="Class"/>
+ <classDef id="uint"/>
+ <classDef id="Object"/>
+ <classDef id="Number"/>
+ <classDef id="int"/>
+ <classDef id="String"/>
+ <classDef id="Function"/>
+ <classDef id="Array"/>
+ <classDef id="builtin.as$91.MethodClosure"/>
+ <classDef id="Object"/>
+ <classDef id="Boolean"/>
+ <classDef id="Namespace"/>
+ <classDef id="Class"/>
+ <classDef id="uint"/>
+ <classDef id="Number"/>
+ <classDef id="int"/>
+ <classDef id="String"/>
+ <classDef id="Function"/>
+ <classDef id="Array"/>
+ <classDef id="builtin.as$91.MethodClosure"/>
+ <classDef id="RegExp"/>
+ <classDef id="RegExp"/>
+ <classDef id="flash.display.Sprite"/>
+ <classDef id="flash.display.Sprite"/>
+ <classDef id="flash.display.DisplayObjectContainer"/>
+ <classDef id="flash.display.DisplayObjectContainer"/>
+ <classDef id="flash.display.InteractiveObject"/>
+ <classDef id="flash.display.InteractiveObject"/>
+ <classDef id="flash.display.DisplayObject"/>
+ <classDef id="flash.display.DisplayObject"/>
+ <classDef id="flash.display.IBitmapDrawable"/>
+ <classDef id="flash.display.IBitmapDrawable"/>
+ <classDef id="flash.events.WeakFunctionClosure"/>
+ <classDef id="flash.events.EventDispatcher"/>
+ <classDef id="flash.events.WeakMethodClosure"/>
+ <classDef id="flash.events.WeakFunctionClosure"/>
+ <classDef id="flash.events.WeakMethodClosure"/>
+ <classDef id="flash.events.EventDispatcher"/>
+ <classDef id="flash.events.IEventDispatcher"/>
+ <classDef id="flash.events.IEventDispatcher"/>
+ <classDef id="flash.events.Event"/>
+ <classDef id="flash.events.Event"/>
+ <classDef id="flash.display.Stage"/>
+ <classDef id="flash.display.Stage"/>
+ <classDef id="flash.geom.Rectangle"/>
+ <classDef id="flash.geom.Rectangle"/>
+ <classDef id="flash.geom.Point"/>
+ <classDef id="flash.geom.Point"/>
+ <classDef id="flash.display.LoaderInfo"/>
+ <classDef id="flash.display.LoaderInfo"/>
+ <classDef id="flash.geom.Transform"/>
+ <classDef id="flash.geom.Transform"/>
+ <classDef id="flash.accessibility.AccessibilityProperties"/>
+ <classDef id="flash.accessibility.AccessibilityProperties"/>
+ <classDef id="flash.ui.ContextMenu"/>
+ <classDef id="flash.ui.ContextMenu"/>
+ <classDef id="flash.accessibility.AccessibilityImplementation"/>
+ <classDef id="flash.accessibility.AccessibilityImplementation"/>
+ <classDef id="flash.text.TextSnapshot"/>
+ <classDef id="flash.text.TextSnapshot"/>
+ <classDef id="flash.media.SoundTransform"/>
+ <classDef id="flash.media.SoundTransform"/>
+ <classDef id="flash.display.Graphics"/>
+ <classDef id="flash.display.Graphics"/>
+ <classDef id="flash.events.KeyboardEvent"/>
+ <classDef id="flash.events.KeyboardEvent"/>
+ <classDef id="flash.events.FocusEvent"/>
+ <classDef id="flash.events.FocusEvent"/>
+ <classDef id="flash.text.TextField"/>
+ <classDef id="flash.text.TextField"/>
+ <classDef id="flash.utils.Dictionary"/>
+ <classDef id="flash.utils.Dictionary"/>
+ <classDef id="flash.events.MouseEvent"/>
+ <classDef id="flash.events.MouseEvent"/>
+ <classDef id="SecurityError"/>
+ <classDef id="URIError"/>
+ <classDef id="ReferenceError"/>
+ <classDef id="ArgumentError"/>
+ <classDef id="EvalError"/>
+ <classDef id="SyntaxError"/>
+ <classDef id="UninitializedError"/>
+ <classDef id="TypeError"/>
+ <classDef id="DefinitionError"/>
+ <classDef id="Error"/>
+ <classDef id="RangeError"/>
+ <classDef id="VerifyError"/>
+ <classDef id="Error"/>
+ <classDef id="SecurityError"/>
+ <classDef id="URIError"/>
+ <classDef id="ReferenceError"/>
+ <classDef id="ArgumentError"/>
+ <classDef id="EvalError"/>
+ <classDef id="SyntaxError"/>
+ <classDef id="UninitializedError"/>
+ <classDef id="TypeError"/>
+ <classDef id="DefinitionError"/>
+ <classDef id="RangeError"/>
+ <classDef id="VerifyError"/>
+ <classDef id="flash.system.IME"/>
+ <classDef id="flash.system.IME"/>
+ <classDef id="flash.text.TextFormatAlign"/>
+ <classDef id="flash.text.TextFormatAlign"/>
+ <classDef id="flash.system.IMEConversionMode"/>
+ <classDef id="flash.system.IMEConversionMode"/>
+ <classDef id="Math"/>
+ <classDef id="Math"/>
+ <classDef id="flash.text.TextFormat"/>
+ <classDef id="flash.text.TextFormat"/>
+ <classDef id="flash.ui.Keyboard"/>
+ <classDef id="flash.ui.Keyboard"/>
+ <classDef id="XMLList"/>
+ <classDef id="XML"/>
+ <classDef id="QName"/>
+ <classDef id="XMLList"/>
+ <classDef id="XML"/>
+ <classDef id="QName"/>
+ <classDef id="flash.geom.Matrix"/>
+ <classDef id="flash.geom.Matrix"/>
+ <classDef id="flash.geom.ColorTransform"/>
+ <classDef id="flash.geom.ColorTransform"/>
+ <classDef id="flash.display.BitmapData"/>
+ <classDef id="flash.display.BitmapData"/>
+ <classDef id="flash.utils.ByteArray"/>
+ <classDef id="flash.utils.ByteArray"/>
+ <classDef id="flash.display.Loader"/>
+ <classDef id="flash.display.Loader"/>
+ <classDef id="flash.system.ApplicationDomain"/>
+ <classDef id="flash.system.ApplicationDomain"/>
+ <classDef id="flash.ui.ContextMenuBuiltInItems"/>
+ <classDef id="flash.ui.ContextMenuBuiltInItems"/>
+ <classDef id="flash.text.TextRun"/>
+ <classDef id="flash.text.TextRun"/>
+ <classDef id="flash.text.TextLineMetrics"/>
+ <classDef id="flash.text.TextLineMetrics"/>
+ <classDef id="flash.text.StyleSheet"/>
+ <classDef id="flash.text.StyleSheet"/>
+ <classDef id="flash.events.TimerEvent"/>
+ <classDef id="flash.events.TimerEvent"/>
+ <classDef id="flash.utils.Timer"/>
+ <classDef id="flash.utils.Timer"/>
+ <classDef id="flash.display.SimpleButton"/>
+ <classDef id="flash.display.SimpleButton"/>
+ <classDef id="flash.text.TextFieldType"/>
+ <classDef id="flash.text.TextFieldType"/>
+ <classDef id="flash.events.ProgressEvent"/>
+ <classDef id="flash.events.ProgressEvent"/>
+ <classDef id="flash.events.IOErrorEvent"/>
+ <classDef id="flash.events.IOErrorEvent"/>
+ <classDef id="flash.errors.IOError"/>
+ <classDef id="flash.errors.EOFError"/>
+ <classDef id="flash.errors.StackOverflowError"/>
+ <classDef id="flash.errors.InvalidSWFError"/>
+ <classDef id="flash.errors.ScriptTimeoutError"/>
+ <classDef id="flash.errors.IllegalOperationError"/>
+ <classDef id="flash.errors.MemoryError"/>
+ <classDef id="flash.errors.IOError"/>
+ <classDef id="flash.errors.StackOverflowError"/>
+ <classDef id="flash.errors.InvalidSWFError"/>
+ <classDef id="flash.errors.ScriptTimeoutError"/>
+ <classDef id="flash.errors.IllegalOperationError"/>
+ <classDef id="flash.errors.MemoryError"/>
+ <classDef id="flash.errors.EOFError"/>
+ <classDef id="flash.events.HTTPStatusEvent"/>
+ <classDef id="flash.events.HTTPStatusEvent"/>
+ <classDef id="flash.events.ContextMenuEvent"/>
+ <classDef id="flash.events.ContextMenuEvent"/>
+ <classDef id="flash.events.IMEEvent"/>
+ <classDef id="flash.events.IMEEvent"/>
+ <classDef id="flash.events.TextEvent"/>
+ <classDef id="flash.events.TextEvent"/>
+ <classDef id="flash.events.FullScreenEvent"/>
+ <classDef id="flash.events.FullScreenEvent"/>
+ <classDef id="flash.utils.IDataInput"/>
+ <classDef id="flash.utils.IDataInput"/>
+ <classDef id="flash.utils.IDataOutput"/>
+ <classDef id="flash.utils.IDataOutput"/>
+ <classDef id="flash.events.ErrorEvent"/>
+ <classDef id="flash.events.ErrorEvent"/>
+ <classDef id="flash.events.ActivityEvent"/>
+ <classDef id="flash.events.ActivityEvent"/>
+ <classDef id="flash.filters.BitmapFilter"/>
+ <classDef id="flash.filters.BitmapFilter"/>
+ <classDef id="flash.system.LoaderContext"/>
+ <classDef id="flash.system.LoaderContext"/>
+ <classDef id="flash.net.URLRequest"/>
+ <classDef id="flash.net.URLRequest"/>
+ <classDef id="flash.system.SecurityDomain"/>
+ <classDef id="flash.system.SecurityDomain"/>
+ <classDef id="fl.managers.IFocusManagerComponent"/>
+ <classDef id="fl.managers.IFocusManager"/>
+ <classDef id="fl.core.InvalidationType"/>
+ <classDef id="fl.managers.StyleManager"/>
+ <classDef id="fl.events.InteractionInputType"/>
+ <classDef id="fl.events.SliderEventClickTarget"/>
+ <classDef id="fl.controls.SliderDirection"/>
+ <classDef id="fl.managers.IFocusManagerGroup"/>
+ <classDef id="fl.controls.ButtonLabelPlacement"/>
+ <classDef id="fl.events.ComponentEvent"/>
+ <classDef id="fl.events.SliderEvent"/>
+ <classDef id="fl.managers.FocusManager"/>
+ <classDef id="fl.core.UIComponent"/>
+ <classDef id="fl.controls.Slider"/>
+ <classDef id="fl.controls.BaseButton"/>
+ <classDef id="fl.controls.LabelButton"/>
+ <classDef id="fl.controls.Button"/>
+</classDefs>
+<class id="fl.controls.Slider" >
+ <Style name="tickSkin" type="Class" />
+ <Style name="sliderTrackDisabledSkin" type="Class" />
+ <Style name="sliderTrackSkin" type="Class" />
+ <Style name="thumbDisabledSkin" type="Class" />
+ <Style name="thumbDownSkin" type="Class" />
+ <Style name="thumbOverSkin" type="Class" />
+ <Style name="thumbUpSkin" type="Class" />
+ <Event name="change" type="fl.events.SliderEvent" />
+ <Event name="thumbDrag" type="fl.events.SliderEvent" />
+ <Event name="thumbRelease" type="fl.events.SliderEvent" />
+ <Event name="thumbPress" type="fl.events.SliderEvent" />
+ <__go_to_ctor_definition_help file="c:\devsrc\flashfarm\authortool\windbgnoelicensing\Common\Configuration\Component Source\ActionScript 3.0\User Interface\fl\controls\Slider.as" pos="10132" />
+ <Style name="disabledTextFormat" type="flash.text.TextFormat" />
+ <Style name="textFormat" type="flash.text.TextFormat" />
+ <Style name="focusRectPadding" type="Number" format="Length" />
+ <Style name="focusRectSkin" type="Class" />
+ <Event name="hide" type="fl.events.ComponentEvent" />
+ <Event name="show" type="fl.events.ComponentEvent" />
+ <Event name="resize" type="fl.events.ComponentEvent" />
+ <Event name="move" type="fl.events.ComponentEvent" />
+ <__go_to_ctor_definition_help file="C:\devsrc\flashfarm\authortool\windbgnoelicensing\Common\Configuration\Component Source\ActionScript 3.0\User Interface\fl\core\UIComponent.as" pos="14978" />
+ <Event name="tabIndexChange" type="flash.events.Event" />
+ <Event name="tabEnabledChange" type="flash.events.Event" />
+ <Event name="tabChildrenChange" type="flash.events.Event" />
+ <Event name="keyUp" type="flash.events.KeyboardEvent" />
+ <Event name="keyDown" type="flash.events.KeyboardEvent" />
+ <Event name="rollOver" type="flash.events.MouseEvent" />
+ <Event name="rollOut" type="flash.events.MouseEvent" />
+ <Event name="mouseWheel" type="flash.events.MouseEvent" />
+ <Event name="mouseUp" type="flash.events.MouseEvent" />
+ <Event name="mouseOver" type="flash.events.MouseEvent" />
+ <Event name="mouseOut" type="flash.events.MouseEvent" />
+ <Event name="mouseMove" type="flash.events.MouseEvent" />
+ <Event name="mouseDown" type="flash.events.MouseEvent" />
+ <Event name="doubleClick" type="flash.events.MouseEvent" />
+ <Event name="click" type="flash.events.MouseEvent" />
+ <Event name="mouseFocusChange" type="flash.events.FocusEvent" />
+ <Event name="keyFocusChange" type="flash.events.FocusEvent" />
+ <Event name="focusOut" type="flash.events.FocusEvent" />
+ <Event name="focusIn" type="flash.events.FocusEvent" />
+ <Event name="render" type="flash.events.Event" />
+ <Event name="removedFromStage" type="flash.events.Event" />
+ <Event name="removed" type="flash.events.Event" />
+ <Event name="enterFrame" type="flash.events.Event" />
+ <Event name="addedToStage" type="flash.events.Event" />
+ <Event name="added" type="flash.events.Event" />
+ <Event name="deactivate" type="flash.events.Event" />
+ <Event name="activate" type="flash.events.Event" />
+ <method id="direction" returnType="String" isProperty="true" permissions="readwrite">
+ <Inspectable enumeration="horizontal,vertical" defaultValue="horizontal" />
+ </method>
+ <method id="minimum" returnType="Number" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="0" />
+ </method>
+ <method id="maximum" returnType="Number" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="10" />
+ </method>
+ <method id="tickInterval" returnType="Number" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="0" />
+ </method>
+ <method id="snapInterval" returnType="Number" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="0" />
+ </method>
+ <method id="liveDragging" returnType="Boolean" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="false" />
+ </method>
+ <method id="enabled" returnType="Boolean" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="true" verbose="1" />
+ </method>
+ <method id="value" returnType="Number" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="0" />
+ </method>
+ <method id="componentInspectorSetting" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="width" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="height" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="x" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="y" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="scaleX" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="scaleY" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="visible" returnType="Boolean" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="true" verbose="1" />
+ </method>
+ <method id="focusEnabled" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="mouseFocusEnabled" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="focusManager" returnType="IFocusManager" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="version" returnType="String" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="focusTarget" returnType="IFocusManagerComponent" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="graphics" returnType="Graphics" isProperty="true" permissions="readonly">
+ </method>
+ <method id="buttonMode" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="dropTarget" returnType="DisplayObject" isProperty="true" permissions="readonly">
+ </method>
+ <method id="hitArea" returnType="Sprite" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="useHandCursor" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="soundTransform" returnType="SoundTransform" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="numChildren" returnType="int" isProperty="true" permissions="readonly">
+ </method>
+ <method id="textSnapshot" returnType="TextSnapshot" isProperty="true" permissions="readonly">
+ </method>
+ <method id="tabChildren" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="mouseChildren" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="tabEnabled" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="tabIndex" returnType="int" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="focusRect" returnType="Object" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="mouseEnabled" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="doubleClickEnabled" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="contextMenu" returnType="ContextMenu" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="accessibilityImplementation" returnType="AccessibilityImplementation" isProperty="true" permissions="readwrite">
+ <Inspectable environment="none" />
+ </method>
+ <method id="root" returnType="DisplayObject" isProperty="true" permissions="readonly">
+ </method>
+ <method id="stage" returnType="Stage" isProperty="true" permissions="readonly">
+ </method>
+ <method id="name" returnType="String" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="parent" returnType="DisplayObjectContainer" isProperty="true" permissions="readonly">
+ </method>
+ <method id="mask" returnType="DisplayObject" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="mouseX" returnType="Number" isProperty="true" permissions="readonly">
+ </method>
+ <method id="mouseY" returnType="Number" isProperty="true" permissions="readonly">
+ </method>
+ <method id="rotation" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="alpha" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="cacheAsBitmap" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="opaqueBackground" returnType="Object" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="scrollRect" returnType="Rectangle" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="filters" returnType="Array" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="blendMode" returnType="String" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="transform" returnType="Transform" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="scale9Grid" returnType="Rectangle" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="loaderInfo" returnType="LoaderInfo" isProperty="true" permissions="readonly">
+ </method>
+ <method id="accessibilityProperties" returnType="AccessibilityProperties" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="setSize" returnType="void" isProperty="false">
+ </method>
+ <method id="Slider" isConstructor="true" isProperty="false">
+ </method>
+ <method id="setStyle" returnType="void" isProperty="false">
+ </method>
+ <method id="clearStyle" returnType="void" isProperty="false">
+ </method>
+ <method id="getStyle" returnType="Object" isProperty="false">
+ </method>
+ <method id="move" returnType="void" isProperty="false">
+ </method>
+ <method id="validateNow" returnType="void" isProperty="false">
+ </method>
+ <method id="invalidate" returnType="void" isProperty="false">
+ </method>
+ <method id="setSharedStyle" returnType="void" isProperty="false">
+ </method>
+ <method id="drawFocus" returnType="void" isProperty="false">
+ </method>
+ <method id="setFocus" returnType="void" isProperty="false">
+ </method>
+ <method id="getFocus" returnType="InteractiveObject" isProperty="false">
+ </method>
+ <method id="drawNow" returnType="void" isProperty="false">
+ </method>
+ <method id="UIComponent" isConstructor="true" isProperty="false">
+ </method>
+ <method id="startDrag" returnType="void" isProperty="false">
+ </method>
+ <method id="stopDrag" returnType="void" isProperty="false">
+ </method>
+ <method id="Sprite" isConstructor="true" isProperty="false">
+ </method>
+ <method id="addChild" returnType="DisplayObject" isProperty="false">
+ </method>
+ <method id="addChildAt" returnType="DisplayObject" isProperty="false">
+ </method>
+ <method id="removeChild" returnType="DisplayObject" isProperty="false">
+ </method>
+ <method id="removeChildAt" returnType="DisplayObject" isProperty="false">
+ </method>
+ <method id="getChildIndex" returnType="int" isProperty="false">
+ </method>
+ <method id="setChildIndex" returnType="void" isProperty="false">
+ </method>
+ <method id="getChildAt" returnType="DisplayObject" isProperty="false">
+ </method>
+ <method id="getChildByName" returnType="DisplayObject" isProperty="false">
+ </method>
+ <method id="getObjectsUnderPoint" returnType="Array" isProperty="false">
+ </method>
+ <method id="areInaccessibleObjectsUnderPoint" returnType="Boolean" isProperty="false">
+ </method>
+ <method id="contains" returnType="Boolean" isProperty="false">
+ </method>
+ <method id="swapChildrenAt" returnType="void" isProperty="false">
+ </method>
+ <method id="swapChildren" returnType="void" isProperty="false">
+ </method>
+ <method id="DisplayObjectContainer" isConstructor="true" isProperty="false">
+ </method>
+ <method id="InteractiveObject" isConstructor="true" isProperty="false">
+ </method>
+ <method id="globalToLocal" returnType="Point" isProperty="false">
+ </method>
+ <method id="localToGlobal" returnType="Point" isProperty="false">
+ </method>
+ <method id="getBounds" returnType="Rectangle" isProperty="false">
+ </method>
+ <method id="getRect" returnType="Rectangle" isProperty="false">
+ </method>
+ <method id="hitTestObject" returnType="Boolean" isProperty="false">
+ </method>
+ <method id="hitTestPoint" returnType="Boolean" isProperty="false">
+ </method>
+ <method id="DisplayObject" isConstructor="true" isProperty="false">
+ </method>
+ <method id="toString" returnType="String" isProperty="false">
+ </method>
+ <method id="addEventListener" returnType="void" isProperty="false">
+ </method>
+ <method id="removeEventListener" returnType="void" isProperty="false">
+ </method>
+ <method id="dispatchEvent" returnType="Boolean" isProperty="false">
+ </method>
+ <method id="hasEventListener" returnType="Boolean" isProperty="false">
+ </method>
+ <method id="willTrigger" returnType="Boolean" isProperty="false">
+ </method>
+ <method id="EventDispatcher" isConstructor="true" isProperty="false">
+ </method>
+ <method id="Object" isConstructor="true" isProperty="false">
+ </method>
+</class>]]></classProperties>
+ <customIcon>
+ <CustomIcon rowByteCount="72" colorDepth="32" width="18" height="18" frameRight="270" frameBottom="270" isTransparent="true" href="haf1mx0luk.dat"/>
+ </customIcon>
+</DOMComponentItem>
\ No newline at end of file
--- a/script/record_mic/record_mic/LIBRARY/Symbole 1.xml Mon Jun 04 19:18:51 2012 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Symbole 1" itemID="4fcc8f19-00000352" sourceLibraryItemHRef="Symbole 1" lastModified="1338806041">
- <timeline>
- <DOMTimeline name="Symbole 1">
- <layers>
- <DOMLayer name="Calque 1" color="#4FFF4F" current="true" isSelected="true">
- <frames>
- <DOMFrame index="0" keyMode="9728">
- <elements>
- <DOMBitmapInstance name="" referenceID="" selected="true" libraryItemName="Screen Shot 2012-06-04 at 12.33.03 PM.png"/>
- </elements>
- </DOMFrame>
- </frames>
- </DOMLayer>
- </layers>
- </DOMTimeline>
- </timeline>
-</DOMSymbolItem>
\ No newline at end of file
--- a/script/record_mic/record_mic/META-INF/metadata.xml Mon Jun 04 19:18:51 2012 +0200
+++ b/script/record_mic/record_mic/META-INF/metadata.xml Tue Jun 05 12:49:37 2012 +0200
@@ -5,8 +5,8 @@
xmlns:xmp="http://ns.adobe.com/xap/1.0/">
<xmp:CreatorTool>Adobe Flash Professional CS5</xmp:CreatorTool>
<xmp:CreateDate>2012-06-01T15:13:14+02:00</xmp:CreateDate>
- <xmp:MetadataDate>2012-06-04T12:08:31+02:00</xmp:MetadataDate>
- <xmp:ModifyDate>2012-06-04T12:08:31+02:00</xmp:ModifyDate>
+ <xmp:MetadataDate>2012-06-05T12:39:22+02:00</xmp:MetadataDate>
+ <xmp:ModifyDate>2012-06-05T12:39:22+02:00</xmp:ModifyDate>
</rdf:Description>
<rdf:Description rdf:about=""
xmlns:dc="http://purl.org/dc/elements/1.1/">
@@ -15,7 +15,7 @@
<rdf:Description rdf:about=""
xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#">
- <xmpMM:InstanceID>xmp.iid:F77F1174072068118A6DF745D2B32CAD</xmpMM:InstanceID>
+ <xmpMM:InstanceID>xmp.iid:F77F1174072068118C14CD09EB1E427B</xmpMM:InstanceID>
<xmpMM:DocumentID>xmp.did:F77F11740720681188C6EA8C8D268D08</xmpMM:DocumentID>
<xmpMM:OriginalDocumentID>xmp.did:F77F11740720681188C6EA8C8D268D08</xmpMM:OriginalDocumentID>
<xmpMM:History>
@@ -31,6 +31,18 @@
<stEvt:instanceID>xmp.iid:F77F1174072068118A6DF745D2B32CAD</stEvt:instanceID>
<stEvt:when>2012-06-01T15:13:14+02:00</stEvt:when>
</rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <stEvt:action>created</stEvt:action>
+ <stEvt:instanceID>xmp.iid:F77F1174072068118A6D8B16A136AC47</stEvt:instanceID>
+ <stEvt:when>2012-06-01T15:13:14+02:00</stEvt:when>
+ <stEvt:softwareAgent>Adobe Flash Professional CS5</stEvt:softwareAgent>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <stEvt:action>created</stEvt:action>
+ <stEvt:instanceID>xmp.iid:F77F1174072068118C14CD09EB1E427B</stEvt:instanceID>
+ <stEvt:when>2012-06-01T15:13:14+02:00</stEvt:when>
+ <stEvt:softwareAgent>Adobe Flash Professional CS5</stEvt:softwareAgent>
+ </rdf:li>
</rdf:Seq>
</xmpMM:History>
</rdf:Description>
Binary file script/record_mic/record_mic/bin/SymDepend.cache has changed