my outbox

Suggestions, problems regarding the site and other community facilities.
Post Reply
Clay_Pigeon
Posts: 3211
Joined: Tue Mar 29, 2005 8:00 am
Location: my pod

Post by Clay_Pigeon »

It is empty and any pms I send get lost in the netherworld. Help?

-T
Image
"Therefore I will boast all the more gladly about my weaknesses, so that Christ's power may rest on me." -2 Cor 12:9
"Never know how long I've waited, anticipated your smile pressed against mine." -Running
fuzzylunkin1

Post by fuzzylunkin1 »

Ever since the last upgrade you have to check "save PM to sent" or whatever at the bottom of the PM you're sending.
FreeBeer
Posts: 10902
Joined: Tue Dec 27, 2005 8:00 am
Location: New Brunswick, Canada

Post by FreeBeer »

Yep. Every time. And no, there's no way that we as users can set it as a preference. :(
[img]http://www.freeallegiance.org/forums/st ... erator.gif" alt="IPB Image">

chown -R us base
Tigereye
Posts: 4952
Joined: Mon Jul 28, 2003 7:00 am
Location: Toronto, Ontario

Post by Tigereye »

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


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.
madpeople
Posts: 4787
Joined: Tue Dec 16, 2003 8:00 am
Location: England

Post by madpeople »

ah, but if you make it default checked, then you upset the people who don't want to keep copies in their sent box. Would it be possible for someone to make a greasmonkey script to auto-check it for those who want it checked?
Bard
Posts: 4263
Joined: Tue Jan 24, 2006 8:00 am
Location: Within your command center, enacting fatal attacks upon your conscripts
Contact:

Post by Bard »

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.

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');
    }
ImageImageImageImageImage
Image Omnia Mutantur, Nihil Interit.
kramari
Posts: 1293
Joined: Tue Dec 25, 2007 8:35 pm
Location: Zagreb, Croatia

Post by kramari »

Bard wrote:QUOTE (Bard @ May 15 2010, 10:02 PM) 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.
Works! Thanks!
Image
Post Reply