header
ask question
Click here to ask Question Now Its free No registration required. Flash, Flex, Flash Media Server, ActionScript,Adobe Air. Most questions receive a response in an hour.
gourav
Points:540
Posts:0
Answered

6/1/2010 6:27:50 AM

Title: How can i acccess tinychat chat room and its information and other things.


hi friends ,

does any one know .....id dont know...

plz try this

can we access chat room and how can we access online user list of tinychat.
tinychat url:
http://tinychat.com/


api that u can read and and then reply me
http://code.google.com/p/tinychat-embed-api/wiki/embedvariables


you can use flex or html or java script for this


thanks
plz reply fast



1
bob_senior
Points: 1320
Posts:0
Accepted Answer
6/1/2010 10:55:19 PM



it seems there API code gives some problems with the firefox. To get it working in all the browsers do it like this:


include both: jquery.js and tinychat.js ( tinychat js from it's server for testing only use your own version! later )

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="http://tinychat.com/public/js/tinychat.js"></script>

make sure you have declared the container ( #videoBox ) width like this ex.: <- this make it work in Firefox!

<style>
#videoBox { width: 720px }
</style>

mae sure your HTML look like this:

<script>
var tinychat = { room: '' };
</script>
<script src='http://tinychat.com/js/embed.js'></script>

<div id="videoBox">
<div id='client'></div>
</div>


2
gourav
Points: 540
Posts:0
6/1/2010 11:25:13 PM



i did this but its not working that y i m asking here ..
plz u also try this if connect to server then reply me.

thanks for that


3
Ronald
Points: 430
Posts:0
6/2/2010 2:55:53 AM



it works but does not connect to server, it seems that there is some server problem at the tinychat end.

4
gourav
Points: 540
Posts:0
6/2/2010 3:34:49 AM



u mean its not a problem from my side..?




but i think its might be a problem in login like might be it require
API Key or API Secret or any thing like this.

thanks

5
gourav
Points: 540
Posts:0
6/10/2010 1:37:20 AM



any one dont know the proper solution of this problem?

6
Inder
Points: 2980
Posts:0
6/10/2010 10:39:09 AM



guys there is no problem in the bob seniors code , it just works perfect , all you need to do is upload that page to your webserver. It does not work when page is running local.

7
gourav
Points: 540
Posts:0
6/10/2010 10:09:50 PM



thanks i will try again...so u mean we have to purchase web-server or what can u plz explain me how it work ?


8
Inder
Points: 2980
Posts:0
6/10/2010 10:31:03 PM



no buddy , no need to purchase web server , just run it from your iis server , if you are using local then run it from your local website , or upload to your online website

say your page is tinyChat.html

Locally :
http://localhost/tinyChat.html

On website
http://yourwebsite.com/tinyChat.html


9
gourav
Points: 540
Posts:0
6/11/2010 4:08:29 AM



i got ur point, i will apply when i will apply
thaks a lot..

any way kaha gaye the vocation per?
good day

10
Inder
Points: 2980
Posts:0
6/14/2010 1:40:41 AM



went to shimla :), its a nice place for summers, but now the temperature there is rising due to Global Warming.

11
Javier
Points: 0
Posts:0
7/1/2010 11:22:24 AM



Hi Inder, Thanks for your comment it was very helpful for me and i'm sure that for many people too.
Now it's working well!
Thanks!

12
Inder
Points: 2980
Posts:0
7/2/2010 12:08:22 AM



:) welcome Javier

13
gourav
Points: 540
Posts:0
7/2/2010 5:42:08 AM



hii all , hii inder

can u tell me how can i apply these function:

function changeEmbedSize(parameter)
{
if(parameter == 0)
{
$('#videoBox').css('height', '450px');
}
else if(parameter == 1 || parameter == 2)
{
$('#videoBox').css('height', '650px');
}
else if(parameter == 3)
{
$('#videoBox').css('height', '590px');
}
else if(parameter == 4)
{
$('#videoBox').css('height', '550px');
}
else if(parameter >= 5 && parameter <= 8)
{
$('#videoBox').css('height', '670px');
}
else if(parameter >= 8 && parameter <= 12)
{
$('#videoBox').css('height', '800px');
}
else if(parameter >= 5)
{
var height = 670;
var divi = ((parameter-5)/4);
height = height + (120 * (divi));
$('#videoBox').css('height', height+"px");
}
}


for autosize the app.
you can see this link for more help.
http://code.google.com/p/tinychat-embed-api/wiki/embedvariables

Thanks
plz reply

14
gourav
Points: 540
Posts:0
7/2/2010 5:43:59 AM



and one more thing i want to know i want to apply this script to my air applucation so that my app can open a chat room and user can chat from his desktop using air.


plz help me thanks

15
Qas
Points: 0
Posts:0
7/24/2010 7:15:12 AM



Mujhay tiny chat a clone script chahiay..Can any one help me...Us main jo mutli cam chat script use hua hay wo konsa hay ...Or wo kahi say avaialbe hosakta hay pls.....

I need tiny chat clone script ..Can Anyone help me .. Which is that multicam script being used and is that available anywhere pls....

16
RedBull
Points: 930
Posts:0
7/24/2010 7:22:38 AM



@Qas thats is a flash and actionscript application, but the script alone does not work, you need a media server for that. The media server can be Flash media server , WOWza or RED5.

The script connects to Media server and sends the data

17
Qas
Points: 0
Posts:0
7/24/2010 3:07:02 PM



Thanx But I need to Know there are others lots of option in this chatroom..like setting..create id..and ur room record...N ban system....Is any clone do u kwno about it if yes send me a link pls..

18
BobJP
Points: 0
Posts:0
12/28/2010 6:12:00 PM



I have my own API Tiny chat running on http://code.wall.fm I am also developing floating bottom IM type bars that use a CSS platform. I wish to place a count of people using my chat room on my bottom bars. Has anybody seen a script or have any ideas of creating a script to achieve such a count? I have this same question open on tiny chats developers forum. Unanswered so far.

Happy new year and best wishes

Bob Johnson-Perkins

19
Shawn
Points: 680
Posts:0
12/28/2010 9:42:05 PM



@BobJP You can have a authentication system to start using your API. Once the person logs in to use your API you can increment the count if the connected user. You must use some server language to store the count on server.

20
Bobjp
Points: 0
Posts:0
12/28/2010 10:35:53 PM



Yes, I understand that its what I need to call at Tiny Chat where the tiny chat API is host is the problem. If the chat was my own product I would net have a problem, but as far as I can see is Tiny chat does not supply any methodology to create a script for what I wish to do. I expect there is one, I was rather hoping someone out there has one. Before I start creating my own. That's if I get an answer on their developers support forum.

21
DrimeFreep
Points: 0
Posts:0
2/5/2012 12:31:16 PM



target pharmacy conroe http://legalexclusivepharmacy.com/catalog/Other/Medrol.htm advanced pharmacy board of pharmacy

22
anaertutessy
Points: 0
Posts:0
3/28/2012 4:28:03 PM



nyc pharmacy schools http://www.fda-approved-pharmacy.com/products/accupril.htm swalecliffe pharmacy


Post your Reply
Name  

Email

Type your Reply or Answer

Are you human? What is 0+4 



Members Login

Email  
Password
Forgot Password





This website focus on: Flash | Flex | FMS | RED5 | WOWZA | Flash Media Server | Adobe AIR | ActionScript,Flash Solutions | Flash Question | Flash Answers | Flash Developers | Flash Problem, Flash Help, Flash bugs, Flash workaround | Flash Blog | Flex Question Answers | Flash Forum | Flex Development | Actionscript development | Flash development | Adobe AIR development
Copyright © 2008 AskMeFlash.com. All rights reserved. Privacy Policy | Terms & Conditions