<?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 List Central Blog</title>
	<atom:link href="http://blog.listcentral.me/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.listcentral.me</link>
	<description>The Progress of List Central</description>
	<lastBuildDate>Thu, 03 Jun 2010 15:14:46 +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 Make Flash sit behind HTML elements by niovi</title>
		<link>http://blog.listcentral.me/2010/04/19/make-flash-sit-behind-html-elements/comment-page-1/#comment-5759</link>
		<dc:creator>niovi</dc:creator>
		<pubDate>Thu, 03 Jun 2010 15:14:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.listcentral.me/?p=553#comment-5759</guid>
		<description>thank you alot!</description>
		<content:encoded><![CDATA[<p>thank you alot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Browser Sandbox by marilyn</title>
		<link>http://blog.listcentral.me/2009/09/24/browser-sandbox/comment-page-1/#comment-5487</link>
		<dc:creator>marilyn</dc:creator>
		<pubDate>Thu, 13 May 2010 18:12:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.listcentral.me/?p=410#comment-5487</guid>
		<description>I&#039;m not sure. I haven&#039;t run IE  8 through the Spoon browser, but I would think it would have the developer tools included? Worth a try anyways.</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure. I haven&#8217;t run IE  8 through the Spoon browser, but I would think it would have the developer tools included? Worth a try anyways.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Browser Sandbox by Alex</title>
		<link>http://blog.listcentral.me/2009/09/24/browser-sandbox/comment-page-1/#comment-5485</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Thu, 13 May 2010 16:01:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.listcentral.me/?p=410#comment-5485</guid>
		<description>It&#039;s realy useful thing!
But what about IE Developer ToolBar?
Is there any way to include/install it with IE packs?</description>
		<content:encoded><![CDATA[<p>It&#8217;s realy useful thing!<br />
But what about IE Developer ToolBar?<br />
Is there any way to include/install it with IE packs?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Maintaining Dynamic Height on a Fx.Slide element with Mootools by xcoder</title>
		<link>http://blog.listcentral.me/2010/01/05/maintaining-dynamic-height-on-a-fx-slide-element-with-mootools/comment-page-1/#comment-4254</link>
		<dc:creator>xcoder</dc:creator>
		<pubDate>Sat, 20 Feb 2010 13:43:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.listcentral.me/?p=475#comment-4254</guid>
		<description>Thanks, you saved me lot of nerves, things around me and hours :)</description>
		<content:encoded><![CDATA[<p>Thanks, you saved me lot of nerves, things around me and hours <img src='http://blog.listcentral.me/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Maintaining Dynamic Height on a Fx.Slide element with Mootools by marilyn</title>
		<link>http://blog.listcentral.me/2010/01/05/maintaining-dynamic-height-on-a-fx-slide-element-with-mootools/comment-page-1/#comment-4148</link>
		<dc:creator>marilyn</dc:creator>
		<pubDate>Mon, 15 Feb 2010 17:20:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.listcentral.me/?p=475#comment-4148</guid>
		<description>I see where the problem is. I had difficulty with the toggle function before the height auto entered the picture. I opted to use slideIn and slideOut with a function I wrote like called doSlider. Here is the relevant code:

function doSlider(e, slider){

    if(e != &quot;&quot;){
        e.stop();
    }

    if(slider.open == true){
        // Close slider if open
        formSlide.slideIn();  
    }else{
        // else, open it
        formSlide.slideOut();
    }
}

function initSlider(){
    var slider = new Fx.Slide(&#039;Slider&#039;, {
            duration: 400,
            onComplete: function(){
                if(this.wrapper.getStyle(&#039;height&#039;) != &quot;0px&quot;){
                    // Prevents it breaking on close
                    this.wrapper.setStyle(&#039;height&#039;, &#039;auto&#039;);
                }
            }
    }).hide();

    return Slider;
}

var slider = initSlider();
$(&#039;sliderButton&#039;).addEvent(&#039;click&#039;, function(e){
        doSlider(e, slider);
});</description>
		<content:encoded><![CDATA[<p>I see where the problem is. I had difficulty with the toggle function before the height auto entered the picture. I opted to use slideIn and slideOut with a function I wrote like called doSlider. Here is the relevant code:</p>
<p>function doSlider(e, slider){</p>
<p>    if(e != &#8220;&#8221;){<br />
        e.stop();<br />
    }</p>
<p>    if(slider.open == true){<br />
        // Close slider if open<br />
        formSlide.slideIn();<br />
    }else{<br />
        // else, open it<br />
        formSlide.slideOut();<br />
    }<br />
}</p>
<p>function initSlider(){<br />
    var slider = new Fx.Slide(&#8216;Slider&#8217;, {<br />
            duration: 400,<br />
            onComplete: function(){<br />
                if(this.wrapper.getStyle(&#8216;height&#8217;) != &#8220;0px&#8221;){<br />
                    // Prevents it breaking on close<br />
                    this.wrapper.setStyle(&#8216;height&#8217;, &#8216;auto&#8217;);<br />
                }<br />
            }<br />
    }).hide();</p>
<p>    return Slider;<br />
}</p>
<p>var slider = initSlider();<br />
$(&#8217;sliderButton&#8217;).addEvent(&#8216;click&#8217;, function(e){<br />
        doSlider(e, slider);<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Maintaining Dynamic Height on a Fx.Slide element with Mootools by winston</title>
		<link>http://blog.listcentral.me/2010/01/05/maintaining-dynamic-height-on-a-fx-slide-element-with-mootools/comment-page-1/#comment-4147</link>
		<dc:creator>winston</dc:creator>
		<pubDate>Mon, 15 Feb 2010 17:08:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.listcentral.me/?p=475#comment-4147</guid>
		<description>err i did try .... height is stuck at auto ... which code segment will reset it back to 0px ?</description>
		<content:encoded><![CDATA[<p>err i did try &#8230;. height is stuck at auto &#8230; which code segment will reset it back to 0px ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Maintaining Dynamic Height on a Fx.Slide element with Mootools by marilyn</title>
		<link>http://blog.listcentral.me/2010/01/05/maintaining-dynamic-height-on-a-fx-slide-element-with-mootools/comment-page-1/#comment-4146</link>
		<dc:creator>marilyn</dc:creator>
		<pubDate>Mon, 15 Feb 2010 16:44:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.listcentral.me/?p=475#comment-4146</guid>
		<description>The height auto doesn&#039;t break the sliders functionality. Subsequent toggles work fine. Try it out.</description>
		<content:encoded><![CDATA[<p>The height auto doesn&#8217;t break the sliders functionality. Subsequent toggles work fine. Try it out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Maintaining Dynamic Height on a Fx.Slide element with Mootools by winston</title>
		<link>http://blog.listcentral.me/2010/01/05/maintaining-dynamic-height-on-a-fx-slide-element-with-mootools/comment-page-1/#comment-4145</link>
		<dc:creator>winston</dc:creator>
		<pubDate>Mon, 15 Feb 2010 16:33:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.listcentral.me/?p=475#comment-4145</guid>
		<description>thanks,

but i think that the height will stay stuck at auto - thus preventing any subsequent toggles from working.</description>
		<content:encoded><![CDATA[<p>thanks,</p>
<p>but i think that the height will stay stuck at auto &#8211; thus preventing any subsequent toggles from working.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on charCode is meaningless by marilyn</title>
		<link>http://blog.listcentral.me/2009/12/08/charcode-is-meaningless/comment-page-1/#comment-4074</link>
		<dc:creator>marilyn</dc:creator>
		<pubDate>Thu, 11 Feb 2010 17:56:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.listcentral.me/?p=507#comment-4074</guid>
		<description>Hi Charu.  I suspect that the warning is coming from elsewhere on your site, as this function doesn&#039;t give the error when I use it. Look in your code for charCode, not charCodeAt for the offending warning. Good luck!</description>
		<content:encoded><![CDATA[<p>Hi Charu.  I suspect that the warning is coming from elsewhere on your site, as this function doesn&#8217;t give the error when I use it. Look in your code for charCode, not charCodeAt for the offending warning. Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on charCode is meaningless by charu verma</title>
		<link>http://blog.listcentral.me/2009/12/08/charcode-is-meaningless/comment-page-1/#comment-4071</link>
		<dc:creator>charu verma</dc:creator>
		<pubDate>Thu, 11 Feb 2010 14:13:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.listcentral.me/?p=507#comment-4071</guid>
		<description>first of all thanks a lot for replying. and this is encode64 function being used to encode a string in URL. right now this site is under development, so havent been launched yet.  so how shud i fix the lines u mentionaed? coz this code is successfully generating 64 bit encoded string. but at the same time charcode warning!, but i am not sure its coz of this function!</description>
		<content:encoded><![CDATA[<p>first of all thanks a lot for replying. and this is encode64 function being used to encode a string in URL. right now this site is under development, so havent been launched yet.  so how shud i fix the lines u mentionaed? coz this code is successfully generating 64 bit encoded string. but at the same time charcode warning!, but i am not sure its coz of this function!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
