FlashMusicCustomTags

From Facebook Developer Wiki

Jump to: navigation, search

[edit] FlashMusic

This let you display the Flash Mp3 Player on your application.

[edit] Variables

  • link (String)
    • [required] Specify the link of the Mp3 Music, the extension must be end with ".mp3"
  • backcolor (String|hex)
    • [optional] Specify the back color of the Flash Mp3 Player
  • frontcolor (String|hex)
    • [optional] Specify the front color of the Flash Mp3 Player
  • width (int)
    • [optional] Specify the width of the Flash Mp3 Player
  • height (int)
    • [optional] Specify the height of the Flash Mp3 Player
  • autostart (boolean)
    • [optional] Set autostart = "true" let the music play automatically
  • volume (int|0-100)
    • [optional] Adjust the volume of the Flash Mp3 Player
  • repeat (boolean)
    • [optional] Set repeat = "true" let the music play repeatedly

[edit] Code

<fb:fbml xmlns:music="http://external.facebook.com/apps/flashmusic"> <music:flashmp3 link="http://qxinnet.com/images/music/close_to_u.mp3" /> </fb:fbml> <fb:fbml xmlns:music="http://external.facebook.com/apps/flashmusic"> <music:flashmp3 link="http://qxinnet.com/images/music/close_to_u.mp3" backcolor="0000FF" frontcolor="0000FF"/> </fb:fbml> <fb:fbml xmlns:music="http://external.facebook.com/apps/flashmusic"> <music:flashmp3 link="http://qxinnet.com/images/music/close_to_u.mp3" width="500" height="20" /> </fb:fbml> <fb:fbml xmlns:music="http://external.facebook.com/apps/flashmusic"> <music:flashmp3 link="http://qxinnet.com/images/music/close_to_u.mp3" autostart="true"/> </fb:fbml> <fb:fbml xmlns:music="http://external.facebook.com/apps/flashmusic"> <music:flashmp3 link="http://qxinnet.com/images/music/close_to_u.mp3" volume="50" /> </fb:fbml> <fb:fbml xmlns:music="http://external.facebook.com/apps/flashmusic"> <music:flashmp3 link="http://qxinnet.com/images/music/close_to_u.mp3" repeat="true" /> </fb:fbml> <fb:fbml xmlns:music="http://external.facebook.com/apps/flashmusic"> <music:flashmp3 link="http://qxinnet.com/images/music/close_to_u.mp3" backcolor="0000FF" frontcolor="0000FF" repeat="true" width="500" height="20" autostart="true" volume="50" repeat="true" /> </fb:fbml>
reference