Posts that Mithrandir is monitoring
|
Jun 25, 2008
|
Topic: Request: Open all threads with new posts in tabs(vBulletin) Thanks for all the hard work, this script has turned out really well! However, it doesn't seem to appear here: http://forums.e-mpire.com/search.php?do=getnew |
|
Feb 23, 2008
|
Topic: Request: Open all threads with new posts in tabs(vBulletin)
Putting it in, plus working on settings form - ready soon Keep the ideas comin' :lol: |
|
Feb 22, 2008
|
Topic: Request: Open all threads with new posts in tabs(vBulletin)
Thread-read status not being influenced by the timeout delay - on my FF(2.0.0.12), Opera(9.25), IE7 setup. Added option to turn delay off.
Thanks @Mithandir, grabbed the code and updated - also made x-browser with Opera(9.25) and IE7. |
|
Feb 21, 2008
|
Topic: Request: Open all threads with new posts in tabs(vBulletin) Hmm, a page refresh does the same job for topics in that thread.
BTW: Updated script to prevent button showing on "No NEW Posts" :oops: |
|
Feb 20, 2008
|
Topic: Request: Open all threads with new posts in tabs(vBulletin) Thanks, it works great :D Not really that important, but it doesn't always mark all the threads it opens. Is there any way to make it activate the "mark all threads as read" button when used? |
|
Feb 18, 2008
|
Topic: Request: Open all threads with new posts in tabs(vBulletin) Reading your request again I think this might be closer to what you wanted? // ==UserScript==
// @name vB New Topics
// @namespace http://userscripts.org/forums/2/topics/1801
// @description Open all forum new topics in tabs
// @include http://forums.e-mpire.com/forumdisplay.php*
// ==/UserScript==
var newposts = new Array();
var lnks = document.getElementById('threadslist').getElementsByTagName('a');
for (var i=0; i < lnks.length; i++) {
if (/showthread.php\?goto=newpost/.test(lnks[i].href)) {
newposts.push(lnks[i].href);
}
}
// DON'T DISPLAY IF NO NEW POSTS IN FORUM
if (!newposts.length) return;
var btn = document.getElementById('inlinemodform').getElementsByTagName('td')[0].appendChild(document.createElement('button'));
btn.innerHTML = "Read ALL new posts";
btn.style.marginLeft = '10px';
btn.style.position = 'relative';
btn.style.top = '-5px';
btn.addEventListener("click",
function(e) {
for (var i=0; i < newposts.length; i++) {
GM_openInTab(newposts[i]);
e.preventDefault();
}
}
, false);
|
|
Feb 18, 2008
|
Topic: Request: Open all threads with new posts in tabs(vBulletin) I must admit that I have no idea how to write a script, and I'd like for this to work. Therefore, I think I'll accept your offer and ask you to cutumize the script for this site: http://forums.e-mpire.com Please use the PlayStation Insider skin. |
|
Feb 18, 2008
|
Topic: Request: Open all threads with new posts in tabs(vBulletin) IBDoF openInTabs This was written for a phpbbV2 site, hopefully I've embedded enough comments to help in getting started.
|
|
Feb 17, 2008
|
Topic: Request: Open all threads with new posts in tabs(vBulletin) Well, my idea should be firly obvious, and(I hope) simple to write, I'd like a script which adds a button to vBulletin 3-based fora. These fora already have a "Go to first new post" button in front of every topic with new posts since you last opened it, but for simplicity, I'd like tojust click one button to activate all the "Go to first new post" buttons, and open them in tabs. |
|
Feb 15, 2007
|
Topic: Feature Request: Edit Comments I've been wanting to send quick messages as well, as I've been cleaning up duplicate scripts/... I was thinking that we can email the person when they get a new message but it might be a target for email spamming. Also I agree editing comments is cool and I'll do this soon. |
|
Feb 15, 2007
|
Topic: Feature Request: Edit Comments Seconded. Some people submitted lengthy pieces of code as comments to my scripts, as well as all kinds of feature suggestions and bug reports. ..... Perhaps this spamming could be reduced by having a quick way to send messages directly to the authors? |
|
Feb 15, 2007
|
Topic: Feature Request: Edit Comments In addition: the possibility to remove comments would be nice! |
|
Feb 15, 2007
|
Topic: Feature Request: Edit Comments It would be extremely useful if we could edit the comments we leave on a script, especially in events of noticing a flaw in a suggestion, or simply for wanting to add a thought and not spam the page with posts. Edit: [i]dang[/i] I like the way one edits the posts in the forums, they should just copy the coding that allows this directly and enable it for the comments. |
