Archived Comments (locked)
|
|
The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008) |
|
|
Oh, wow, I should pay more attention to my scripts. I didn't know anyone was using them. I made a few modifications awhile back to this and added animal bodies and things. I'll u/l, along with recent modifications, as soon as I revisit it and make sure it's cool. |
|
|
I should add that the left/right arrows only change the width. the [] will change the height. I'll see about adding in a rotate later, it would require 2 x points and 2 y points... which I'll have to do some fiddling with to get to work. |
|
|
Here's a couple bits to the resize function that I made. Originally I had it mapped to the up/down arrows, but that conflicts with page scrolling so I've set it to [] instead... eventually, I'll probably end up switching it all over to wasd
if(e.keyCode==221)
{ //This bit by Richard Ward [wardrich@gmail.com]
//keyCode 221 is the ] key
current_img.height += 1;
}
if (e.keyCode==219)
{ //this bit by Richard Ward [wardrich@gmail.com]
//keyCode 95 is the -/_ key
current_img.height -= 1;
}
|
|
|
sorry, not profile.php, but album.php (http://*facebook.com*album.php*), and http://*facebook.com*photo_search* so as to include all possible tagging instances. |
|
|
IMO the best Greasemonkey script out there. It'd help if it had a rotate feature as well (I'm not skilled enough to create on myself), but otherwise well done. For future versions, you might want to add *facebook.com/photo.php?*
to the included sites list. Just a thought |
|
|
Actually, there is resize. You have to look in the code for the info:
|
|
|
quite possibly the greatest script ever created. Unfortunately, there's no resize or rotate feature. If this had a few more options, it would earn my unqualified reccomendation. |
|
|
Haha, good for laugh.. Works as of 17.Aug.2006 |