在Eclipse中我發起使用以下Macrodef從ANT嵌入的SWF的HTML頁面啓用控制檯輸出EXEC Ant任務
<macrodef name="runhtml">
<attribute name="url" />
<attribute name="browser" default="${app.browser.firefox}" />
<sequential>
<exec
executable="open"
vmlauncher="true"
spawn="false"
failonerror="true">
<arg line="-a '@{browser}'" />
<arg line="@{url}" />
</exec>
</sequential>
</macrodef>
儘管該SWF包含痕跡的事實,我沒有得到它們在控制檯中的任何輸出。什麼可能導致這個?
優秀的答案。可惜我還沒有2年前使用過Flash;) – Undistraction 2012-07-11 06:15:49