Questions tagged [chatroom]

Chatrooms are places where multiple users can communicate online and talk about a specific topic.

Chatrooms are places where multiple users can communicate online and talk about a specific topic. Chatrooms usually provide the option to send messages that all users (from the chatroom) will see, as well as see a list of all users and their status. Often the chatrooms provide the option for personal messages - you can select a user from the chatroom user list, and send a message only to that user.

227 questions
1
vote
1 answer

How to create a basic chatbot/auto responder based on browser contents? (Applescript, or other recommendations?)

I am a (very) beginner programmer and I am wondering if it would be feasible to write a very simple chat room bot which is fairly dependent of what kind of chat room is being used. The scenario is that a friend of mine has a basic chat room set up…
user852712
  • 11
  • 1
  • 2
1
vote
0 answers

How can I compile a list of the most upvoted comments in a chatroom at the top of the page in a ranked format?

So I just finished setting up an upvote system where every time someone clicks on a lightbulb sprite a counter is added too. This is called the 'lumen system'. I am now trying to compile all of the most upvoted comments in order from highest to…
1
vote
1 answer

How to keep track of the number of active user in a Channel API chat

I'm working on a small chat using the google Channel API and appengine. Is there an easy way to know how many users are active on the chat? Thanks, David
dbikard
  • 491
  • 1
  • 4
  • 13
1
vote
2 answers

Socket: When player in a room closes browser, how server can correctly emit to other sockets in that room?

Please, read to the end, help me! I'm developing a multiroom game using SocketIO, with a client-side (React) and a server-side (Node). I'm having a problem on handling this situation: Consider that at least two clients are inside a Room, after have…
João Vitor
  • 83
  • 1
  • 5
1
vote
0 answers

ChatFormController BorderLayout CENTER does not work , Ant-Problem

https://www.codenameone.com/blog/rad-chatroom-part-1.html compiler error - eclipse - ChatFormController e.g. link super(parent); Form f = new Form("My First Chat Room", new BorderLayout()); ChatRoomView view = new…
AN_nefuwu
  • 11
  • 1
1
vote
4 answers

Programming a Chatroom, where to start?

I want to create a chatroom, but I am not entirely sure where to start. I have programming experience in C and Java, and I am willing to learn. I would like to use either html5 or php, but this may not be correct. If any one can point me to the…
John
  • 19
  • 1
  • 2
1
vote
1 answer

UDP Chat where Server can chat too

I've found on GitHub an open source project that is very simple: the same Python script can be used as a Server or as a Client. import socket import threading import queue import sys import random import os #Client Code def ReceiveData(sock): …
Francesco Mantovani
  • 10,216
  • 13
  • 73
  • 113
1
vote
1 answer

socket.io random chatroom one to one

so there is my code i am trying to create chatroom with Socket.io with rooms (one-to-one random chatroom) but i think there is bug because when i connect first two sockets it works perfectly but when i connect third socket it does not work anymore i…
iLiA
  • 3,053
  • 4
  • 23
  • 45
1
vote
2 answers

How can I integrate "chat" into an ASP.NET MVC site?

I'd like to integrate chat into my site and am open to a solution like this site's, but am open to others if they exist. What chat sites do you know of that can integrate into an MVC site?
makerofthings7
  • 60,103
  • 53
  • 215
  • 448
1
vote
4 answers

multi client/server chat program in c#?

the clients will be able to chat one-to-one and in group (temperately rooms) similar to Skype. I will use the server to authorize the clients my question is which is better to go with? (WCF) or (TCPClient, StreamReader, and StreamWriter) cheesr
Data-Base
  • 8,418
  • 36
  • 74
  • 98
1
vote
2 answers

How is chat usually implemented?

Consider the case in which you want to send text back and forth between computers. (This could be a 1-to-1 conversation or a 1-to-many conversation. Computers could also include smartphones.) How may one create this in general? For instance, do…
JnBrymn
  • 24,245
  • 28
  • 105
  • 147
1
vote
1 answer

App crashed when click into chat room

I was using the chat room from this link in my app. https://gist.github.com/puf/f49a1b07e92952b44f2dc36d9af04e3c My app flow: Login -> MainActivity -> select a team from listview to join chat -> ChatRoomActivity My problem is when i clicked on one…
1
vote
1 answer

Chat application's "Send" button not working

this is my first time asking question on stackoverflow. I'll just go straight to the point, I'm currently developing an application which involve creating a chat room using firebase, I found this https://www.youtube.com/watch?v=uX6_w6yhj4E and…
1
vote
2 answers

I want to clear the text in the Plain TextBox when I press the button but cant find anything to do so

public class Chat_Room extends AppCompatActivity { private Button btn_send_msg; private EditText input_msg; private TextView chat_conversation; private String user_name,room_name; private DatabaseReference root; private…
Callum
  • 25
  • 4
1
vote
1 answer

How to add user to existing ROOM in XMPP iOS?

I am working in XMPP chat module. I have created group yesterday, Now I want to add some more member in this group. What will be the process to add member in existing group. Here is my code to create group: XMPPJID *roomJID = [XMPPJID…
M Swapnil
  • 2,361
  • 3
  • 18
  • 33