Results 1 to 12 of 12
Thread: Text Chat IRC or shout box ?
-
03-02-2010, 16:31 #1
-= TeamSpeak Lover =-
- Join Date
- Jun 2005
- Location
- UK
- Posts
- 34
Text Chat IRC or shout box ?
Think any of you could come up with a solution to the following ?
The TEXT chat at the bottom in TS3 could be amazing, if for example it could be linked through a websites shout box, some one posts a shout on the site and that shout pops up on TS Chat.
Or how about a chat window on your website, that connects direct to TS3's chat pannel and lets visitors on your site TEXT chat to the server and the people on it.
OR EVEN BETTER. and the main Idea I hope works, a way to cross over IRC or an IRC channel and TS 3's text chat tab, this would for example link my TS Servers with our IRC Channel, and users on TS would be able to chat to people in our IRC channel without the need of an IRC client.
And people on IRC could talk to those of us on TS without the need to login to TS.
and to top this all off, if there was a way to get the computer voice to say what people type in the chat text area would be brilliant.
-
07-02-2010, 10:25 #2
Hi, at the moment i'm working on an irc plugin. Here the first preview
-
07-02-2010, 12:14 #3
-= TeamSpeak User =-
- Join Date
- Jan 2010
- Location
- Germany
- Posts
- 8
nice one!!
i will have it
regards
-
07-02-2010, 19:01 #4
-= TeamSpeak Lover =-
- Join Date
- Jun 2005
- Location
- UK
- Posts
- 34
OH MAN.
can you release this ? lol I so wana use it .
-
07-02-2010, 21:57 #5
-
07-02-2010, 23:59 #6
-= TeamSpeak Addict =-
- Join Date
- Nov 2009
- Location
- Dublin, Ireland
- Posts
- 398
-
08-02-2010, 10:52 #7
-= TeamSpeak Lover =-
- Join Date
- Dec 2009
- Location
- primzahl
- Posts
- 46
very nice!
-
08-02-2010, 18:00 #8
-= TeamSpeak Addict =-
- Join Date
- Nov 2009
- Location
- Dublin, Ireland
- Posts
- 398
andyftw , do you have an ETA on a beta release?
cheers.
-
08-02-2010, 18:44 #9
-= TeamSpeak Lover =-
- Join Date
- Oct 2009
- Location
- Germany
- Posts
- 44
omg omg looks realy nice. please beta !!
-
08-02-2010, 19:52 #10
Hi all,
a beta version will be available within the next days.
-
08-02-2010, 21:07 #11
-= TeamSpeak User =-
- Join Date
- Jan 2010
- Location
- Europe
- Posts
- 12
How were you able to add your own actions and tabs in the clients menubar and tabwidget?
Did I miss some functions in the Api?
Tnx in advance for any pointers
-
08-02-2010, 22:26 #12
Hi, it is a bit tricky.
the code should be self-explanatory.
PHP Code:bool IRCWidget::grabWidgets()
{
foreach (QWidget *widget, QApplication::allWidgets())
{
const char* className = widget->metaObject()->className();
if (strcmp(className, "ChatTabWidget") == 0)
m_pMainTab = (QTabWidget*) widget;
else if (strcmp(className, "ChatLineEdit") == 0)
m_pMainEdit = (QTextEdit*) widget;
else if (strcmp(className, "ImprovedToolBar") == 0)
m_pToolBar = (QToolBar*) widget;
if (m_pMainTab && m_pMainEdit && m_pToolBar)
return true;
}
return false;
}
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
C#.NET - Get the Teamspeak Chat text.
By pbarrette in forum [TeamSpeak 2] Addons & ScriptsReplies: 0Last Post: 21-06-2005, 20:32 -
All I Want
By BigRedBrent in forum [TeamSpeak 2] General QuestionsReplies: 3Last Post: 23-11-2004, 12:02 -
Chat text disappears...
By chaotik in forum [TeamSpeak 2] Client SupportReplies: 2Last Post: 12-01-2004, 06:15 -
TeamSpeak RC2 Text Chat Problem
By ***666*** in forum [TeamSpeak 2] Client SupportReplies: 0Last Post: 29-03-2003, 14:14 -
Text Chat Suggestion
By ***666*** in forum [TeamSpeak 2] General QuestionsReplies: 6Last Post: 24-03-2003, 13:38


Reply With Quote


