|
Post by rhondairv on Dec 6, 2010 14:44:12 GMT -8
GREAT!! I love it
|
|
|
Post by rhondairv on Dec 6, 2010 14:50:00 GMT -8
errrrr, i don't see a pm summary code and doesn't sound familiar to me. If you say i have it then i am sure i do. Is that the exact name?
|
|
|
Post by Wormopolis on Dec 6, 2010 19:59:30 GMT -8
in the site you linked to above. PM summary v1.0 get v2.0
|
|
|
Post by rhondairv on Dec 6, 2010 21:15:26 GMT -8
|
|
|
Post by Wormopolis on Dec 6, 2010 22:21:54 GMT -8
I dont know why i KEEP SAYING pm SUMMARY.. iM APPARENTLY TIRED..
this CODE: // PM member list drop down // By Wormopolis // version 1.0
|
|
|
Post by rhondairv on Dec 7, 2010 10:15:40 GMT -8
oooooooooooooooooooo gotcha!!! let me know when ya change the code for the activity bar. I can't wait to change it.
|
|
|
Post by Wormopolis on Dec 7, 2010 18:32:46 GMT -8
version upgrade v1.1: added title hover to show what activity number was
|
|
|
Post by rhondairv on Dec 7, 2010 18:43:27 GMT -8
thank you!!
|
|
|
Post by rhondairv on Dec 7, 2010 20:58:07 GMT -8
|
|
|
Post by Wormopolis on Dec 8, 2010 7:02:28 GMT -8
look at your mini profile. before that code you added that puts in whatever date, did you notice it only shows the month and year?
only having access to the month and year forces the code to use the first of each month as the start date.
|
|
|
Post by rhondairv on Dec 8, 2010 7:59:27 GMT -8
well that sucks lol
|
|
|
Post by Wormopolis on Dec 8, 2010 16:30:56 GMT -8
Well I HAD to write it that way.. not everyone will have a code that puts an actual (or even fake for that matter since that code doesnt check) start date in there.
I might be able to write you an exception though... but I wouldnt make it part of the posted code.
|
|
|
Post by rhondairv on Dec 8, 2010 16:33:36 GMT -8
Oh i wasn't meaning anything you wrote sucked. I was meaning that's just how it is because of the other code. Don't go to anything special. If i ever get a lot more members i may ask ya then. lol
|
|
|
Post by Wormopolis on Dec 8, 2010 16:43:38 GMT -8
try this...
replace
datechk=tds[t].innerHTML.match(/joined: (.*?) (\d+)<br>/i); datechkM=RegExp.$1; datechkY=RegExp.$2; for (m=0; m<tstArray.length; m++) { if (datechkM.toLowerCase()==tstArray[m]) break; } sDate=new Date(); sDate.setDate(1); sDate.setYear(datechkY); sDate.setMonth(m);
with
datechk=tds[t].innerHTML.match(/joined: (.*?) (\d+)<br>/i); datechkM=RegExp.$1; datechkY=RegExp.$2; datechkD=''; if (datechkM.match(/(.*?)\s(\d+)\,/)) { datechkM=RegExp.$1; datechkD=RegExp.$2; } for (m=0; m<tstArray.length; m++) { if (datechkM.toLowerCase()==tstArray[m]) break; } sDate=new Date(); sDate.setDate(1); sDate.setYear(datechkY); sDate.setMonth(m); if (datechkD) sDate.setDate(datechkD);
see if that works...
|
|
|
Post by Wormopolis on Dec 8, 2010 17:07:03 GMT -8
ok.. now find this
if (datechkM.toLowerCase()==tstArray[m]) break;
replace with
if (datechkM.toLowerCase().substr(0,3)==tstArray[m]) break;
and in that array lines above it, change "sept" to "sep"
|
|