Originally posted by Kelly_Bean
I wanted to create a scrollbox with some of my favorite videos for my Myspace and I didn't really want them to be fullsize so is there any code for mini-youtube videos that are proportionate so I can embed them into my Myspace profile?
When you get the embed code from MySpace, just edit the pixel size information in the code.
So this:
[code]<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/4Ny5ajCn0xw&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/4Ny5ajCn0xw&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>[/code]
Becomes this:
[code]<object width="106" height="86"><param name="movie" value="http://www.youtube.com/v/4Ny5ajCn0xw&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/4Ny5ajCn0xw&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="106" height="86"></embed></object>[/code]
That should work...