<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Use AMF with JavaScript in Adobe AIR</title>
	<atom:link href="http://robrusher.com/2009/03/31/use-amf-with-javascript-in-adobe-air/feed/" rel="self" type="application/rss+xml" />
	<link>http://robrusher.com/2009/03/31/use-amf-with-javascript-in-adobe-air/</link>
	<description>experience is everything</description>
	<lastBuildDate>Mon, 23 Apr 2012 02:14:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>By: Albulescu Cosmin</title>
		<link>http://robrusher.com/2009/03/31/use-amf-with-javascript-in-adobe-air/comment-page-1/#comment-3514</link>
		<dc:creator>Albulescu Cosmin</dc:creator>
		<pubDate>Thu, 06 Oct 2011 07:46:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.robrusher.com/?p=67#comment-3514</guid>
		<description>Hi, very nice post. Very usefull</description>
		<content:encoded><![CDATA[<p>Hi, very nice post. Very usefull</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flex learner &#124; Blog &#124; Use AMF with JavaScript in Adobe AIR &#124; in a rush</title>
		<link>http://robrusher.com/2009/03/31/use-amf-with-javascript-in-adobe-air/comment-page-1/#comment-842</link>
		<dc:creator>Flex learner &#124; Blog &#124; Use AMF with JavaScript in Adobe AIR &#124; in a rush</dc:creator>
		<pubDate>Tue, 23 Nov 2010 02:38:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.robrusher.com/?p=67#comment-842</guid>
		<description>[...] Continue reading here: Use AMF with JavaScript in Adobe AIR &#124; in a rush [...]</description>
		<content:encoded><![CDATA[<p>[...] Continue reading here: Use AMF with JavaScript in Adobe AIR | in a rush [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://robrusher.com/2009/03/31/use-amf-with-javascript-in-adobe-air/comment-page-1/#comment-326</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 30 Jul 2010 13:45:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.robrusher.com/?p=67#comment-326</guid>
		<description>AMF provides better performance of data transmission between the client and server. It is a binary format that is sent over HTTP and it is native to the Flash Player. Your other alternatives are XML-based and ascii, so they are  inherently slower.
You should check out this app by James Ward that demonstrates the capabilities of AMF vs other technologies. http://www.jamesward.com/census/</description>
		<content:encoded><![CDATA[<p>AMF provides better performance of data transmission between the client and server. It is a binary format that is sent over HTTP and it is native to the Flash Player. Your other alternatives are XML-based and ascii, so they are  inherently slower.<br />
You should check out this app by James Ward that demonstrates the capabilities of AMF vs other technologies. <a href="http://www.jamesward.com/census/" rel="nofollow">http://www.jamesward.com/census/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: xyz</title>
		<link>http://robrusher.com/2009/03/31/use-amf-with-javascript-in-adobe-air/comment-page-1/#comment-296</link>
		<dc:creator>xyz</dc:creator>
		<pubDate>Tue, 20 Jul 2010 11:59:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.robrusher.com/?p=67#comment-296</guid>
		<description>what exactly can we do using amf.net</description>
		<content:encoded><![CDATA[<p>what exactly can we do using amf.net</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HB</title>
		<link>http://robrusher.com/2009/03/31/use-amf-with-javascript-in-adobe-air/comment-page-1/#comment-51</link>
		<dc:creator>HB</dc:creator>
		<pubDate>Thu, 22 Oct 2009 01:43:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.robrusher.com/?p=67#comment-51</guid>
		<description>Answering myself a month or so later, apparently NetStream IS available in JavaScript AIR apps, even though it&#039;s not part of the JS Language Reference.

Hope this formatting comes through:

var nc = new air.NetConnection();
nc.addEventListener(air.NetStatusEvent, function(e) {
    if (e.info.code == &#039;NetConnection.Connect.Success&#039;) {
        var ns = new runtime.flash.net.NetStream(nc);
        ns.publish(&#039;myFilename&#039;, &#039;record&#039;);
        // don&#039;t forget to close nc and ns when you&#039;re done
    }
});
nc.connect(&#039;rtmp://localhost/myService&#039;);</description>
		<content:encoded><![CDATA[<p>Answering myself a month or so later, apparently NetStream IS available in JavaScript AIR apps, even though it&#8217;s not part of the JS Language Reference.</p>
<p>Hope this formatting comes through:</p>
<p>var nc = new air.NetConnection();<br />
nc.addEventListener(air.NetStatusEvent, function(e) {<br />
    if (e.info.code == &#8216;NetConnection.Connect.Success&#8217;) {<br />
        var ns = new runtime.flash.net.NetStream(nc);<br />
        ns.publish(&#8216;myFilename&#8217;, &#8216;record&#8217;);<br />
        // don&#8217;t forget to close nc and ns when you&#8217;re done<br />
    }<br />
});<br />
nc.connect(&#8216;rtmp://localhost/myService&#8217;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HB</title>
		<link>http://robrusher.com/2009/03/31/use-amf-with-javascript-in-adobe-air/comment-page-1/#comment-50</link>
		<dc:creator>HB</dc:creator>
		<pubDate>Mon, 07 Sep 2009 18:24:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.robrusher.com/?p=67#comment-50</guid>
		<description>What about a NetStream equivalent? I&#039;ve been trying to find info about recording Microphone data, and every Flash example I&#039;ve found attaches the NetConnection object to a NetStream object so you can send it to Flash Media Server.

NetStream doesn&#039;t appear to be available according to the JavaScript Language Reference, do you know if there&#039;s any way to record Microphone data either locally or send it to a server? I have an AMFPHP server available if it&#039;s possible to send it there.</description>
		<content:encoded><![CDATA[<p>What about a NetStream equivalent? I&#8217;ve been trying to find info about recording Microphone data, and every Flash example I&#8217;ve found attaches the NetConnection object to a NetStream object so you can send it to Flash Media Server.</p>
<p>NetStream doesn&#8217;t appear to be available according to the JavaScript Language Reference, do you know if there&#8217;s any way to record Microphone data either locally or send it to a server? I have an AMFPHP server available if it&#8217;s possible to send it there.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

