Page 1 of 1

Posted: Wed Apr 14, 2010 11:13 pm
by Clay_Pigeon
It is empty and any pms I send get lost in the netherworld. Help?

-T

Posted: Wed Apr 14, 2010 11:16 pm
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.

Posted: Fri Apr 30, 2010 4:58 pm
by FreeBeer
Yep. Every time. And no, there's no way that we as users can set it as a preference. :(

Posted: Fri Apr 30, 2010 6:43 pm
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

Posted: Fri Apr 30, 2010 6:48 pm
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?

Posted: Sat May 15, 2010 8:02 pm
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');
    }

Posted: Tue May 18, 2010 12:22 pm
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!