本文僅限 flex builder 3.0 版本生成的 flex 專案。
在專案bin-debug資料夾中找到以.html結尾的檔案, 該檔案其實就是執行swf檔案的htm網頁。
修改如下幾個地方:
紅色部分是新增引數的地方,注意兩處都必須寫:
// do not modify the following four lines
// location visited after installation is complete if installation is required
var mmplayertype = (isie == true) ? "activex" : "plugin";
var mmredirecturl = window.location;
document.title = document.title.slice(0, 47) + " - flash player installation";
var mmdoctitle = document.title;
ac_fl_runcontent(
"src", "playerproductinstall",
"flashvars","para1=引數值",
在actionscript 中獲取著這兩個引數:
="oninit()">
// 如果上面紅色地方 是creationcomplete=="oninit()" ,那麼stage可能為空
var param:object = stage.loaderinfo.parameters;
if(param) }}
]]>
向Process傳引數
摘要 有的時候,我們需要在乙個程序啟動另外乙個程序,並傳遞一些引數過去。正文 我們很容易會想到下面的 processstartinfo startinfo new processstartinfo startinfo.filename d test.exe startinfo.arguments s...
彙編向函式傳引數
今天師兄講了下彙編如何向函式傳引數,為了怕以後忘記,先記在這裡。在老核心裡面,彙編往函式傳遞引數是第乙個引數是棧頂,依次往後。但是得在函式定義的時候用asmlinkage 字首,是函式強制從彙編裡面取引數。現在新核心是彙編的第乙個引數是eax,第二個引數是edx。以下 是在師兄的程式裡面看到的,st...
向shell指令碼傳引數
執行 nano test.sh 建立乙個新的shell指令碼。指令碼test.sh的內容如下 bin sh name 1 echo the are great man 給新建立的test.sh的指令碼賦可執行許可權,命令為 chmod 755 test.sh 執行 test.sh xiao wang...