Good morning
..
I've downloaded the script and... There's a bug:
I woke up at 8:55, signed into Messenger at 9:00 (I like things going fast
) and
haven't sent a single message. The graph, however, shows activity at 6:00 and 7:00.. I'm sure that most people don't use their computers at these hours (I might be wrong, but it's just a thought)..?
EDIT::
And it shows 20/07/2008, while today is 25/07/2008
EDIT 2::
Script debugger shows errors:
code:
function OnViewerEvent_CtrlClicked(PlusWnd, ControlId){
if(ControlId === "BtnNext"){
chart_number++;
wnd.ImageElmt_SetImageFile("chart",charts[chart_number]);
}
if(ControlId === "BtnBack"){
chart_number--;
wnd.ImageElmt_SetImageFile("chart",charts[chart_number]);
}
}
probably should be
code:
function OnViewerEvent_CtrlClicked(PlusWnd, ControlId){
if(ControlId === "BtnNext"){
chart_number++;
PlusWnd.ImageElmt_SetImageFile("chart",charts[chart_number]);
}
if(ControlId === "BtnBack"){
chart_number--;
PlusWnd.ImageElmt_SetImageFile("chart",charts[chart_number]);
}
}
EDIT 3:: (wow
)
Now that I have corrected this error on my pc, the Next and Prev buttons work, but as I click them, the date disappears..
Giving the window focus, focussing on another and focussing back makes parts of the graph disappear..