|
Home > Archive > Macromedia Flash Server > December 2005 > Saving the chat conversations in a file in the server
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Saving the chat conversations in a file in the server
|
|
| Leo Perez 2005-12-17, 5:45 pm |
| Hi to all,
How can i do to save the conversations in a text chat in a file in the
server?
Thanks.
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
| |
| Bill Sanders 2005-12-17, 8:45 pm |
| Leo,
Use a server-side record using the ss Stream class.
HTH,
Bill
On Dec 17, 2005, at 6:24 PM, Leo Perez wrote:
> Hi to all,
>
> How can i do to save the conversations in a text chat in a file in the
> server?
>
> Thanks.
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
bill sanders | www.sandlight.com | bloomfield, ct | 860-242-2260
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
| |
| Leo Perez 2005-12-17, 8:45 pm |
| Thanks Bill, can you write here an example?
Best Regards,
Leo.
2005/12/18, Bill Sanders <wdsanders-Wuw85uim5zDR7s880joybQ@public.gmane.org>:
>
> Leo,
>
> Use a server-side record using the ss Stream class.
>
> HTH,
> Bill
>
> On Dec 17, 2005, at 6:24 PM, Leo Perez wrote:
>
>
> bill sanders | www.sandlight.com | bloomfield, ct | 860-242-2260
>
>
>
> =3D-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =3D-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
| |
| Bill Sanders 2005-12-17, 8:45 pm |
| Leo,
Just use Stream.record()....
myStream = Stream.get("stream");
if(myStream) {
myStream.play("flvName");
myStream.record();
}
HTH,
Bill
On Dec 17, 2005, at 8:36 PM, Leo Perez wrote:
> Thanks Bill, can you write here an example?
>
> Best Regards,
>
> Leo.
>
> 2005/12/18, Bill Sanders <wdsanders-Wuw85uim5zDR7s880joybQ@public.gmane.org>:
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
bill sanders | www.sandlight.com | bloomfield, ct | 860-242-2260
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
| |
| Leo Perez 2005-12-17, 8:45 pm |
| Thanks Bill.
2005/12/18, Bill Sanders <wdsanders-Wuw85uim5zDR7s880joybQ@public.gmane.org>:
>
> Leo,
>
> Just use Stream.record()....
>
> myStream =3D Stream.get("stream");
> if(myStream) {
> myStream.play("flvName");
> myStream.record();
> }
>
> HTH,
> Bill
> On Dec 17, 2005, at 8:36 PM, Leo Perez wrote:
>
>
> bill sanders | www.sandlight.com | bloomfield, ct | 860-242-2260
>
>
>
> =3D-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =3D-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
|
|
|
|
|