<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Wire Lust - Latest Comments</title><link xmlns="http://www.w3.org/2005/Atom" rel="http://api.friendfeed.com/2008/03#sup" href="http://disqus.com/sup/all.sup#forumcomments-f52c21e0" type="application/json"/><link>http://wirelust.disqus.com/</link><description></description><atom:link href="http://wirelust.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Fri, 04 May 2012 00:46:38 -0000</lastBuildDate><item><title>Re: Simple Image Cropping with Flex</title><link>http://www.wirelust.com/2010/01/06/simple-image-cropping-with-flex/#comment-518413862</link><description>&lt;p&gt;okay..thank you..&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Samarth</dc:creator><pubDate>Fri, 04 May 2012 00:46:38 -0000</pubDate></item><item><title>Re: Simple Image Cropping with Flex</title><link>http://www.wirelust.com/2010/01/06/simple-image-cropping-with-flex/#comment-518412508</link><description>&lt;p&gt;crop boz is the area which you want to crop in an image..&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Samarth</dc:creator><pubDate>Fri, 04 May 2012 00:45:33 -0000</pubDate></item><item><title>Re: Simple Image Cropping with Flex</title><link>http://www.wirelust.com/2010/01/06/simple-image-cropping-with-flex/#comment-517748997</link><description>&lt;p&gt;You can just comment out the call to ExternalInterface. this is just used to send the values back to the web browser so it can be easily displayed for debugging. it isn't needed for the application to work.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Terrence Curran</dc:creator><pubDate>Thu, 03 May 2012 12:04:45 -0000</pubDate></item><item><title>Re: Simple Image Cropping with Flex</title><link>http://www.wirelust.com/2010/01/06/simple-image-cropping-with-flex/#comment-516061227</link><description>&lt;p&gt;Hi,&lt;br&gt;    I am not getting in the above code what is the cropBox and how can i do this using flex 4.5.&lt;br&gt;   Can any one help me.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Parthiya Dharamsoth</dc:creator><pubDate>Wed, 02 May 2012 02:43:27 -0000</pubDate></item><item><title>Re: Simple Image Cropping with Flex</title><link>http://www.wirelust.com/2010/01/06/simple-image-cropping-with-flex/#comment-514789175</link><description>&lt;p&gt;their is an error in the above code..&lt;/p&gt;

&lt;p&gt;error is shown in the image...&lt;br&gt;help required urgent...&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Samarth</dc:creator><pubDate>Tue, 01 May 2012 03:45:53 -0000</pubDate></item><item><title>Re: Creating an iText pdf with embedded JFreeChart</title><link>http://www.wirelust.com/2008/03/17/creating-an-itext-pdf-with-embedded-jfreechart/#comment-486709627</link><description>&lt;p&gt;thank you very much .&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">jack</dc:creator><pubDate>Thu, 05 Apr 2012 02:04:14 -0000</pubDate></item><item><title>Re: Creating an iText pdf with embedded JFreeChart</title><link>http://www.wirelust.com/2008/03/17/creating-an-itext-pdf-with-embedded-jfreechart/#comment-479382113</link><description>&lt;p&gt;Thanks ...It saved my day...ta&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mak</dc:creator><pubDate>Thu, 29 Mar 2012 06:01:05 -0000</pubDate></item><item><title>Re: Simple Image Cropping with Flex</title><link>http://www.wirelust.com/2010/01/06/simple-image-cropping-with-flex/#comment-426245035</link><description>&lt;p&gt;How to capture the selected image &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Trinu</dc:creator><pubDate>Wed, 01 Feb 2012 06:14:18 -0000</pubDate></item><item><title>Re: AS3 port of JZLib</title><link>http://www.wirelust.com/2009/06/08/as3-port-of-jzlib/#comment-366898938</link><description>&lt;p&gt;I used the code, it is helpful.  I have one more Q:  The file is textfile, how can I load its content into a string?  Thanks.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">shaning</dc:creator><pubDate>Thu, 04 Mar 2010 11:15:49 -0000</pubDate></item><item><title>Re: AS3 port of JZLib</title><link>http://www.wirelust.com/2009/06/08/as3-port-of-jzlib/#comment-366898937</link><description>&lt;p&gt;I have no idea what you are trying to do since you didn't post any code that you are having issues with.  URLLoader is well documented by adobe and I suggest you look up its capabilities on google.&lt;br&gt;Here is an example of uncompressing and loading a text file:&lt;/p&gt;

&lt;p&gt;public class fzip extends Sprite&lt;br&gt;{&lt;br&gt;	private var zip:FZip;&lt;br&gt;	&lt;br&gt;	public function fzip()&lt;br&gt;	{&lt;br&gt;		zip = new FZip();&lt;br&gt;		zip.addEventListener(Event.COMPLETE, onComplete);&lt;br&gt;		zip.load(new URLRequest("20100129.zip"));&lt;br&gt;	}&lt;br&gt;	&lt;br&gt;	private function onComplete(e:Event):void &lt;br&gt;	{&lt;br&gt;		trace("zip complete");&lt;br&gt;		&lt;br&gt;		var file:FZipFile = zip.getFileAt(0);&lt;br&gt;		&lt;br&gt;		trace(file.getContentAsString(true));&lt;br&gt;	}&lt;br&gt;}&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tea</dc:creator><pubDate>Thu, 04 Mar 2010 10:16:19 -0000</pubDate></item><item><title>Re: AS3 port of JZLib</title><link>http://www.wirelust.com/2009/06/08/as3-port-of-jzlib/#comment-366898934</link><description>&lt;p&gt;Is it true for the following statements:&lt;br&gt;1)  flash.net.URLLoader does not support to load a file in zip.&lt;br&gt;2)  flash.display.Loader does not support to load a textfile.&lt;br&gt;Thanks if you can share your experience.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">shaning</dc:creator><pubDate>Thu, 04 Mar 2010 10:12:29 -0000</pubDate></item><item><title>Re: AS3 port of JZLib</title><link>http://www.wirelust.com/2009/06/08/as3-port-of-jzlib/#comment-366898933</link><description>&lt;p&gt;Question:  can flash.display.Loader be used to load a textfile in a zip?  I got &lt;br&gt;Error #2124: Loaded file is an unknown type.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">shaning</dc:creator><pubDate>Thu, 04 Mar 2010 09:39:40 -0000</pubDate></item><item><title>Re: AS3 port of JZLib</title><link>http://www.wirelust.com/2009/06/08/as3-port-of-jzlib/#comment-366898930</link><description>&lt;p&gt;I used the source code for &lt;br&gt;famfamfam_silk_icons_v013_cli.zip, which is in http://localhost:3000/myTest/flex_bin/ but still get error.&lt;/p&gt;

&lt;p&gt;Error #2044: Unhandled ioError:. text=Error #2032: Stream Error. URL: http://localhost:3000/myTest/flex_bin/famfamfam_silk_icons_v013_cli.zip&lt;/p&gt;

&lt;p&gt;I don't know what is wrong with me.  Wish someone can share his/her experience.  Thanks.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">shaning</dc:creator><pubDate>Wed, 03 Mar 2010 15:57:12 -0000</pubDate></item><item><title>Re: AS3 port of JZLib</title><link>http://www.wirelust.com/2009/06/08/as3-port-of-jzlib/#comment-366898928</link><description>&lt;p&gt;I tried to unzip a folder; states.zip, which contains 5 dozens of txt file.  &lt;/p&gt;

&lt;p&gt;public function FZipTest() {&lt;br&gt;	zip = new FZip();&lt;br&gt;	zip.addEventListener(Event.OPEN, onOpen);&lt;br&gt;	zip.addEventListener(Event.COMPLETE, onComplete);&lt;br&gt;	zip.load(new URLRequest(\states.zip\));  // in the same directory of this file's swf&lt;br&gt;}&lt;/p&gt;

&lt;p&gt;However, I got such an error:&lt;/p&gt;

&lt;p&gt;Error #2044: Unhandled IOErrorEvent:. text=Error #2124: Loaded file is an unknown type.&lt;br&gt;Can anyone hint me where the file type should be defined?  Thanks.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">shaning</dc:creator><pubDate>Wed, 03 Mar 2010 15:37:35 -0000</pubDate></item><item><title>Re: AS3 port of JZLib</title><link>http://www.wirelust.com/2009/06/08/as3-port-of-jzlib/#comment-366898924</link><description>&lt;p&gt;Got an error at &lt;br&gt;while(d_stream.total_in &amp;lt;= _content.length &amp;amp;&amp;amp; i&amp;lt;=_content.length*4)&lt;/p&gt;

&lt;p&gt;where i is undefined.  I guess var i:int should defined somewhere in the source code.  Could someone help for this issue?  Thanks.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">shaning</dc:creator><pubDate>Wed, 03 Mar 2010 15:02:54 -0000</pubDate></item><item><title>Re: AS3 port of JZLib</title><link>http://www.wirelust.com/2009/06/08/as3-port-of-jzlib/#comment-366898922</link><description>&lt;p&gt;I updated the link to the zip with the latest copy from subversion.  Cast should be in there. &lt;a href="http://www.wirelust.com/examples/fzip_as3zlib/as3zlib_snapshot_20100303.zip" rel="nofollow"&gt;as3zlib_snapshot_20100303.zip&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tea</dc:creator><pubDate>Wed, 03 Mar 2010 14:57:23 -0000</pubDate></item><item><title>Re: AS3 port of JZLib</title><link>http://www.wirelust.com/2009/06/08/as3-port-of-jzlib/#comment-366898920</link><description>&lt;p&gt;Got it already.  Never mind.  Thanks.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">shaning</dc:creator><pubDate>Wed, 03 Mar 2010 14:57:23 -0000</pubDate></item><item><title>Re: AS3 port of JZLib</title><link>http://www.wirelust.com/2009/06/08/as3-port-of-jzlib/#comment-366898918</link><description>&lt;p&gt;New problem if anyone can help:&lt;br&gt;Can't find com.wirelust.util.Cast&lt;br&gt;In the downloaded zip, there is no com/wirelust/util&lt;br&gt;If it is a simple as file or a a bundle of files, could you email me at mrgis08@yahoo.com?  Thanks.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">shaning</dc:creator><pubDate>Wed, 03 Mar 2010 14:50:21 -0000</pubDate></item><item><title>Re: AS3 port of JZLib</title><link>http://www.wirelust.com/2009/06/08/as3-port-of-jzlib/#comment-366898916</link><description>&lt;p&gt;Got how to do already.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">shaning</dc:creator><pubDate>Wed, 03 Mar 2010 14:43:27 -0000</pubDate></item><item><title>Re: AS3 port of JZLib</title><link>http://www.wirelust.com/2009/06/08/as3-port-of-jzlib/#comment-366898913</link><description>&lt;p&gt;The two zips can be combined into a single src folder.  sorry I don't have time to  provide much support beyond this.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tea</dc:creator><pubDate>Wed, 03 Mar 2010 14:41:01 -0000</pubDate></item><item><title>Re: AS3 port of JZLib</title><link>http://www.wirelust.com/2009/06/08/as3-port-of-jzlib/#comment-366898911</link><description>&lt;p&gt;&lt;a href="http://zipFZipFile.as" rel="nofollow"&gt;zipFZipFile.as&lt;/a&gt;:562]&lt;br&gt;	at deng.fzip::FZipFile/get content()[C:Documents and Settingsshaning.yuMy DocumentsFlex Builder &lt;a href="http://3myTestsrcdengzipFZipFile.as" rel="nofollow"&gt;3myTestsrcdengzipFZipFile.as&lt;/a&gt;:144]&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">shaning</dc:creator><pubDate>Wed, 03 Mar 2010 14:08:06 -0000</pubDate></item><item><title>Re: OSX Dictionary Screen Saver</title><link>http://www.wirelust.com/2007/12/11/osx-dictionary-screen-saver/#comment-366898789</link><description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;I have lost mine dictionary screen saver, and cant find it, where did you find it?&lt;/p&gt;

&lt;p&gt;Best regards,&lt;br&gt;Bjorn&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bjorn</dc:creator><pubDate>Fri, 26 Feb 2010 12:05:53 -0000</pubDate></item><item><title>Re: Converting binary to signed decimal in Actionscript</title><link>http://www.wirelust.com/2009/04/08/converting-binary-to-signed-decimal-in-actionscript/#comment-366898890</link><description>&lt;p&gt;um.  this particular example deals with 16bit numbers so they have a maximum value of 65,535.&lt;/p&gt;

&lt;p&gt;You could do this with a 32 bit number: &lt;/p&gt;

&lt;p&gt;var hexValue:int = 0x800206A0&lt;/p&gt;

&lt;p&gt;var unsignedValue:Number = (hexValue &amp;amp; 0x7FFFFFFF);  &lt;br&gt;// unsignedValue now equals 132,768&lt;br&gt; &lt;br&gt;var signedValue:Number = unsignedValue;&lt;br&gt; &lt;br&gt;// if the signed flag is set, flip the value&lt;br&gt;if ((hexValue &amp;gt;&amp;gt; 31) == 1) {&lt;br&gt;    signedValue = unsignedValue - 0x80000000;&lt;br&gt;}&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tea</dc:creator><pubDate>Thu, 11 Feb 2010 11:35:33 -0000</pubDate></item><item><title>Re: Converting binary to signed decimal in Actionscript</title><link>http://www.wirelust.com/2009/04/08/converting-binary-to-signed-decimal-in-actionscript/#comment-366898887</link><description>&lt;p&gt;this doesn't work for example for a value like -132768&lt;br&gt;-132768 should become -1696 not 31072&lt;br&gt;shouldn't the line:&lt;br&gt;if ((hexValue &amp;gt;&amp;gt; 15) == 1)&lt;br&gt;be:&lt;br&gt;if (((hexValue &amp;gt;&amp;gt; 15) &amp;amp; 1) == 1)&lt;br&gt;???&lt;br&gt;correct me if I'm wrong...&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Christian</dc:creator><pubDate>Thu, 11 Feb 2010 11:08:22 -0000</pubDate></item><item><title>Re: SQL NOT IN SubQuery + Null</title><link>http://www.wirelust.com/2008/01/04/sql-server-not-in-subquery-null/#comment-366898796</link><description>&lt;p&gt;THANK YOU, THANK YOU, THANK YOU!!! This saved me a whole lot of time!!!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hillary</dc:creator><pubDate>Thu, 07 Jan 2010 17:40:34 -0000</pubDate></item></channel></rss>
