hi At first I want to say this, this might not be an issue about red5.But I thought that somewhere in deep it can be pertinent to red5.
At the red5 side I am creating a shared object called *chatSharedObject*connecting from the client to this with no problem. For the client side,I am using openlaszlo platform, but using actionscript code for the shared object implementation. cilent application is connecting to the shared object on the red5 side successfully(as I see on the red5 logs). here is the calling code snippet: [CODE] <button id="sendButton">send <handler name="onclick" method="sendClicked" /> <method name="sendClicked" args="v=0"> if (message.text != "") { //Debug.write("Message sent!"); classroot.writeSharedObject( message.text); message.clearText(); message.setAttribute("text_y", 0); } </method> </button> <method name="writeSharedObject" args="message"> [B]//shared object send method is being called[/B] this.send("writeMessage",loginScreen.getUsername(),message); </method> <!--this method writes the messages to the debug window which will be shown to all users--> <method name="writeMessage" args="username, msg"> //Debug.debug(msg); messageArea.addText(username+ " : "+msg+"\n"); </method>[/CODE] When I generate the swf object and try to use this application, nothing is being displayed although there is no problem on this issue on the development enviroment. Problem causes when I try to run the swf10 object. Is this about the red5 side issue, or about the flash side? As I see on the red5 logs that there is no problem with the flash applciation connetion with the red5 server application and the shared objedcts. But I canT see the contents of shared object on the flash application. This might be a security issue of flash, right? Even if it is, please can anyone help me how to work out this problem. Has anyone faced such like behaviour while running flash 9 object Thanks in advance -- Cem SONMEZ _______________________________________________ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders