quote:
Originally posted by shrav/oo7`
Just a question i dont change my status when i lock messenger and i dont have that personalised status pop-up box enabled either. is there some glitch that i need to clear up in the script if i use these options?
READ the thread and the posts, all that has just been explained in previous 10 (or so) posts...
quote:
Originally posted by shrav/oo7`
Another thing is there are these lines in cookies script
// Main stuff: Change the tooltip to whatever you want
function ChangeTooltip(newtext) {
// Create the datablock structure (v2)
var NOTIFYICONDATA = Interop.Allocate(488);
// Fill in some needed parameters
with (NOTIFYICONDATA) {
WriteDWORD(0, NOTIFYICONDATA.Size); //DWORD cbSize
WriteDWORD(4, GetMSNHiddenWindowHandle()); //HWND hWnd
WriteDWORD(8, 40046); //UINT uID
WriteDWORD(12, NIF_TIP); //UINT uFlags
WriteString(24, newtext.substring(0, 127), false); //WCHAR szTip[128]
it says change the tooltip to whatever you want, what if i dont want to change it
You don't use that function....
That function is to change the tooltip, if you don't want to change the tooltip, don't use that function :/
quote:
Originally posted by shrav/oo7`
It also says to fill in some needed parameters, what do i need to fill in and how do i do it.
Comments explain what is being done. If it says fill in some stuff it means the next lines will fill in some stuff.
quote:
Originally posted by shrav/oo7`
i am a total newbie to scripting but i get the general idea most of the time.
tbh, don't attempt to alter anything.
I don't want to be rude or anything but seeing your previous posts and stuff you first need to learn the basics of scripting and all (and also read posts more carefully). If you don't understand stuff don't use it... Sorry, but explaning every bit and angle of scripting and why something is done in this particular script and all without you understanding even the basics is seriously out of scope.