trilldev-develop Mailing List for Trillian Developer's Resource
Status: Alpha
Brought to you by:
azhrarnlod
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
(1) |
Nov
|
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
|
Feb
(4) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
From: barby g. <bar...@gm...> - 2010-09-27 21:21:18
|
Hello, I am developing my first plugin in Trillian and I need to add either a Preferences Page or a Menu where the user can select one of two options. Can anyone please point out how to do this. I would love to find more sample code for plugins but I can not find them. I am using C++ Thanks in advance, Best regards |
From: Erik <Er...@kr...> - 2003-03-10 02:52:24
|
Nope, I don't normally keep copies of threads around. :) Actually, just go to the members section on the cs site (http://www.trillian.cc/members I believe), and log in. There's a little link on the right sidebar that says something about members badge and/or forums. Click on that and you can bind your pro status to a forum account. A bit of a hassle, but it's worth it to check out the plugin forum. ;) ------------------------------------------------------------------ It seems these links you posted don't work: http://www.trillian.cc/forums/showthread.php?s=&threadid=31408 http://www.trillian.cc/forums/showthread.php?s=&threadid=31312 Or for some reason I don't have permission to view even though im registered as a Trillian Pro user... You wouldn't happen to have an extra copy of those threads laying around would ya? =P _____________________________________________________________ Modern Rock K-Rock...be part of the New Music Revolution and check out www.krock.com!! _____________________________________________________________ Select your own custom email address for FREE! Get yo...@yo... w/No Ads, 6MB, POP & more! http://www.everyone.net/selectmail?campaign=tag |
From: Thomas <sir...@ho...> - 2003-03-08 08:09:22
|
It seems these links you posted don't work: http://www.trillian.cc/forums/showthread.php?s=3D&threadid=3D31408 http://www.trillian.cc/forums/showthread.php?s=3D&threadid=3D31312 Or for some reason I don't have permission to view even though im = registered as a Trillian Pro user... You wouldn't happen to have an extra copy of those threads laying around = would ya? =3DP |
From: Erik <Er...@kr...> - 2003-02-09 03:22:04
|
Well, you can't do it through the API, but I guess you could do it by hokking it through the Window handle programmatically. I believe there is a thread about this somewhere in the plugin forum... *searches* http://www.trillian.cc/forums/showthread.php?s=&threadid=31408 and http://www.trillian.cc/forums/showthread.php?s=&threadid=31312 Are relevant. ;) ----------------------------------------------------------------------- Is there a way to suppress chat windows from popping up or to close them once they have? For example a plugin recieves a message from somebody, then sends a reply but doesn't show any new chat windows (or shows them for a very brief time if its impossible to supress them from coming up at all). I'm open to any suggestions =P. _____________________________________________________________ Modern Rock K-Rock...be part of the New Music Revolution and check out www.krock.com!! _____________________________________________________________ Select your own custom email address for FREE! Get yo...@yo... w/No Ads, 6MB, POP & more! http://www.everyone.net/selectmail?campaign=tag |
From: Erik <Er...@kr...> - 2003-02-09 03:15:47
|
Yeah, I noticed a few other plugin with source, I'm not sure if they want other people hosting their source though. I'll try and remember to ask them if they want me to soon. (A bit busy with a few other things at the moment) ----------------------------------------------------------------------- Sorry my last e-mail got cut off, user error =P Here are some plugins you might be able to add to your collection: Negatory Air http://www.negatory.com/trillian/ and IM Forwarder: http://www.eecs.tufts.edu/~cmicali/ Negatory Air doesn't compile on Visual Studio .NET (I forgot whether it was a trivial error or not). _____________________________________________________________ Modern Rock K-Rock...be part of the New Music Revolution and check out www.krock.com!! _____________________________________________________________ Select your own custom email address for FREE! Get yo...@yo... w/No Ads, 6MB, POP & more! http://www.everyone.net/selectmail?campaign=tag |
From: Thomas <sir...@ho...> - 2003-02-09 00:41:28
|
Sorry my last e-mail got cut off, user error =3DP Here are some plugins you might be able to add to your collection: Negatory Air http://www.negatory.com/trillian/ and IM Forwarder: http://www.eecs.tufts.edu/~cmicali/ Negatory Air doesn't compile on Visual Studio .NET (I forgot whether it = was a trivial error or not). |
From: Thomas <sir...@ho...> - 2003-02-09 00:34:48
|
Is there a way to suppress chat windows from popping up or to close them = once they have? For example a plugin recieves a message from somebody, = then sends a reply but doesn't show any new chat windows (or shows them = for a very brief time if its impossible to supress them from coming up = at all). I'm open to any suggestions =3DP. p.s. here are some plugins you might be able to add to your collection = (though I dont know the legal issues): |
From: Perry L. <sk...@ya...> - 2002-12-09 01:59:09
|
Is anyone still around, I have some issues with some slight bugs and need help with a workaround. I can't seem to send msg's to the MSN medium using 'messageSend' unless the chat window of that particular 'person' is already open before the command is sent. Perhaps I need to send some extra information, like maybe the other 'person' needs to know that 'i'm typing something' first before the msg is sent across. Any clue to a workaround will help. :) __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com |
From: Erik <Er...@kr...> - 2002-10-04 15:26:12
|
Thanks, I knew there had to be a better way, I just couldn't think of it. I'll add it when I get home. :) --- Hunter <rf_...@us...> wrote: >In tplug::psend( ), instead of: > char myGUID[128]; > char myEvent[128]; > GUID.copy(myGUID, 128, 0); > outEvent.copy(myEvent, 128, 0); > return plugin_send(myGUID, myEvent, data); > >you should use: > return plugin_send( > const_cast<char *>(GUID.cstr()), > const_cast<char *>(outEvent.cstr()), > data); > >or if that's too many characters on one line for you, >you could use the less effective (C-style): > return plugin_send((char *)GUID.cstr(), > (char *)outEvent.cstr(), data); _____________________________________________________________ Modern Rock K-Rock...be part of the New Music Revolution and check out www.krock.com!! _____________________________________________________________ Select your own custom email address for FREE! Get yo...@yo... w/No Ads, 6MB, POP & more! http://www.everyone.net/selectmail?campaign=tag |
From: Erik <Er...@kr...> - 2002-09-28 01:31:50
|
Well, the only subscribers I have seen are the other devs, and I thik one person on the announce list so far. Of course, some people like to lurk on the archives page. :) The only other sign of external activity I have seen is file downloads, (only one or two of them on each one was from me). So someone apparently is looking... Hopefully, once Dan gets some stuff on the webpage done, and we get more completed plugins hosted, we may have more activity. But glad to see some signs of life! --- James Olsen <ja...@pl...> wrote: >Hello, > >Just wondering who, if anyone, might also be subscribed since there's >only one other message and it's a "Test" message. :) > >I'll be developing plugins using Delphi. Right now I'm just trying to >get acquainted with Trillian's SDK, and the nice framework set up by >amurgshere (http://home.iprimus.com.au/amurgshere/framework.zip) > > >--James _____________________________________________________________ Modern Rock K-Rock...be part of the New Music Revolution and check out www.krock.com!! _____________________________________________________________ Select your own custom email address for FREE! Get yo...@yo... w/No Ads, 6MB, POP & more! http://www.everyone.net/selectmail?campaign=tag |
From: James O. <ja...@pl...> - 2002-09-27 22:57:25
|
Hello, Just wondering who, if anyone, might also be subscribed since there's only one other message and it's a "Test" message. :) I'll be developing plugins using Delphi. Right now I'm just trying to get acquainted with Trillian's SDK, and the nice framework set up by amurgshere (http://home.iprimus.com.au/amurgshere/framework.zip) --James |
From: Erik <Er...@kr...> - 2002-09-16 20:53:21
|
Just checking if everything goes through.... _____________________________________________________________ Modern Rock K-Rock...be part of the New Music Revolution and check out www.krock.com!! _____________________________________________________________ Promote your group and strengthen ties to your members with em...@yo... by Everyone.net http://www.everyone.net/?btn=tag |