please can someone make a youtube resize script like this one..?

Subscribe to please can someone make a youtube resize script like this one..? 9 posts, 2 voices

 
bobielawlintine Scriptwright

i can't write JS, but i really hope someone can write a script to resize youtube videos just like this one below, but with the comments and related videos etc still there, like the old youtube resizer script that stopped working. this is the size i'm talking about -
http://userscripts.org/scripts/show/9342

thanks if anyone does it.

 
Mindeye Scriptwright

Have you tried my YousableTubeFix script? http://userscripts.org/scripts/show/13333

 
bobielawlintine Scriptwright

hi, yes i tried it, and went to the options bit, but no matter what changes i made none of them did anything! i tried a floating point number off the top of my head too and still nothing happened. i have too many extensions and userjs to mention plus http filtering so it's not worth finding out why it doesn't work only for me. i use linux too, but i can't see why that makes any difference?

can someone hack that script above? it will only take a minute!

 
Mindeye Scriptwright

The script you link to is very simple, it just add styles to the page to hide or resize elements. Edit the script and comment the lines after "// Get ride of stuff!" (to comment a line, just add two slashes (//) at the beginning of each line). I hope that helps :-)

 
bobielawlintine Scriptwright

yeap, i noticed it looked simple, i'll delete or comment out some stuff, thanks.

 
bobielawlintine Scriptwright

right, well that didn't take long lol

 
bobielawlintine Scriptwright

i thought it would only take a minute! i made the player the right size now, but i don't know how to move everything to the right of the player to below the player when it's bigger :| i looked through your code and it's nicely commented, but i don't know which bit moves that whole bit down below the player. atm the enlarged player is overlayed everything to the right of it!

 
Mindeye Scriptwright

Add at the end of the script:

var vidTitle = document.getElementById("vidTitle");
var player = document.getElementById("movie_player");

if (vidTitle && player) vidTitle.parentNode.insertBefore(player, vidTitle.nextSibling);

 
bobielawlintine Scriptwright

wow, it works, i'm in shock lol. thanks for the help :D