3. Posting a video from YouTubeThis one is a little more confusing, so I'll do this one with an example.
If you look at
http://uk.youtube.com/watch?v=UkTQwP2gFxU it has two bits of code:
1. URL
2. Embed
What we want is the Embed code... but it's not finished there!!
Instead of copying and pasting, unfortunately there is a little bit of work involved. So from the following bit of code we want width, height and URL:
<object width="
425" height="
344"><param name="movie" value="
http://www.youtube.com/v/UkTQwP2gFxU&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/UkTQwP2gFxU&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>
Quite messy, but we can get:
1. Width = 425
2. Height = 344
3. URL =
http://www.youtube.com/v/UkTQwP2gFxU&hl=en&fs=1Now we use them in:
[ flash=width,height ]URL[ /flash ]
(again without spaces)
so we have:
[ flash=425,344 ]http://www.youtube.com/v/UkTQwP2gFxU&hl=en&fs=1[ /flash ]
Happy posting folks!