You don't need frames to view this website. Flash communication server. Flash mx xml socket server.
Home
Main Menu
Home
- - - - - - -
What is Palabre ?
Features
News
FAQ
Forum
DEMO
- - - - - - -
Downloads !
Browse SVN
- - - - - - -
Search
Contact Us
- - - - - - -
Sourceforge Project Page
Python
Links




 
Download Palabre Flash Xml Socket Server DOWNLOAD Download Palabre Flash Xml Socket Server FORUM Download Palabre Flash Xml Socket Server FAQ Download Palabre Flash Xml Socket Server WHAT IS IT
 



Using Palabre ? Coming here for Support ? Please consider making an (even small) donation :)
Palabre Forum  


Post a new message in "Default Forum"
Name:
Subject:
topic icon:
no
boardcode:
 Colour:  Size:   Close all tags
Message:
CAPTCHA: How much is 7 added to 2

Topic History of: Tell Palabre what to do
Max. showing the last posts - (Last post first)
Author Message
Maeko Thanks! You made my day ;)
admin Hi



In the Flash examples there is a chat you could look at.



In the FAQ http://palabre.gavroche.net/content/category/3/7/25/ ,



you can have a look at the basic XML nodes supported :

http://palabre.gavroche.net/content/view/12/25/




After that it depends on what you want to do exactly.

palabre is here to dispatch informations from a Flash client to another, by creating private messages, rooms, etc ...
Maeko anyone?
Maeko I successfuly connected my App to the server.

It's kinda of a chat, the chat connects but it does nothing more than that.





How can i define the Palabres' behaviour face to this chat?



My code to connect is this:





Code:

 mySocket = new XMLSocket();
mySocket.connect("localhost"2468);
mySocket.onConnect = function(success)
{
    if (
success)
        
lol.text "coiso";
    else
        
lol.text "naaaaa";
}

(...)

function 
enviar_desenho() {
    
mySocket.send(text);
        
text null;
}

(...)


XMLSocket.prototype.onData = function (msg) {
Display msg code here
}



What am i missing?

Thanks.