Archived Comments (locked)
|
|
The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008) |
|
|
Anyone know how to enable this script on the friend updates? For some reason it doesn't work for me... anyone else having this problem? |
|
|
Hey, I'm kinda new to this scipts thing, but I am catchin on. Is there anyway you could make the image rollover for all pictures on myspace? Because on mine it only does certain pics. I use the Home Auto-Update script and the Home skin switchup script and it wont show the picture when I rollover my friends pics on the Bulletins screen and the online friends screen it won't let me view them. Is there a way you can make that possible? |
|
|
that would be incredible if they could.... But I don't think so. maybe put a delay to run that part of the script after the unpaged photos script runs. |
|
|
It works great, but if I use it along with Myspace - Unpaged Photos..... http://userscripts.org/scripts/show/13030 it will only work on the first page of images. Anyway to fix this? |
|
|
update..... it's not working... |
|
|
Great script ...thanks :D |
|
|
I love this script and I've been using it for a long time. Is there any chance of getting a version that works on flickr? |
|
|
Great work!!! High five!! lol thanks. |
|
|
Great script. thanks Mark, and thank you Graig for the modification to move the image to the right if it's covered by mouse. here's the full script including Craig's changes in case any of you need it:
var allImages, thisImage;
allImages = document.evaluate(
// Holds paths of all the enlarged images
i=0;
thisImage = allImages.snapshotItem(i); // Example of photo src --> 03/31/2006
var fileName = src.replace("_m.jpg","_l.jpg");
thisImage.alt = i;
var newDiv = document.createElement('div');
newDiv.innerHTML = html; document.body.appendChild(newDiv); thisImage.addEventListener(
thisImage.addEventListener(
i++;
function addGlobalStyle(css) {
addGlobalStyle('.tip {font:10px/12px Arial,Helvetica,sans-serif;border:0;padding:3px 3px 3px 3px;visibility:hidden;position:absolute;z-index:100;color:#333333;top:20px;left:90px;background-color:#3B5998;}');
function popUp(pgX,pgY,screeny,oi){
if ( ( pgX - 40 ) < obj.offsetWidth )
top = pgY - screeny + 170; objStyle.left = left;
}
|
|
|
Perfect :-D |
|
|
I think that happens when you roll over an image that is then covered up by the large version. I'll see if I can find a fix. |
|
|
I noticed that with the new script, that sometimes images just tend to flicker. I think it happens when click on a image, but I'm not sure yet. |
|
|
I like this script alot, but I prefer the older method of the image popping right above or below the cursor, and to fix the problem with it going off the screen (up or down anyway) I changed the IMG's CSS to:
The only thing I'd like to suggest (this applies to the older version though) is to figure out a way to keep it from going off the screen to the sides |
|
|
Thanks for the suggestions! Check out the new version of the script and let me know what you think. |
|
|
Hey i really like this script, however the images show up off the scrfeen, wondering if its gonna be updated to work correctly like the one on facebook |
|
|
I'd like to get the results you got Graig, but your info was way over my head considering I don't know enough about JS. |
|
|
I modified the script so that it always loads the image in the upper left-hand corner of the screen unless that would put it under the mouse-cursor. In that case it loads in the upper right (if the image is big enough this could still put it under the cursor). First, I made a variable called screeny and passed it to the popup function: var screeny = event.screenY;
Then the declaration of popUp needs the screeny addition:
Last, I modified the popup function so that top and left are calculated like this: var top;
if ( ( pgX - 40 ) < obj.offsetWidth )
top = pgY - screeny + 170; The 170 in the top calculation puts it 170 pixels from the top of the screen. Depending on how many toolbars you have in Firefox, you may need to adjust this value. Enjoy! |
|
|
This script is great, but it could use one change. Since a lot of myspace images are big and can run off the screen, is it possible to set a screen position where all images will appear, rather than popping up next to the mouse? (For instance, as it does in the "inYOfac3Book" script.) |