<?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"
	>
<channel>
	<title>Comments for The Saj - S.A.S.S.I.E.</title>
	<atom:link href="http://thesaj.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://thesaj.wordpress.com</link>
	<description>Simple And Stupid Software Implementation Examples</description>
	<pubDate>Fri, 04 Jul 2008 00:01:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
		<item>
		<title>Comment on The Nightmare that is &#8220;_blank&#8221;: Part II (resolved???) by FlexMerge &#187; Opening External Links from AS3</title>
		<link>http://thesaj.wordpress.com/2008/02/12/the-nightmare-that-is-_blank-part-ii-help/#comment-230</link>
		<dc:creator>FlexMerge &#187; Opening External Links from AS3</dc:creator>
		<pubDate>Mon, 30 Jun 2008 17:15:50 +0000</pubDate>
		<guid isPermaLink="false">http://thesaj.wordpress.com/?p=23#comment-230</guid>
		<description>[...] down to it, this is the guy that had the solution: &#8220;Jason the Saj&#8221;.  Blog page is here. [...]</description>
		<content:encoded><![CDATA[<p>[...] down to it, this is the guy that had the solution: &#8220;Jason the Saj&#8221;.  Blog page is here. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ideas on passwords and security by Christopher Keeler</title>
		<link>http://thesaj.wordpress.com/2008/06/27/ideas-on-passwords-and-security/#comment-224</link>
		<dc:creator>Christopher Keeler</dc:creator>
		<pubDate>Fri, 27 Jun 2008 13:26:44 +0000</pubDate>
		<guid isPermaLink="false">http://thesaj.wordpress.com/?p=35#comment-224</guid>
		<description>Cool idea Jason.  I never thought about it like this, but I like it.

-Chris</description>
		<content:encoded><![CDATA[<p>Cool idea Jason.  I never thought about it like this, but I like it.</p>
<p>-Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Jason the Saj by Jonah</title>
		<link>http://thesaj.wordpress.com/about/#comment-215</link>
		<dc:creator>Jonah</dc:creator>
		<pubDate>Tue, 03 Jun 2008 23:54:25 +0000</pubDate>
		<guid isPermaLink="false">#comment-215</guid>
		<description>Hello Jason
My name is Jonah Huggins, and I am a programmer trying to figure out a simple syntax problem that I am having with an AIR app that I am writing.

So here is what I am trying to do…

I am trying to send the text that is stored in a variable to my SQLite db.  I have no idea what the syntax is but I know that it is simple…

Here is a bit of my code where the problem occurs.

private function postComment():void {
			
			var commentVAR:String = commentText.text;
			//Alert.show(commentVAR);
			
			var q:SQLStatement = new SQLStatement();
			q.text = "UPDATE data SET comment=commentVAR WHERE prim = 1";
			q.sqlConnection = conn;
			q.addEventListener( SQLErrorEvent.ERROR, queryError );
			q.execute();
			
			//Alert.show(q.text);
		}

As you can see I am trying to update a field by sending it the value of the variable "commentVAR"…  We have tried countless syntaxes and researched for hours with no luck or example of what the syntax is for doing this simple thing, we have even tried just updating with commentText.text but "commentText.text" is what gets stored…  

Ps. Everything else works great, but when we try to get the variable's data stored in the db it just stores "commentVAR" instead.

If anyone could help me out on this it sure would be appreciated.

Thank you so much :

Jonah Huggins</description>
		<content:encoded><![CDATA[<p>Hello Jason<br />
My name is Jonah Huggins, and I am a programmer trying to figure out a simple syntax problem that I am having with an AIR app that I am writing.</p>
<p>So here is what I am trying to do…</p>
<p>I am trying to send the text that is stored in a variable to my SQLite db.  I have no idea what the syntax is but I know that it is simple…</p>
<p>Here is a bit of my code where the problem occurs.</p>
<p>private function postComment():void {</p>
<p>			var commentVAR:String = commentText.text;<br />
			//Alert.show(commentVAR);</p>
<p>			var q:SQLStatement = new SQLStatement();<br />
			q.text = &#8220;UPDATE data SET comment=commentVAR WHERE prim = 1&#8243;;<br />
			q.sqlConnection = conn;<br />
			q.addEventListener( SQLErrorEvent.ERROR, queryError );<br />
			q.execute();</p>
<p>			//Alert.show(q.text);<br />
		}</p>
<p>As you can see I am trying to update a field by sending it the value of the variable &#8220;commentVAR&#8221;…  We have tried countless syntaxes and researched for hours with no luck or example of what the syntax is for doing this simple thing, we have even tried just updating with commentText.text but &#8220;commentText.text&#8221; is what gets stored…  </p>
<p>Ps. Everything else works great, but when we try to get the variable&#8217;s data stored in the db it just stores &#8220;commentVAR&#8221; instead.</p>
<p>If anyone could help me out on this it sure would be appreciated.</p>
<p>Thank you so much :</p>
<p>Jonah Huggins</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Nightmare that is &#8220;_blank&#8221;: Part II (resolved???) by Jonah</title>
		<link>http://thesaj.wordpress.com/2008/02/12/the-nightmare-that-is-_blank-part-ii-help/#comment-214</link>
		<dc:creator>Jonah</dc:creator>
		<pubDate>Tue, 03 Jun 2008 23:52:44 +0000</pubDate>
		<guid isPermaLink="false">http://thesaj.wordpress.com/?p=23#comment-214</guid>
		<description>Hello 
My name is Jonah Huggins, and I am a programmer trying to figure out a simple syntax problem that I am having with an AIR app that I am writing.

So here is what I am trying to do…

I am trying to send the text that is stored in a variable to my SQLite db.  I have no idea what the syntax is but I know that it is simple…

Here is a bit of my code where the problem occurs.

private function postComment():void {
			
			var commentVAR:String = commentText.text;
			//Alert.show(commentVAR);
			
			var q:SQLStatement = new SQLStatement();
			q.text = "UPDATE data SET comment=commentVAR WHERE prim = 1";
			q.sqlConnection = conn;
			q.addEventListener( SQLErrorEvent.ERROR, queryError );
			q.execute();
			
			//Alert.show(q.text);
		}

As you can see I am trying to update a field by sending it the value of the variable "commentVAR"…  We have tried countless syntaxes and researched for hours with no luck or example of what the syntax is for doing this simple thing, we have even tried just updating with commentText.text but "commentText.text" is what gets stored…  

Ps. Everything else works great, but when we try to get the variable's data stored in the db it just stores "commentVAR" instead.

If anyone could help me out on this it sure would be appreciated.

Thank you so much :

Jonah Huggins</description>
		<content:encoded><![CDATA[<p>Hello<br />
My name is Jonah Huggins, and I am a programmer trying to figure out a simple syntax problem that I am having with an AIR app that I am writing.</p>
<p>So here is what I am trying to do…</p>
<p>I am trying to send the text that is stored in a variable to my SQLite db.  I have no idea what the syntax is but I know that it is simple…</p>
<p>Here is a bit of my code where the problem occurs.</p>
<p>private function postComment():void {</p>
<p>			var commentVAR:String = commentText.text;<br />
			//Alert.show(commentVAR);</p>
<p>			var q:SQLStatement = new SQLStatement();<br />
			q.text = &#8220;UPDATE data SET comment=commentVAR WHERE prim = 1&#8243;;<br />
			q.sqlConnection = conn;<br />
			q.addEventListener( SQLErrorEvent.ERROR, queryError );<br />
			q.execute();</p>
<p>			//Alert.show(q.text);<br />
		}</p>
<p>As you can see I am trying to update a field by sending it the value of the variable &#8220;commentVAR&#8221;…  We have tried countless syntaxes and researched for hours with no luck or example of what the syntax is for doing this simple thing, we have even tried just updating with commentText.text but &#8220;commentText.text&#8221; is what gets stored…  </p>
<p>Ps. Everything else works great, but when we try to get the variable&#8217;s data stored in the db it just stores &#8220;commentVAR&#8221; instead.</p>
<p>If anyone could help me out on this it sure would be appreciated.</p>
<p>Thank you so much :</p>
<p>Jonah Huggins</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Nightmare that is &#8220;_blank&#8221;: Part II (resolved???) by Willow Wright</title>
		<link>http://thesaj.wordpress.com/2008/02/12/the-nightmare-that-is-_blank-part-ii-help/#comment-213</link>
		<dc:creator>Willow Wright</dc:creator>
		<pubDate>Tue, 03 Jun 2008 18:11:02 +0000</pubDate>
		<guid isPermaLink="false">http://thesaj.wordpress.com/?p=23#comment-213</guid>
		<description>Well, all of this is fine.....I really need to use wmode = "transparent" and that brings up the pop-ups blocked. And I'm not even asking the browser to open a new window.....not even asking for a target. No javascript to open anything new. And STILL I get the pop-ups blocked. 

I am about to junk AS3, and go back to AS2, in which I have NO problems of this sort. 

So far, I've not been able to use one AS3 script in Flash on my site, and I've had the new CS3 software for a WHILE. 

Does anyone have a solution for my issue?  Thanks, WCW</description>
		<content:encoded><![CDATA[<p>Well, all of this is fine&#8230;..I really need to use wmode = &#8220;transparent&#8221; and that brings up the pop-ups blocked. And I&#8217;m not even asking the browser to open a new window&#8230;..not even asking for a target. No javascript to open anything new. And STILL I get the pop-ups blocked. </p>
<p>I am about to junk AS3, and go back to AS2, in which I have NO problems of this sort. </p>
<p>So far, I&#8217;ve not been able to use one AS3 script in Flash on my site, and I&#8217;ve had the new CS3 software for a WHILE. </p>
<p>Does anyone have a solution for my issue?  Thanks, WCW</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flex Builder Tips &#38; Tricks by alex</title>
		<link>http://thesaj.wordpress.com/2007/11/06/flex-builder-tips-tricks/#comment-212</link>
		<dc:creator>alex</dc:creator>
		<pubDate>Mon, 02 Jun 2008 08:22:23 +0000</pubDate>
		<guid isPermaLink="false">http://thesaj.wordpress.com/2007/11/06/flex-builder-tips-tricks/#comment-212</guid>
		<description>Ctrl + Shift + R will open a very cool search over files names box.</description>
		<content:encoded><![CDATA[<p>Ctrl + Shift + R will open a very cool search over files names box.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Nightmare that is &#8220;_blank&#8221;: Part II (resolved???) by UPDATE on &#8220;_blank&#8221; / navigateToURL() issue &#171; The Saj - S.A.S.S.I.E.</title>
		<link>http://thesaj.wordpress.com/2008/02/12/the-nightmare-that-is-_blank-part-ii-help/#comment-211</link>
		<dc:creator>UPDATE on &#8220;_blank&#8221; / navigateToURL() issue &#171; The Saj - S.A.S.S.I.E.</dc:creator>
		<pubDate>Fri, 30 May 2008 21:04:02 +0000</pubDate>
		<guid isPermaLink="false">http://thesaj.wordpress.com/?p=23#comment-211</guid>
		<description>[...] UPDATE on &#8220;_blank&#8221; / navigateToURL()&#160;issue   Published May 14, 2008   Bug , Flash , Flex Tags: fix, navigateToURL(), nightmare, solution, _blank      Well, this week provided a fair amount of activity on the bug. The is technically a Flash Player bug (Reference #225434). [For those looking for an interim fix, see my blog post here.] [...]</description>
		<content:encoded><![CDATA[<p>[...] UPDATE on &#8220;_blank&#8221; / navigateToURL()&nbsp;issue   Published May 14, 2008   Bug , Flash , Flex Tags: fix, navigateToURL(), nightmare, solution, _blank      Well, this week provided a fair amount of activity on the bug. The is technically a Flash Player bug (Reference #225434). [For those looking for an interim fix, see my blog post here.] [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UPDATE on &#8220;_blank&#8221; / navigateToURL() issue by thesaj</title>
		<link>http://thesaj.wordpress.com/2008/05/14/update-on-_blank-navigatetourl-issue/#comment-201</link>
		<dc:creator>thesaj</dc:creator>
		<pubDate>Thu, 15 May 2008 02:05:39 +0000</pubDate>
		<guid isPermaLink="false">http://thesaj.wordpress.com/?p=32#comment-201</guid>
		<description>I just wish they had accomplished this sooner, like before I spent weeks compensating for this issue.

*lol*</description>
		<content:encoded><![CDATA[<p>I just wish they had accomplished this sooner, like before I spent weeks compensating for this issue.</p>
<p>*lol*</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UPDATE on &#8220;_blank&#8221; / navigateToURL() issue by Jim</title>
		<link>http://thesaj.wordpress.com/2008/05/14/update-on-_blank-navigatetourl-issue/#comment-200</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Wed, 14 May 2008 20:34:32 +0000</pubDate>
		<guid isPermaLink="false">http://thesaj.wordpress.com/?p=32#comment-200</guid>
		<description>Well...

At least they're moving in the right direction! 

Seriously, I have a lot of respect for the Adobe engineers, as well as the coders who build those nice JavaScript libraries (e.g. script.aculo.us), because they take on the headaches of dealing with all of the horribly annoying browser discrepancies and idiosyncrasies so that the rest of us don't have to!</description>
		<content:encoded><![CDATA[<p>Well&#8230;</p>
<p>At least they&#8217;re moving in the right direction! </p>
<p>Seriously, I have a lot of respect for the Adobe engineers, as well as the coders who build those nice JavaScript libraries (e.g. script.aculo.us), because they take on the headaches of dealing with all of the horribly annoying browser discrepancies and idiosyncrasies so that the rest of us don&#8217;t have to!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to restore lost files in Flex Builder 3&#8230; by Restore deleted file in Flex Builder &#171; ActionScript 3, Flash, Flex Reflections</title>
		<link>http://thesaj.wordpress.com/2008/04/23/how-to-restore-lost-files/#comment-198</link>
		<dc:creator>Restore deleted file in Flex Builder &#171; ActionScript 3, Flash, Flex Reflections</dc:creator>
		<pubDate>Fri, 09 May 2008 15:04:29 +0000</pubDate>
		<guid isPermaLink="false">http://thesaj.wordpress.com/?p=31#comment-198</guid>
		<description>[...] http://thesaj.wordpress.com/2008/04/23/how-to-restore-lost-files/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://thesaj.wordpress.com/2008/04/23/how-to-restore-lost-files/" rel="nofollow">http://thesaj.wordpress.com/2008/04/23/how-to-restore-lost-files/</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
