<?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: BitsReader: Read bits from given ByteArray</title>
	<atom:link href="http://ntt.cc/2008/07/15/bitsreader-read-bits-from-given-bytearray.html/feed" rel="self" type="application/rss+xml" />
	<link>http://ntt.cc/2008/07/15/bitsreader-read-bits-from-given-bytearray.html</link>
	<description>Flex,Flash,Ajax and Freebie Resource for Developers and Designers</description>
	<lastBuildDate>Tue, 16 Mar 2010 13:56:15 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: hasselquist.net &#187; Blog Archive &#187; A trick of ActionScript 3: Using break “labelname” to break from outer loops</title>
		<link>http://ntt.cc/2008/07/15/bitsreader-read-bits-from-given-bytearray.html/comment-page-1#comment-1684</link>
		<dc:creator>hasselquist.net &#187; Blog Archive &#187; A trick of ActionScript 3: Using break “labelname” to break from outer loops</dc:creator>
		<pubDate>Thu, 21 Aug 2008 02:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://ntt.cc/?p=1011#comment-1684</guid>
		<description>[...] BitsReader: Read bits from given ByteArray (6) [...]</description>
		<content:encoded><![CDATA[<p>[...] BitsReader: Read bits from given ByteArray (6) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flex/AIR中如何以Byte为单位读取BMP格式图片的代码 - 中文Flex例子</title>
		<link>http://ntt.cc/2008/07/15/bitsreader-read-bits-from-given-bytearray.html/comment-page-1#comment-1637</link>
		<dc:creator>Flex/AIR中如何以Byte为单位读取BMP格式图片的代码 - 中文Flex例子</dc:creator>
		<pubDate>Tue, 12 Aug 2008 10:34:14 +0000</pubDate>
		<guid isPermaLink="false">http://ntt.cc/?p=1011#comment-1637</guid>
		<description>[...] 在BitsReader: Read bits from given ByteArray中专门介绍过针对SWF的Byte读去操作，Flex/Air本身其实支持png, gif, jpg,swf 格式的载入，不过却不支持BMP。这个其实是相当奇怪的，不过既然这样设计，那也没办法。只能自己写代码来解决BMP载入的问题了。好在Flex cookbook上已经提供了现成的代码并且有相关的说明，有需要的直接去取来用吧。下面是地址： [...]</description>
		<content:encoded><![CDATA[<p>[...] 在BitsReader: Read bits from given ByteArray中专门介绍过针对SWF的Byte读去操作，Flex/Air本身其实支持png, gif, jpg,swf 格式的载入，不过却不支持BMP。这个其实是相当奇怪的，不过既然这样设计，那也没办法。只能自己写代码来解决BMP载入的问题了。好在Flex cookbook上已经提供了现成的代码并且有相关的说明，有需要的直接去取来用吧。下面是地址： [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yogesh Puri</title>
		<link>http://ntt.cc/2008/07/15/bitsreader-read-bits-from-given-bytearray.html/comment-page-1#comment-1589</link>
		<dc:creator>Yogesh Puri</dc:creator>
		<pubDate>Wed, 06 Aug 2008 12:12:52 +0000</pubDate>
		<guid isPermaLink="false">http://ntt.cc/?p=1011#comment-1589</guid>
		<description>Hi

Thanks for the fix and project download.</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Thanks for the fix and project download.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ntt.cc</title>
		<link>http://ntt.cc/2008/07/15/bitsreader-read-bits-from-given-bytearray.html/comment-page-1#comment-1585</link>
		<dc:creator>Ntt.cc</dc:creator>
		<pubDate>Wed, 06 Aug 2008 08:44:08 +0000</pubDate>
		<guid isPermaLink="false">http://ntt.cc/?p=1011#comment-1585</guid>
		<description>Sorry , there is something wrong with the codes in this article.

LINE 91:::
# result ^= (byte&gt; (position%BYTE_LEGNTH+INT_LENGTH-BYTE_LEGNTH) ;

it should be :
result ^= (byte&lt;&gt;&gt; (position%BYTE_LEGNTH+INT_LENGTH-BYTE_LEGNTH) ;

LINE 101:::
# result (BYTE_LEGNTH-leftBitsLength);

it should be :
result ^= byte&gt;&gt;(BYTE_LEGNTH-leftBitsLength);</description>
		<content:encoded><![CDATA[<p>Sorry , there is something wrong with the codes in this article.</p>
<p>LINE 91:::<br />
# result ^= (byte&gt; (position%BYTE_LEGNTH+INT_LENGTH-BYTE_LEGNTH) ;</p>
<p>it should be :<br />
result ^= (byte&lt;&gt;&gt; (position%BYTE_LEGNTH+INT_LENGTH-BYTE_LEGNTH) ;</p>
<p>LINE 101:::<br />
# result (BYTE_LEGNTH-leftBitsLength);</p>
<p>it should be :<br />
result ^= byte&gt;&gt;(BYTE_LEGNTH-leftBitsLength);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yogesh Puri</title>
		<link>http://ntt.cc/2008/07/15/bitsreader-read-bits-from-given-bytearray.html/comment-page-1#comment-1584</link>
		<dc:creator>Yogesh Puri</dc:creator>
		<pubDate>Wed, 06 Aug 2008 08:23:58 +0000</pubDate>
		<guid isPermaLink="false">http://ntt.cc/?p=1011#comment-1584</guid>
		<description>Hi

Thanks for sharing this class as i was in really need of the same. I am writing a SWF reader in AIR and tried to use this class. However i am facing two errors on following lines while compiling

LINE 91::: 
# result ^= (byte&gt; (position%BYTE_LEGNTH+INT_LENGTH-BYTE_LEGNTH) ;

LINE 101:::
# result (BYTE_LEGNTH-leftBitsLength);

Can you please suggest what are the issues in these lines or what is the correct code</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Thanks for sharing this class as i was in really need of the same. I am writing a SWF reader in AIR and tried to use this class. However i am facing two errors on following lines while compiling</p>
<p>LINE 91:::<br />
# result ^= (byte&gt; (position%BYTE_LEGNTH+INT_LENGTH-BYTE_LEGNTH) ;</p>
<p>LINE 101:::<br />
# result (BYTE_LEGNTH-leftBitsLength);</p>
<p>Can you please suggest what are the issues in these lines or what is the correct code</p>
]]></content:encoded>
	</item>
</channel>
</rss>
