Archived Comments (locked)
|
|
The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008) |
|
|
kill even more ads with adblockplus with 3x http://easylist.adblockplus.org ;) |
|
|
@tiffany8989 If you want to remove MySpace advertisement you must download FireFox extension AdBlock Plus ( www.adblockplus.org ) or download script called Ad Silencer for MySpace from http://userscripts.org/scripts/show/3890. And that black bar on top is my script, just hit "Install this script" button (Top right). You must have GreaseMonkey to install scripts from this site... Hope this helps :) |
|
|
Ummm, I don't get any of this. I'm VERY VERY new Lol Alll, i want is that black bar at the top off and my advertisement code. Please help me. Thank you. |
|
|
@surtin, OK, now script can be on left or right top side of the screen. Also can be scrollable or not... Sorry for such delay, I had no time... |
|
|
@surtin
|
|
|
anyway you could make an option in this script or a separate script that puts the links to the left top hand corner? |
|
|
Hey, yeah thats fine if you use my code. (: You need to add in to your script somewhere
script_version=0.3; script_updatetext='Changed separator bug, it isnt a link now, and you cant hover with a mouse it anymore. Some minor source changes'; That way people that installed your script (still using the old update notification) will be notified of the the update. Make sure to leave all the new stuff for the new update notification though! |
|
|
Thanks man, it works now. Sorry for such a noob question, but I really am a BIG NOOB in this scripting... :) |
|
|
The script content I posted just then is INCOMPLETE.
Let me know if you need anymore help
|
|
|
Hi there
You got all the update bit right, your script name, number and version... you just need to insert the rest of the script..
You need to include (after the bit you already put in)
GM_xmlhttpRequest({
method: "GET",
url: "http://userscripts.org/scripts/review/"+script_num+"?format=txt",
onload: function(responseDetails) {
var text = responseDetails.responseText;
var update_version = text.substring(text.indexOf("script_version=")+15,text.indexOf("\n",text.indexOf("script_version="))-2);
var update_text = text.substring(text.indexOf("script_updatetext=")+19,text.indexOf("\n",text.indexOf("script_updatetext="))-3);
if(update_version > script_version) {
newversion = document.createElement("div");
newversion.setAttribute("id", "gm_update_alert");
newversion.setAttribute("style", "background-color:yellow; width:100%; position:absolute; z-index:99; top:0px; left:0px; text-align:center; font-size:11px; font-family: Tahoma");
newversion.innerHTML = "Close<font>--------</font><font>There is a new version of the ""+script_name+"" script. You are currently running version "+script_version+".</font>
I'm working on a much better new one, but this one does the job so feel free to use it.
Seifer
|
