changing dp from a plus! plugin - Printable Version -Shoutbox (https://shoutbox.menthix.net) +-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58) +--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4) +---- Forum: Scripting (/forumdisplay.php?fid=39) +----- Forum: Plug-Ins (/forumdisplay.php?fid=28) +------ Thread: changing dp from a plus! plugin (/showthread.php?tid=59883) changing dp from a plus! plugin by rawny on 05-28-2006 at 10:26 PM
Hi, RE: changing dp from a plus! plugin by absorbation on 05-29-2006 at 12:18 PM I know the mess.be forums know alot about add-on programming, they were talking about this thing the other week I think. Just a heads up you may or may not know Messenger Plus! is changing and soon plugins will be replaced by scripts. Scripts will contains new and exciting functions for messenger, but you need a jscript knowledge to use them. However, you can still use Delphi, as you can make some functions all from a .dll using the scripts RE: changing dp from a plus! plugin by RaceProUK on 05-29-2006 at 01:38 PM
In a plugin, use the Property property of the IMessenger3 interface with index 2 e.g. IMessenger3.Property[2]. It's a RW property that contains the current DP. RE: changing dp from a plus! plugin by rawny on 05-30-2006 at 04:52 PM
Thanks very much guys I'll give it a go. RE: changing dp from a plus! plugin by TheGeek on 05-30-2006 at 05:32 PM Maybe "property" is a delphi keyword, look the correct name up in your header files. RE: changing dp from a plus! plugin by rawny on 05-30-2006 at 05:41 PM
// *********************************************************************// RE: changing dp from a plus! plugin by RaceProUK on 05-30-2006 at 07:12 PM
quote:Or maybe 'MessengerAPI_TLB.IMessenger3.Property_[2]', as it actualy says in the header. RE: changing dp from a plus! plugin by rawny on 05-30-2006 at 07:58 PM
thankyou very much RE: changing dp from a plus! plugin by rawny on 05-30-2006 at 09:01 PM
I tried this; RE: changing dp from a plus! plugin by RaceProUK on 05-31-2006 at 12:12 AM
quote:should work. Bear in mind that I don't know Delphi, but I do know a fair few languages. Just make sure you actually wrap the text string in an OleVariant type first. RE: changing dp from a plus! plugin by J-Thread on 05-31-2006 at 08:03 AM And are you sure that the MessengerAPI_TLB object is the one that is passed by plus in the Initialize function? As far as I know you can't just "create" your own messenger object... |