It is empty and any pms I send get lost in the netherworld. Help?
-T
my outbox
-
Clay_Pigeon
- Posts: 3211
- Joined: Tue Mar 29, 2005 8:00 am
- Location: my pod
-
fuzzylunkin1
I've tried looking for this bit of dynamic HTML so I can edit the template to make it default to being checked.
I couldn't find it D:
Perhaps it's about time to look again... I had recent luck while re-searching for a single keyboard shortcut in OS X that is equivalent to windows' WIN+L. I had looked 4-5 times in the past and found none.
Yesterday I found Ctrl+Shift+Eject.
AMAZING!
--TE
I couldn't find it D:
Perhaps it's about time to look again... I had recent luck while re-searching for a single keyboard shortcut in OS X that is equivalent to windows' WIN+L. I had looked 4-5 times in the past and found none.
Yesterday I found Ctrl+Shift+Eject.
AMAZING!
--TE
The Allegiance community currently hates their sysadmin because he is doing: [Too Much] [____________|] [Too Little]
Current reason: Removing the PayPal contribute page. Send Bitcoin instead: 1EccFi98tR5S9BYLuB61sFfxKqqgSKK8Yz. This scale updates regularly.
-
Bard
- Posts: 4263
- Joined: Tue Jan 24, 2006 8:00 am
- Location: Within your command center, enacting fatal attacks upon your conscripts
- Contact:
I had forgotten until just today but Cort wrote this a while back.
I just tested it again with the current board version (it was written before our CSS got fubared) and it works.
I just tested it again with the current board version (it was written before our CSS got fubared) and it works.
Code: Select all
// ==UserScript==
// @name StoreOutgoingPMsByDefaultOnFao
// @namespace http://henrik.heimbuerger.de/greasemonkey/
// @description WTF doesn't FAO store outgoing PMs by default!?
// @include http://www.freeallegiance.org/forums/index.php?act=Msg&CODE=04*
// @include http://www.freeallegiance.org/forums/index.php?CODE=04&act=Msg*
// ==/UserScript==
// from http://www.joanpiedra.com/jquery/greasemonkey/
// Add jQuery
var GM_JQ = document.createElement('script');
GM_JQ.src = 'http://jquery.com/src/jquery-latest.js';
GM_JQ.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(GM_JQ);
// Check if jQuery's loaded
function GM_wait() {
if(typeof unsafeWindow.jQuery == 'undefined') { window.setTimeout(GM_wait,100); }
else { $ = unsafeWindow.jQuery; letsJQuery(); }
}
GM_wait();
// All your GM code must be inside this function
function letsJQuery() {
//alert($); // check if the dollar (jquery) function works
$('input.checkbox[name="add_sent"]').attr('checked', 'checked');
}







Omnia Mutantur, Nihil Interit.