<?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 on: About</title>
	<atom:link href="http://www.beauscott.com/about/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.beauscott.com</link>
	<description>AJAX, Flex and other RIA</description>
	<pubDate>Wed, 08 Sep 2010 20:04:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Jeffrey Ferris</title>
		<link>http://www.beauscott.com/about/#comment-46881</link>
		<dc:creator>Jeffrey Ferris</dc:creator>
		<pubDate>Sat, 21 Nov 2009 02:40:36 +0000</pubDate>
		<guid isPermaLink="false">#comment-46881</guid>
		<description>Greetings All,

Regarding the post by Guido on Nov 23, 2006 about adding a zIndex property to deal with ensuring topmost order, it helped me immensely.  I use a java menu within the content of my page to help users navigate all the content, and the HelpBalloon worked great in IE, but in FF and Chrome the HelpBalloon was hidden behind the screens java menu.  The menu was "QuickMenu" by OpenCube.

So using the prior post I modified HelpBalloon.js with the following, and now HelpBalloon lays nicely ON TOP of any existing java elements:

_draw: function()
	{
		Element.setStyle(
			this.container, 
			Object.extend(this.options.balloonStyle, {
				'position': 	'absolute',
				'display': 		'none',
				'zIndex': 300
			})
		);</description>
		<content:encoded><![CDATA[<p>Greetings All,</p>
<p>Regarding the post by Guido on Nov 23, 2006 about adding a zIndex property to deal with ensuring topmost order, it helped me immensely.  I use a java menu within the content of my page to help users navigate all the content, and the HelpBalloon worked great in IE, but in FF and Chrome the HelpBalloon was hidden behind the screens java menu.  The menu was &#8220;QuickMenu&#8221; by OpenCube.</p>
<p>So using the prior post I modified HelpBalloon.js with the following, and now HelpBalloon lays nicely ON TOP of any existing java elements:</p>
<p>_draw: function()<br />
	{<br />
		Element.setStyle(<br />
			this.container,<br />
			Object.extend(this.options.balloonStyle, {<br />
				&#8216;position&#8217;: 	&#8216;absolute&#8217;,<br />
				&#8216;display&#8217;: 		&#8216;none&#8217;,<br />
				&#8216;zIndex&#8217;: 300<br />
			})<br />
		);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JD</title>
		<link>http://www.beauscott.com/about/#comment-34755</link>
		<dc:creator>JD</dc:creator>
		<pubDate>Thu, 11 Jun 2009 03:55:58 +0000</pubDate>
		<guid isPermaLink="false">#comment-34755</guid>
		<description>Hi Beau - just added some functionality to the Ajax Stars script so that you can select half-stars.  Did it really quickly so I'm sure it could be optimised further, but if you're interested in seeing the code send me an email and I'll flick it through.</description>
		<content:encoded><![CDATA[<p>Hi Beau - just added some functionality to the Ajax Stars script so that you can select half-stars.  Did it really quickly so I&#8217;m sure it could be optimised further, but if you&#8217;re interested in seeing the code send me an email and I&#8217;ll flick it through.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: namburi murali</title>
		<link>http://www.beauscott.com/about/#comment-21490</link>
		<dc:creator>namburi murali</dc:creator>
		<pubDate>Thu, 08 Jan 2009 09:37:05 +0000</pubDate>
		<guid isPermaLink="false">#comment-21490</guid>
		<description>We can resize the balloon using photo editor like microsoft office picture manager. it is very good stuff and api to modify.

Thank you..</description>
		<content:encoded><![CDATA[<p>We can resize the balloon using photo editor like microsoft office picture manager. it is very good stuff and api to modify.</p>
<p>Thank you..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick Flanigan</title>
		<link>http://www.beauscott.com/about/#comment-6656</link>
		<dc:creator>Patrick Flanigan</dc:creator>
		<pubDate>Wed, 30 Jul 2008 22:15:41 +0000</pubDate>
		<guid isPermaLink="false">#comment-6656</guid>
		<description>Hello,

I am using version 2 of the help balloons.  One of the behaviors I would like is for the help balloon to stay up whenever the cursor is over the anchoring icon, as well as over the help balloon.  I've set an autoTimeOut, and that is working well when the cursor is in the balloon.  But the time out is not being re-queued when it is over the anchoring icon, but not in the balloon.  Some of our users are confused by this behavior.

Anything you can suggest to help would  be appreciated.

Thanks</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I am using version 2 of the help balloons.  One of the behaviors I would like is for the help balloon to stay up whenever the cursor is over the anchoring icon, as well as over the help balloon.  I&#8217;ve set an autoTimeOut, and that is working well when the cursor is in the balloon.  But the time out is not being re-queued when it is over the anchoring icon, but not in the balloon.  Some of our users are confused by this behavior.</p>
<p>Anything you can suggest to help would  be appreciated.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://www.beauscott.com/about/#comment-6307</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Wed, 09 Jul 2008 08:35:10 +0000</pubDate>
		<guid isPermaLink="false">#comment-6307</guid>
		<description>hello

how can i resize that balloon?

i've already tried with

		
			var hb5 = new HelpBalloon({ 
				title: 'Item Details', 
				content: 'This balloon is cool!',
				useEvent: ['mouseover'],
				balloonDimensions: [500,500]
			});
		 

BUT it still doesn't work!!

help please?</description>
		<content:encoded><![CDATA[<p>hello</p>
<p>how can i resize that balloon?</p>
<p>i&#8217;ve already tried with</p>
<p>			var hb5 = new HelpBalloon({<br />
				title: &#8216;Item Details&#8217;,<br />
				content: &#8216;This balloon is cool!&#8217;,<br />
				useEvent: ['mouseover'],<br />
				balloonDimensions: [500,500]<br />
			});</p>
<p>BUT it still doesn&#8217;t work!!</p>
<p>help please?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike McGrath</title>
		<link>http://www.beauscott.com/about/#comment-4965</link>
		<dc:creator>Mike McGrath</dc:creator>
		<pubDate>Thu, 28 Feb 2008 23:14:46 +0000</pubDate>
		<guid isPermaLink="false">#comment-4965</guid>
		<description>I too would like to include this in some work I'm doing for the Fedora Project but I need to know what License it is released under.  Any idea when we'll have that?</description>
		<content:encoded><![CDATA[<p>I too would like to include this in some work I&#8217;m doing for the Fedora Project but I need to know what License it is released under.  Any idea when we&#8217;ll have that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://www.beauscott.com/about/#comment-3386</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Fri, 30 Nov 2007 09:53:21 +0000</pubDate>
		<guid isPermaLink="false">#comment-3386</guid>
		<description>Hi,
sorry if I post here but I did not find a better place.
Can you please post the source for this example ttp://www.beauscott.com/examples/FlexSessionExamples/ ?

Thank you</description>
		<content:encoded><![CDATA[<p>Hi,<br />
sorry if I post here but I did not find a better place.<br />
Can you please post the source for this example ttp://www.beauscott.com/examples/FlexSessionExamples/ ?</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Beau</title>
		<link>http://www.beauscott.com/about/#comment-1170</link>
		<dc:creator>Beau</dc:creator>
		<pubDate>Mon, 20 Aug 2007 20:00:40 +0000</pubDate>
		<guid isPermaLink="false">#comment-1170</guid>
		<description>I really need to get on the ball and add licenses to each of the widgets. I'm probably going to use LGPL for the most part, unless there's some major reason anyone would need MIT instead.

Beau</description>
		<content:encoded><![CDATA[<p>I really need to get on the ball and add licenses to each of the widgets. I&#8217;m probably going to use LGPL for the most part, unless there&#8217;s some major reason anyone would need MIT instead.</p>
<p>Beau</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob Sendelbach</title>
		<link>http://www.beauscott.com/about/#comment-787</link>
		<dc:creator>Bob Sendelbach</dc:creator>
		<pubDate>Wed, 18 Jul 2007 16:01:21 +0000</pubDate>
		<guid isPermaLink="false">#comment-787</guid>
		<description>Beau,
Love the stuff you've got here - I need to use atleast 2 'widgets' in a commercial project.  What's your license?

-Bob</description>
		<content:encoded><![CDATA[<p>Beau,<br />
Love the stuff you&#8217;ve got here - I need to use atleast 2 &#8216;widgets&#8217; in a commercial project.  What&#8217;s your license?</p>
<p>-Bob</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil Klassen</title>
		<link>http://www.beauscott.com/about/#comment-779</link>
		<dc:creator>Phil Klassen</dc:creator>
		<pubDate>Tue, 17 Jul 2007 22:29:12 +0000</pubDate>
		<guid isPermaLink="false">#comment-779</guid>
		<description>I too am inquiring about licensing. I would like to use the help balloons in a commercial website. What do I need to know regarding the copyright etc.</description>
		<content:encoded><![CDATA[<p>I too am inquiring about licensing. I would like to use the help balloons in a commercial website. What do I need to know regarding the copyright etc.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
