| Bill Sanders 2006-08-23, 7:12 am |
| Hi Renaun,
Thanks for the information and app. I've been working with FMS and AS
3.0, and my apps are working ok, but I'm not sure which 2 lines of
code you're referring to. Do you mean something like this?: (what I use)
NetConnection.defaultObjectEncoding=flash.net.ObjectEncoding.AMF0; //
<= Line 1
var nc:NetConnection = new NetConnection();
nc.addEventListener(NetStatusEvent.NET_STATUS,checkHookupStatus); //
<= Line 2
......
function checkHookupStatus(event:NetStatusEvent):
void
{
if (event.info.code == "NetConnection.Connect.Success")
{
ns = new NetStream(nc);
}
}
Thanks again for sharing your code.
Bill
On Aug 23, 2006, at 3:22 AM, Renaun Erickson wrote:
> When Video is part of a bigger application it makes perfect sense
> to have the ease of integrating the Video object inside a Flex
> application. Creating a big business application in Flash is not
> as easy as in Flex.
> There is no performance issues with using AMF0 and not the AMF3
> format between Flex and FMS, just a little inconvient (2 lines of
> code). I see a lot of situations where it makes sense to have the
> ease of Flex application building tools around basic FMS Video
> centric features.
>
> Renaun
> ________________________________________
_______
> FlashComm-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
bill sanders | www.sandlight.com | bloomfield, ct | 860-242-2260
________________________________________
_______
FlashComm-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
|