七、打包你的插件。
當(dāng)一切測(cè)試無(wú)誤,你的插件做好后,你還需要將它與其他朋友分享。由于新版的Fireworks MX支持標(biāo)準(zhǔn)的MXP插件封裝格式,因此這里我再簡(jiǎn)單介紹一下封裝你的插件的辦法。
安裝完Fireworks MX后,在你的Commands命令下會(huì)找到Manage Extensions命令,這可以啟動(dòng)插件管理器,封裝插件首先需要你準(zhǔn)備好你的SWF文件和相應(yīng)的MXI文件,SWF也就是你在Flash MX中開(kāi)發(fā)的插件,MXI文件包含了關(guān)于此插件的說(shuō)明和相關(guān)信息,此文件要求為標(biāo)準(zhǔn)的XML格式,主要內(nèi)容如下:
<macromedia-extension name="MacButton" version="1.0" type="Command"> <!-- List the required/compatible products --> <products> <product name="Fireworks" version="6" primary="true" /> </products> <!-- Describe the author --> <author name="Mengjue" /> <!-- Describe the extension --> <description> <![CDATA[This command can easy creative Mac style button.]]> </description> <!-- Describe where the extension shows in the UI of the product --> <ui-access> <![CDATA[To use MacButton V1.0, choose Commands > Bitgenius > MacButton.]]> </ui-access> <!-- Describe the files that comprise the extension --> <files> <file name="MacButton.swf" destination="$fireworks/configuration/commands/bitgenius/" /> </files> <!-- Describe the changes to the configuration --> <configuration-changes> </configuration-changes> </macromedia-extension>
你可以很容易看懂其中需要你填寫(xiě)的,插件名稱(chēng)、開(kāi)發(fā)作者、插件說(shuō)明、執(zhí)行路徑以及插件的安裝目錄,將他們修改為你自己希望的,并保存為MXI文件。準(zhǔn)備好你的SWF和MXI文件并放在同一個(gè)目錄下,然后就可以打包他們了。
轉(zhuǎn)到Fireworks MX,啟動(dòng)Extensions Manage插件管理器。執(zhí)行File>Package Extension,選擇你剛才寫(xiě)好的MXI文件,并為你最終的插件起一個(gè)名字,Extension Manage會(huì)將你的SWF文件和MXI文件打包為一個(gè)單獨(dú)的MXP文件,非常簡(jiǎn)單。
出處:
責(zé)任編輯:藍(lán)色
上一頁(yè) 全部代碼 下一頁(yè) 打包為面板形式
◎進(jìn)入論壇Photoshop、Fireworks版塊參加討論
|