チェンジセット 1901: as3/gunyarapaint/trunk
- コミット日時:
- 2008/11/26 22:17:32 (4 年前)
- ファイル:
-
- as3/gunyarapaint/trunk/picokakiko/.actionScriptProperties (更新) (1 diff)
- as3/gunyarapaint/trunk/picokakiko/imgs/icon-play-disabled.png (追加)
- as3/gunyarapaint/trunk/picokakiko/imgs/icon-play-over.png (追加)
- as3/gunyarapaint/trunk/picokakiko/imgs/icon-play.png (更新) (変更前)
- as3/gunyarapaint/trunk/picokakiko/imgs/icon-stop-disabled.png (追加)
- as3/gunyarapaint/trunk/picokakiko/imgs/icon-stop-over.png (追加)
- as3/gunyarapaint/trunk/picokakiko/src/picokakiko.mxml (更新) (1 diff)
- as3/gunyarapaint/trunk/picokakiko/src/picoplayer.mxml (更新) (5 diffs)
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/gunyarapaint/trunk/picokakiko/.actionScriptProperties
r1076 r1901 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <actionScriptProperties mainApplicationPath="picokakiko.mxml" version="3"> 3 <compiler additionalCompilerArguments="-locale ja_JP" copyDependentFiles="true" enableModuleDebug="true" generateAccessible="false" htmlExpressInstall="true" htmlGenerate="true" htmlHistoryManagement="true" htmlPlayerVersion="9.0.28" htmlPlayerVersionCheck="true" outputFolderPath="bin-debug" sourceFolderPath="src" strict="true" useApolloConfig="false" verifyDigests="true" warn="true">3 <compiler additionalCompilerArguments="-locale ja_JP" copyDependentFiles="true" enableModuleDebug="true" flexSDK="Flex 3.2.3643" generateAccessible="false" htmlExpressInstall="true" htmlGenerate="true" htmlHistoryManagement="true" htmlPlayerVersion="10.0.12" htmlPlayerVersionCheck="true" outputFolderPath="bin-debug" sourceFolderPath="src" strict="true" useApolloConfig="false" verifyDigests="true" warn="true"> 4 4 <compilerSourcePath/> 5 5 <libraryPath defaultLinkType="1"> 6 <libraryPathEntry kind="4" path=""/> 6 <libraryPathEntry kind="4" path=""> 7 <modifiedEntries> 8 <libraryPathEntry kind="3" linkType="4" path="${PROJECT_FRAMEWORKS}/libs/framework.swc" useDefaultLinkType="true"> 9 <crossDomainRsls> 10 <crossDomainRslEntry autoExtract="true" policyFileUrl="" rslUrl="framework_3.2.0.3958.swz"/> 11 <crossDomainRslEntry autoExtract="true" policyFileUrl="" rslUrl="framework_3.2.0.3958.swf"/> 12 </crossDomainRsls> 13 </libraryPathEntry> 14 </modifiedEntries> 15 </libraryPathEntry> 7 16 <libraryPathEntry kind="1" linkType="1" path="libs"/> 8 17 <libraryPathEntry kind="3" linkType="1" path="/nicopedia/bin/nicopedia.swc" useDefaultLinkType="false"/> as3/gunyarapaint/trunk/picokakiko/src/picokakiko.mxml
r1891 r1901 10 10 <mx:Script source="picokakiko.as"> 11 11 </mx:Script> 12 <mx:Label x="10" y="383" text="ver.2008112 301"/>12 <mx:Label x="10" y="383" text="ver.2008112601"/> 13 13 <mx:Label x="28" y="7" text="名前"/> 14 14 <mx:TextInput id="fromTextInput" x="61" y="3" maxChars="32" fontSize="14" width="154"/> as3/gunyarapaint/trunk/picokakiko/src/picoplayer.mxml
r1403 r1901 3 3 xmlns:flmml="com.txt_nifty.sketch.flmml.*" 4 4 creationComplete="init()" 5 layout="absolute" width="86" height="18" backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#FFFFFF, #FFFFFF]" color="#222222" verticalScrollPolicy="off" horizontalScrollPolicy="off">6 <mx:Button id="playButton" x="1" y="1" width="16" enabled="false" color="#444444" fontSize="12" paddingBottom="0" paddingLeft="0" paddingRight="0" paddingTop="0" icon="@Embed(source='../imgs/icon-play.png')" height="16"/>7 <mx:Button id="stopButton" x="18" y="1" enabled="false" fontSize="12" width="16" paddingBottom="0" paddingLeft="0" paddingRight="0" paddingTop="0" icon="@Embed(source='../imgs/icon-stop.png')" height="16" />5 layout="absolute" width="86" height="18" color="#222222" verticalScrollPolicy="off" horizontalScrollPolicy="off" backgroundGradientColors="[#ff2020, #ff2020]" backgroundAlpha="0"> 6 <mx:Button id="playButton" x="1" y="1" width="16" enabled="false" fontSize="12" paddingBottom="0" paddingLeft="0" paddingRight="0" paddingTop="0" icon="@Embed(source='../imgs/icon-play.png')" height="16" disabledIcon="@Embed(source='../imgs/icon-play-disabled.png')" overIcon="@Embed(source='../imgs/icon-play-over.png')"/> 7 <mx:Button id="stopButton" x="18" y="1" enabled="false" fontSize="12" width="16" paddingBottom="0" paddingLeft="0" paddingRight="0" paddingTop="0" icon="@Embed(source='../imgs/icon-stop.png')" height="16" disabledIcon="@Embed(source='../imgs/icon-stop-disabled.png')" overIcon="@Embed(source='../imgs/icon-stop-over.png')"/> 8 8 <flmml:FlMML id="mml_player"/> 9 9 … … 24 24 public function init():void { 25 25 autoPlay = (parameters['autoPlay'] == 'y'); 26 if (parameters['volume'] ) {26 if (parameters['volume'] && parameters['volume'] != '') { 27 27 mml_player.setMasterVolume(parameters['volume']); 28 28 volumeHSlider.value = parameters['volume']; … … 66 66 playButton.enabled = true; 67 67 stopButton.enabled = false; 68 this.setStyle('backgroundAlpha', '0'); 68 69 } 69 70 … … 78 79 } else { 79 80 playButton.enabled = false; 81 this.setStyle('backgroundAlpha', '0.3'); 80 82 mml_player.play(mml); 81 83 } … … 86 88 playButton.enabled = true; 87 89 stopButton.enabled = false; 90 this.setStyle('backgroundAlpha', '0'); 88 91 } 89 92

