ソース掲示板




すべてから検索

キーワード   条件 表示 現行ログ 過去ログ トピックス 名前 本文
【Flex3 & AIR】 開発環境サンプル
日時: 2018/02/06 18:50
名前: lightbox



http://lightbox.on.coocan.jp/download/flex3_air_sample.lzh

debug.swc はこちら

air_build.bat
拡張子:
c:\flex3\bin\mxmlc Mainw.mxml -library-path+=debug.swc +configname=air
air_start.bat
拡張子:
c:\flex3\bin\adl app.xml
app.xml
拡張子:
<?xml version="1.0" encoding="utf-8" ?> 
<application xmlns="http://ns.adobe.com/air/application/1.0"> 
	
	<id>DIALOGPOPUP</id> 
	<version>1.0</version> 
	<filename>DIALOGPOPUP</filename> 
	
	<initialWindow> 
		<title>ポップアップのテスト</title> 
		<content>Mainw.swf</content> 
		<x>0</x>
		<y>0</y>
		<width>600</width>
		<height>200</height>
		<systemChrome>standard</systemChrome> 
		<transparent>false</transparent> 
		<visible>true</visible> 
		<minimizable>true</minimizable> 
		<maximizable>true</maximizable> 
		<resizable>true</resizable> 
	</initialWindow>

</application>
open_mmcfg.wsf
拡張子:
<JOB>
<SCRIPT
	language="VBScript"
	src="http://lightbox.in.coocan.jp/laylaClass.vbs">
</SCRIPT>

<SCRIPT language=VBScript>
' ***********************************************************
' 処理開始
' ***********************************************************
Call laylaFunctionTarget( "http://lightbox.in.coocan.jp/" )
Call laylaLoadFunction( "baseFunction.vbs" )

str = GetShellDir( &H28 ) & "\mm.cfg"
strCommand = "notepad " & str

GetWshShell
Call WshShell.Run( strCommand )

</SCRIPT>
</JOB>
open_mmcfglog.wsf
拡張子:
<JOB>
<SCRIPT
	language="VBScript"
	src="http://lightbox.in.coocan.jp/laylaClass.vbs">
</SCRIPT>

<SCRIPT language=VBScript>
' ***********************************************************
' 処理開始
' ***********************************************************
Call laylaFunctionTarget( "http://lightbox.in.coocan.jp/" )
Call laylaLoadFunction( "baseFunction.vbs" )

str = GetShellDir( &H28 ) & "\Application Data\Macromedia\Flash Player\Logs\flashlog.txt"
strCommand = "notepad " & str

GetWshShell
Call WshShell.Run( strCommand )

</SCRIPT>
</JOB>
メンテナンス


日時: 2018/02/06 18:50
名前: lightbox