matty
Scripting Guru
Posts: 8336 Reputation: 109
39 / /
Joined: Dec 2002
Status: Away
|
RE: account name in taskbar (msn polygamy)
quote: Originally posted by lespoils
where can i read about the setwindowtextW function ?
SetWindowText Function()quote: Originally posted by lespoils
hi again,
thx for the replies and information.
i tried pasting the script you supplied but it doesnt seems to work. the exact error is:
Error: Expected ':' (code: -2146827285)
File: test.js. Line: 29.
trying to understand what you did, maybe i'll manage to make it work sometime
thanks again
Lespoils
Line 29:
code: lpszNewTitle += MsgPlus.RemoveFormatCodes( oContact.item().Name ) + ( oContact.atEnd() ? '', ', ' );
Should be:
code: lpszNewTitle += MsgPlus.RemoveFormatCodes( oContact.item().Name ) + ( oContact.atEnd() ? '' : ', ' );
|
|