Questions? Comments? Errors?
|
|
You're the one getting that error? I don't know what's causing that to happen. As far as I know, you're the only user getting that problem. Anything about your browsing environment that could be causing the problem? |
|
|
Not that I can find, Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.8) Gecko/2009032609 Firefox/3.0.8 not any other scripts running I have uninstalled / reinstalled with no effect ya got me ?. It's only me wtf!?!? |
|
|
Well, I'm the only one getting my error too. I think Myspace might be screwing around again. If you have NoScript installed, what happens if you block myspace.com ? Will it start working? That's what happened to me. So I know it's not me. |
|
|
Nope I saw that post, tried that. Same as it ever was LOL I swear mywaste hates me!! |
|
|
Any themes or add-ons? Some add-ons or themes will break the script. |
|
|
Sorry if this was already mentioned, but, I'm getting these 3 boxes at the bottom of every page that isn't MySpace Home. Here's some screen caps.
|
|
|
That's weird. Did you change anything the included/excluded pages settings? It sounds to me like that's a problem with Greasemonkey, not with the script. You're the only person that's reported the script running on the wrong pages.
|
|
|
huh.. turns out reinstalling the script fixed it. I'm not sure what was happening. |
|
|
code just broke for me,
|
|
|
Turn on reportErrors in the settings manager.
|
|
|
that's the one
|
|
|
That can be fixed by replacing these lines:
imgs.forEach(function(elm, i){
oldCells[i].firstChild.className = "photoContainerSmall";
var first, last;
if( (first = oldCells[i].firstChild.firstChild) == (last = oldCells[i].firstChild.lastChild) )
oldCells[i].firstChild.appendChild(imgs[i]);
else
oldCells[i].firstChild.replaceChild(imgs[i], oldCells[i].firstChild.lastChild);
imgs[i].src += ""; // Prevents images from never loading.
});
with these lines:
for(var i in imgs){
if(!oldCells[i]) break;
oldCells[i].firstChild.className = "photoContainerSmall";
var first, last;
if( (first = oldCells[i].firstChild.firstChild) == (last = oldCells[i].firstChild.lastChild) )
oldCells[i].firstChild.appendChild(imgs[i]);
else
oldCells[i].firstChild.replaceChild(imgs[i], oldCells[i].firstChild.lastChild);
imgs[i].src += ""; // Prevents images from never loading.
};
|
|
|
that did the trick |
|
|
That worked, but now there is no link to reply to bulletin or the likes. |
|
|
here's a random question for anyone who has a facebook is the little toolbar on the bottom javascript or a java app ? |
|
|
The toolbar is HTML and Javascript. |
|
|
New idea. A lot of my friends post YouTube video or other embedded media inside bulletins and it creates Vertical/Horizontal scrollbars. Why not make the bulletin windows re-sizeable, and/or auto-adjust width and height? |
|
|
i cannot get this script to work
|
|
|
help pls |
|
|
In version five the bulletin windows are large enough to fit youtube videos, if present. Azim, MySpace made changes that broke the script. Read above to find out how to fix the script, or wait til I upload version five. Use ctrl+F to find the code to replace. |
|
|
okeh
|
|
|
Any estimate on v5? |
|
|
Could you perhaps at least update the script with the little bulletin psuedo-window fix? I've told a few people about this, and when they installed it, I had to go through and manually do it, and it's a hassle. At LEAST until you get the new script rolled out. :) |
|
|
hey, I'm making a vista user style for myspace and I made a loading icon, I think it's a lot better than myspace's loading circle thing, here it is if you want to use it. |
|
|
MySpace rolled out a new update that will break the columns if you have Status Updates in the right column. |