ソース掲示板




すべてから検索

キーワード   条件 表示 現行ログ 過去ログ トピックス 名前 本文

  メンテナンス 前画面に戻る

対象スレッド 件名: 【Flex3 & AIR】 開発環境サンプル
名前: lightbox
処理選択
パスワード

件名 【Flex3 & AIR】 開発環境サンプル
名前 lightbox
コメント
http://lightbox.on.coocan.jp/download/flex3_air_sample.lzh

http://winofsql.jp/VA003334/flex3080714212649_080714213313.htm(debug.swc はこちら)

[[air_build.bat]]
@DIV
c:\flex3\bin\mxmlc Mainw.mxml -library-path+=debug.swc +configname=air
@END

[[air_start.bat]]
@DIV
c:\flex3\bin\adl app.xml
@END

[[app.xml]]
@DIV
<?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>
@END

[[open_mmcfg.wsf]]
@DIV
<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>
@END

[[open_mmcfglog.wsf]]
@DIV
<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>
@END