HTML Question

naiakoa

New Member
Sup. Been a while since i been here. ok heres my question. I have been learning HTML coding and i know pretty much almost all of it. im trying to get music to play on my forum, wich i have wit this code:
Code:
<embed src="01-manmademan_-_the_legend_(triptych_desire_remix)-psycz.mp3" autostart="true" loop="true" hidden="true">
now my question is this. im how do i get it to not restart each time i refresh webpage and or go to diff links on the website??
 

dusean

New Member
<embed src="01-manmademan_-_the_legend_(triptych_desire_remix)-psycz.mp3" autostart="false" loop="true" hidden="true">

here u go :D .... just change autostart to false ...then it will not restart automatically u refersh
 

naiakoa

New Member
na already figured it out but ill post what i figured out how to get it to work the way i wanted it to be.
Code:
<embed src="01-manmademan_-_the_legend_(triptych_desire_remix)-psycz.mp3" 
width=75 height=25 autostart=true repeat=true loop=true> </embed> <font face="Morpheus"><font color="red"> Click the paus/play button to hear music/stop music</font></font>
<iframe name="Death uppon all" src="http://ultimatedestruction.servegame.org/forum/index.php" width="1250" height="500" scrolling="1">
 

GgAcE

New Member
naiakoa said:
na already figured it out but ill post what i figured out how to get it to work the way i wanted it to be.
Code:
<embed src="01-manmademan_-_the_legend_(triptych_desire_remix)-psycz.mp3" 
width=75 height=25 autostart=true repeat=true loop=true> </embed> <font face="Morpheus"><font color="red"> Click the paus/play button to hear music/stop music</font></font>
<iframe name="Death uppon all" src="http://ultimatedestruction.servegame.org/forum/index.php" width="1250" height="500" scrolling="1">

First off you have a spelling mistake =X

It's spelled "Pause" ^_^

Second off, Iframes wont work in all browsers & often times can cause a terrible lag.

I would suggest sticking with the above <embed> code.
 

naiakoa

New Member
alright. i have another question is there a way to make a BBcode to play a video on my forums from a given URL? (not like the google one) i need to make one similar to this one html code:
Code:
<embed src="http://media.imeem.com/pl/mWjllkHHXu/aus=false/pv=2/" type="application/x-shockwave-flash" width="460" height="390" allowFullScreen="true"></embed>
so that it does what that code does...but in BBcode form
 
Top