<?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 BeauScott.com</title>
	<atom:link href="http://www.beauscott.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.beauscott.com</link>
	<description>AJAX, Flex and other RIA</description>
	<lastBuildDate>Thu, 11 Aug 2011 20:53:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on AutoComplete.js update 1.2 by Daniella</title>
		<link>http://www.beauscott.com/2008/06/05/autocompletejs-update-12/#comment-59237</link>
		<dc:creator>Daniella</dc:creator>
		<pubDate>Thu, 11 Aug 2011 20:53:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.beauscott.com/2008/06/05/autocompletejs-update-12/#comment-59237</guid>
		<description>This Auto-Complete script is great. Here are two custom features I put in that might be helpful to others:

1- To avoid having an empty drop down box appear when I return an empty set of matches, I return the word &#039;hide&#039; and then I test for this word in the script. On line 481 in version 1.2, you can add an extra line that tests to see if the word &#039;hide&#039; has been returned as the matching text. If it has, the function returns right away instead of displaying the drop down. You should be able to replicate this with returning xml or json instead of text, and you should be able to use any other word aside from hide.
...
/**
	 * Parses the TEXT result, adds options
	 * @param {String} text The text response to parse
	 */
	_parseText: function(text)
	{
		//custom changes to script 
		// don&#039;t display an empty dropdown; just return if the word &#039;hide&#039; is returned by the ajax request
		if(text===&#039;hide&#039;){return;}
		//end changes
		var suggestions = (text&#124;&#124;&quot;&quot;).split(/\n/);
		for(i = 0; i &lt; suggestions.length; i++)
			this._addOption(suggestions[i]);
	},
...

2 - Wanting the behavior where pressing the backspace or delete keys don&#039;t cause the drop down list of suggestions to disappear, I commented that in lines 331 to line 335, in the _suggest function.
It looks like this now:
...
switch(key)
		{
			case Event.KEY_LEFT:
			case Event.KEY_RIGHT:
				return false;
				break;
			case Event.KEY_TAB:
			//case Event.KEY_BACKSPACE:
			//case 46: //Delete
			//	this.cancel();
			//	return false;
			//	break;
			case Event.KEY_RETURN:
				if(this.visible)
...

I hope this is helpful to someone.
Thanks for the script!</description>
		<content:encoded><![CDATA[<p>This Auto-Complete script is great. Here are two custom features I put in that might be helpful to others:</p>
<p>1- To avoid having an empty drop down box appear when I return an empty set of matches, I return the word &#8216;hide&#8217; and then I test for this word in the script. On line 481 in version 1.2, you can add an extra line that tests to see if the word &#8216;hide&#8217; has been returned as the matching text. If it has, the function returns right away instead of displaying the drop down. You should be able to replicate this with returning xml or json instead of text, and you should be able to use any other word aside from hide.<br />
&#8230;<br />
/**<br />
	 * Parses the TEXT result, adds options<br />
	 * @param {String} text The text response to parse<br />
	 */<br />
	_parseText: function(text)<br />
	{<br />
		//custom changes to script<br />
		// don&#8217;t display an empty dropdown; just return if the word &#8216;hide&#8217; is returned by the ajax request<br />
		if(text===&#8217;hide&#8217;){return;}<br />
		//end changes<br />
		var suggestions = (text||&#8221;").split(/\n/);<br />
		for(i = 0; i &lt; suggestions.length; i++)<br />
			this._addOption(suggestions[i]);<br />
	},<br />
&#8230;</p>
<p>2 &#8211; Wanting the behavior where pressing the backspace or delete keys don&#039;t cause the drop down list of suggestions to disappear, I commented that in lines 331 to line 335, in the _suggest function.<br />
It looks like this now:<br />
&#8230;<br />
switch(key)<br />
		{<br />
			case Event.KEY_LEFT:<br />
			case Event.KEY_RIGHT:<br />
				return false;<br />
				break;<br />
			case Event.KEY_TAB:<br />
			//case Event.KEY_BACKSPACE:<br />
			//case 46: //Delete<br />
			//	this.cancel();<br />
			//	return false;<br />
			//	break;<br />
			case Event.KEY_RETURN:<br />
				if(this.visible)<br />
&#8230;</p>
<p>I hope this is helpful to someone.<br />
Thanks for the script!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HelpBalloon.js version 2.0 by jQuery tooltip scripts, 100+ best</title>
		<link>http://www.beauscott.com/2008/03/02/helpballoonjs-version-20/#comment-59033</link>
		<dc:creator>jQuery tooltip scripts, 100+ best</dc:creator>
		<pubDate>Mon, 25 Jul 2011 22:17:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.beauscott.com/2008/03/02/helpballoonjs-version-20/#comment-59033</guid>
		<description>[...] HelpBalloon &#124; Demo [...]</description>
		<content:encoded><![CDATA[<p>[...] HelpBalloon | Demo [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HelpBalloon.js version 2.0 by Ram</title>
		<link>http://www.beauscott.com/2008/03/02/helpballoonjs-version-20/#comment-58993</link>
		<dc:creator>Ram</dc:creator>
		<pubDate>Fri, 22 Jul 2011 10:08:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.beauscott.com/2008/03/02/helpballoonjs-version-20/#comment-58993</guid>
		<description>set the property in Helpballon.js 
e.g.
		this.balloonDimensions[0] = 250;
		this.balloonDimensions[1] = 180;
Here 250 width and 180 height.  this will help you to resize your balloon. Also its better if you use the images of same dimention as mentioned aboue for ballon.</description>
		<content:encoded><![CDATA[<p>set the property in Helpballon.js<br />
e.g.<br />
		this.balloonDimensions[0] = 250;<br />
		this.balloonDimensions[1] = 180;<br />
Here 250 width and 180 height.  this will help you to resize your balloon. Also its better if you use the images of same dimention as mentioned aboue for ballon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HelpBalloon.js version 2.0 by Corbin</title>
		<link>http://www.beauscott.com/2008/03/02/helpballoonjs-version-20/#comment-58929</link>
		<dc:creator>Corbin</dc:creator>
		<pubDate>Wed, 29 Jun 2011 08:29:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.beauscott.com/2008/03/02/helpballoonjs-version-20/#comment-58929</guid>
		<description>I&#039;m trying to assign the tool tip to 3 different images but it can only be applied to one image :/</description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to assign the tool tip to 3 different images but it can only be applied to one image :/</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on You can now IM me via MSN Messenger (no MSN account required) by walid</title>
		<link>http://www.beauscott.com/2007/12/22/you-can-now-im-me-via-msn-messenger-no-msn-account-required/#comment-58903</link>
		<dc:creator>walid</dc:creator>
		<pubDate>Wed, 22 Jun 2011 10:20:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.beauscott.com/2007/12/22/you-can-now-im-me-via-msn-messenger-no-msn-account-required/#comment-58903</guid>
		<description>cv</description>
		<content:encoded><![CDATA[<p>cv</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HelpBalloon.js version 2.0 by msprod</title>
		<link>http://www.beauscott.com/2008/03/02/helpballoonjs-version-20/#comment-58740</link>
		<dc:creator>msprod</dc:creator>
		<pubDate>Tue, 17 May 2011 21:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.beauscott.com/2008/03/02/helpballoonjs-version-20/#comment-58740</guid>
		<description>hello, i&#039;m french
i have probleme with php and HelpBalloon :

code :

&lt;code&gt;
&lt;?php
$code = &lt;&lt;&lt;CODE
 
	var hb3 = new HelpBalloon({
		title:&#039;&#039;,
		content: &#039; &#039;
			+ &#039;Le:&#039;
	});


CODE;
?&gt;&lt;/code&gt;

result :&lt;code&gt;&lt;? echo Array [&quot;title&quot;];&lt;/code&gt;

any want help me please ?</description>
		<content:encoded><![CDATA[<p>hello, i&#8217;m french<br />
i have probleme with php and HelpBalloon :</p>
<p>code :</p>
<p><code><br />
&lt;?php<br />
$code = &lt;&lt;&lt;CODE</p>
<p>	var hb3 = new HelpBalloon({<br />
		title:'',<br />
		content: ' '<br />
			+ 'Le:'<br />
	});</p>
<p>CODE;<br />
?&gt;</code></p>
<p>result :<code>&lt;? echo Array [&quot;title&quot;];</code></p>
<p>any want help me please ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HelpBalloon.js version 2.0 by msprod</title>
		<link>http://www.beauscott.com/2008/03/02/helpballoonjs-version-20/#comment-58739</link>
		<dc:creator>msprod</dc:creator>
		<pubDate>Tue, 17 May 2011 21:30:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.beauscott.com/2008/03/02/helpballoonjs-version-20/#comment-58739</guid>
		<description>hello, i&#039;m french
i have probleme with php and HelpBalloon :

code :


&lt;?php
$code = &lt;&lt;&lt;CODE
 
	var hb3 = new HelpBalloon({
		title:&#039;&#039;,
		content: &#039; &#039;
			+ &#039;Le:&#039;
	});


CODE;
?&gt;

result :&lt;? echo Array [&quot;title&quot;];

any want help me please ? 

verry Thanks to all</description>
		<content:encoded><![CDATA[<p>hello, i&#8217;m french<br />
i have probleme with php and HelpBalloon :</p>
<p>code :</p>
<p>&lt;?php<br />
$code = &lt;&lt;&lt;CODE</p>
<p>	var hb3 = new HelpBalloon({<br />
		title:&#8221;,<br />
		content: &#8216; &#8216;<br />
			+ &#8216;Le:&#8217;<br />
	});</p>
<p>CODE;<br />
?&gt;</p>
<p>result :&lt;? echo Array [&quot;title&quot;];</p>
<p>any want help me please ? </p>
<p>verry Thanks to all</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Message Me by Kevin Hoffman</title>
		<link>http://www.beauscott.com/message-me/#comment-58680</link>
		<dc:creator>Kevin Hoffman</dc:creator>
		<pubDate>Sat, 30 Apr 2011 03:31:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.beauscott.com/message-me/#comment-58680</guid>
		<description>Hi Beau,
Am really liking the popup code but have run into a roadblock.  I have implemented an image map with the popups appearing where they should be, but I would like to display unique html within the popup for each id.  I&#039;m trying to create something similar to a mapquest popup.  Is there a way to make each area id attribute an individual piece of html for each?  Thanks in advance.  You can see my progress at http://liquidlifestyles.wsiefusion.net/test</description>
		<content:encoded><![CDATA[<p>Hi Beau,<br />
Am really liking the popup code but have run into a roadblock.  I have implemented an image map with the popups appearing where they should be, but I would like to display unique html within the popup for each id.  I&#8217;m trying to create something similar to a mapquest popup.  Is there a way to make each area id attribute an individual piece of html for each?  Thanks in advance.  You can see my progress at <a href="http://liquidlifestyles.wsiefusion.net/test" rel="nofollow">http://liquidlifestyles.wsiefusion.net/test</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HelpBalloon.js version 2.0 by koçluk</title>
		<link>http://www.beauscott.com/2008/03/02/helpballoonjs-version-20/#comment-58007</link>
		<dc:creator>koçluk</dc:creator>
		<pubDate>Sun, 10 Apr 2011 15:06:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.beauscott.com/2008/03/02/helpballoonjs-version-20/#comment-58007</guid>
		<description>thank you very much for this flexible and well-documented tooltip!</description>
		<content:encoded><![CDATA[<p>thank you very much for this flexible and well-documented tooltip!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on You can now IM me via MSN Messenger (no MSN account required) by srivani</title>
		<link>http://www.beauscott.com/2007/12/22/you-can-now-im-me-via-msn-messenger-no-msn-account-required/#comment-57603</link>
		<dc:creator>srivani</dc:creator>
		<pubDate>Thu, 31 Mar 2011 14:15:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.beauscott.com/2007/12/22/you-can-now-im-me-via-msn-messenger-no-msn-account-required/#comment-57603</guid>
		<description>In flex,  i need to change the combobox to label when its in edit mode and vice versa in save mode. i can have one button for edit &amp; save. can u please post me rep as soon as poosible. i have the dead line by 2marow mrng. thank u .</description>
		<content:encoded><![CDATA[<p>In flex,  i need to change the combobox to label when its in edit mode and vice versa in save mode. i can have one button for edit &amp; save. can u please post me rep as soon as poosible. i have the dead line by 2marow mrng. thank u .</p>
]]></content:encoded>
	</item>
</channel>
</rss>

