<?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 for Code With Design</title>
	<atom:link href="http://codewithdesign.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://codewithdesign.com</link>
	<description>Web development, code, design, css, all around programming blog</description>
	<lastBuildDate>Wed, 05 May 2010 15:44:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Introduction to AS3: Variable types by Caleb</title>
		<link>http://codewithdesign.com/2010/02/08/introduction-to-as3-variable-types/comment-page-1/#comment-156</link>
		<dc:creator>Caleb</dc:creator>
		<pubDate>Wed, 05 May 2010 15:44:30 +0000</pubDate>
		<guid isPermaLink="false">http://codewithdesign.com/?p=266#comment-156</guid>
		<description>I&#039;m not to sure what you are trying to do without seeing the code. Assuming you are trying to use binary data which is the proper use for the byte array and not an array that is using bytes you will need to make sure that the proper imports have been made.
&lt;code&gt;import flash.utils.ByteArray;
    import flash.errors.EOFError;
&lt;/code&gt;

Also, the End Of File Error that you are receiving is caused when you read a file that is not stored in the array. An example of this is if you were to have a byte array that is filled with a float 14.05 and an int of 5. If you were to read float, read int then read boolean you would have a problem since the data you are trying to get is not stored in the array.

This should help you out.

http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/flash/utils/ByteArray.html</description>
		<content:encoded><![CDATA[<p>I&#8217;m not to sure what you are trying to do without seeing the code. Assuming you are trying to use binary data which is the proper use for the byte array and not an array that is using bytes you will need to make sure that the proper imports have been made.<br />
<code>import flash.utils.ByteArray;<br />
    import flash.errors.EOFError;<br />
</code></p>
<p>Also, the End Of File Error that you are receiving is caused when you read a file that is not stored in the array. An example of this is if you were to have a byte array that is filled with a float 14.05 and an int of 5. If you were to read float, read int then read boolean you would have a problem since the data you are trying to get is not stored in the array.</p>
<p>This should help you out.</p>
<p><a href="http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/flash/utils/ByteArray.html" rel="nofollow">http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/flash/utils/ByteArray.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Introduction to AS3: Variable types by Manjiri</title>
		<link>http://codewithdesign.com/2010/02/08/introduction-to-as3-variable-types/comment-page-1/#comment-155</link>
		<dc:creator>Manjiri</dc:creator>
		<pubDate>Wed, 05 May 2010 06:56:43 +0000</pubDate>
		<guid isPermaLink="false">http://codewithdesign.com/?p=266#comment-155</guid>
		<description>How to read float value from an byte array?
In my application &quot;End of File error&quot; is occured when I used bytearray.readFloat()
bytearray.readDouble() methods.
Can any1 help?</description>
		<content:encoded><![CDATA[<p>How to read float value from an byte array?<br />
In my application &#8220;End of File error&#8221; is occured when I used bytearray.readFloat()<br />
bytearray.readDouble() methods.<br />
Can any1 help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Advantages to writing files in binary with java by Writing and reading objects and arrays to a binary file with java &#124; Code With Design</title>
		<link>http://codewithdesign.com/2010/03/31/advantages-to-writing-files-in-binary-with-java/comment-page-1/#comment-122</link>
		<dc:creator>Writing and reading objects and arrays to a binary file with java &#124; Code With Design</dc:creator>
		<pubDate>Wed, 07 Apr 2010 15:02:47 +0000</pubDate>
		<guid isPermaLink="false">http://codewithdesign.com/?p=352#comment-122</guid>
		<description>[...] Advantage of writing files in binary with java [...]</description>
		<content:encoded><![CDATA[<p>[...] Advantage of writing files in binary with java [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Objective-C creating objects, methods and variables by arron</title>
		<link>http://codewithdesign.com/2010/04/05/objective-c-creating-objects-methods-and-variables/comment-page-1/#comment-109</link>
		<dc:creator>arron</dc:creator>
		<pubDate>Mon, 05 Apr 2010 20:00:41 +0000</pubDate>
		<guid isPermaLink="false">http://codewithdesign.com/?p=384#comment-109</guid>
		<description>thanks, just what i needed.</description>
		<content:encoded><![CDATA[<p>thanks, just what i needed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Introduction to Objective –C by Anthony</title>
		<link>http://codewithdesign.com/2010/04/01/introduction-to-objective-%e2%80%93c/comment-page-1/#comment-107</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Fri, 02 Apr 2010 10:32:46 +0000</pubDate>
		<guid isPermaLink="false">http://codewithdesign.com/?p=362#comment-107</guid>
		<description>To avoid a warning perhaps

NSLog(@&quot;%@&quot;, @&quot;Hello, World!&quot;);</description>
		<content:encoded><![CDATA[<p>To avoid a warning perhaps</p>
<p>NSLog(@&#8221;%@&#8221;, @&#8221;Hello, World!&#8221;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Writing information to a binary file in java by Reading information from a binary file with java &#124; Code With Design</title>
		<link>http://codewithdesign.com/2010/03/30/writing-information-to-a-binary-file/comment-page-1/#comment-106</link>
		<dc:creator>Reading information from a binary file with java &#124; Code With Design</dc:creator>
		<pubDate>Wed, 31 Mar 2010 07:19:18 +0000</pubDate>
		<guid isPermaLink="false">http://codewithdesign.com/?p=348#comment-106</guid>
		<description>[...] file with java   Reading information from a binary file with javaThis tutorial is an extension from “writing information to a binary file with java.” It is in your best interest to read the previous article since this one will be continuing the [...]</description>
		<content:encoded><![CDATA[<p>[...] file with java   Reading information from a binary file with javaThis tutorial is an extension from “writing information to a binary file with java.” It is in your best interest to read the previous article since this one will be continuing the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Going through website creation part 2: Backend by Going Through Website Creation Part 1: Layout &#124; Code With Design</title>
		<link>http://codewithdesign.com/2010/03/26/going-through-website-creation-part-2-backend/comment-page-1/#comment-104</link>
		<dc:creator>Going Through Website Creation Part 1: Layout &#124; Code With Design</dc:creator>
		<pubDate>Sat, 27 Mar 2010 01:59:19 +0000</pubDate>
		<guid isPermaLink="false">http://codewithdesign.com/?p=292#comment-104</guid>
		<description>[...] Continue on to read part 2 [...]</description>
		<content:encoded><![CDATA[<p>[...] Continue on to read part 2 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ways to make you work more effectively from home by Mike</title>
		<link>http://codewithdesign.com/2010/03/25/ways-to-make-you-work-more-effectively-form-home/comment-page-1/#comment-102</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Fri, 26 Mar 2010 01:36:50 +0000</pubDate>
		<guid isPermaLink="false">http://codewithdesign.com/?p=283#comment-102</guid>
		<description>Good stuff! Definitely do a lot of work from home and find it very hard to focus a lot of the time. I really need to start picking up some of these habits to trick myself into working.</description>
		<content:encoded><![CDATA[<p>Good stuff! Definitely do a lot of work from home and find it very hard to focus a lot of the time. I really need to start picking up some of these habits to trick myself into working.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Update: New OS, new possibilities. by arron s</title>
		<link>http://codewithdesign.com/2010/02/25/update-new-os-new-possibilities/comment-page-1/#comment-98</link>
		<dc:creator>arron s</dc:creator>
		<pubDate>Fri, 26 Feb 2010 02:14:13 +0000</pubDate>
		<guid isPermaLink="false">http://codewithdesign.com/?p=268#comment-98</guid>
		<description>+1 for apple</description>
		<content:encoded><![CDATA[<p>+1 for apple</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Going Through Website Creation Part 1: Layout by admin</title>
		<link>http://codewithdesign.com/2009/11/13/going-through-website-creation-part-1-layout/comment-page-1/#comment-25</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 20 Nov 2009 21:46:53 +0000</pubDate>
		<guid isPermaLink="false">http://codewithdesign.com/?p=151#comment-25</guid>
		<description>Thanks for the comment, I don&#039;t plan on creating a part 3 but currently I am working on part 2. This article is a little bigger then the rest and thus a bit more work is going into it. Part 2 will be covering simple database connections, pulling data, and maybe some URL manipulations.</description>
		<content:encoded><![CDATA[<p>Thanks for the comment, I don&#8217;t plan on creating a part 3 but currently I am working on part 2. This article is a little bigger then the rest and thus a bit more work is going into it. Part 2 will be covering simple database connections, pulling data, and maybe some URL manipulations.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
