mmm .... 這需要一些小技巧了!
在 LifeType 1.0.2 中 article 物件 有一個新的 method,叫做 getArticleResources(),你可以參考:
http://api.lifetype.org.tw/d9/de8/class_article.html#495d590f599347bf51446ee36b11c664所以我們可以在文章的顯示時,就知道這一篇文章包含哪些 resource,我們可以在模版中透過這樣的方式來存取 resource
{assign var=resources value=$post->getArticleResources()}
{foreach from=resources item=resource}
{if $resource->isSound()}
<a href="{$url->resourceDownloadLink($resource)}" />Download</a>
{/if}
{/foreach}
這只是一個 example,線上收聽的部分必須去用相關的 flash 才能作的到,作法一樣。
我期待你依照這樣的提示,把這個功能可以實做出來,在這裡分享。真的很簡單啦,請自己試試看。
Mark