<?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 on: Setting the horizontal divider cursor on an HDividedBox container in Flex</title>
	<atom:link href="http://blog.flexexamples.com/2008/10/09/setting-the-horizontal-divider-cursor-on-an-hdividedbox-container-in-flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2008/10/09/setting-the-horizontal-divider-cursor-on-an-hdividedbox-container-in-flex/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Sun, 12 Feb 2012 19:26:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: peterd</title>
		<link>http://blog.flexexamples.com/2008/10/09/setting-the-horizontal-divider-cursor-on-an-hdividedbox-container-in-flex/comment-page-1/#comment-3889</link>
		<dc:creator>peterd</dc:creator>
		<pubDate>Tue, 21 Oct 2008 14:07:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/09/setting-the-horizontal-divider-cursor-on-an-hdividedbox-container-in-flex/#comment-3889</guid>
		<description>Yangyan,

Check out &lt;a href=&quot;http://blog.flexexamples.com/2007/09/10/changing-the-cursor-in-a-flex-application-using-the-cursormanager-class/&quot; rel=&quot;nofollow&quot;&gt;&lt;u&gt;&quot;Changing the cursor in a Flex application using the CursorManager class&quot;&lt;/u&gt;&lt;/a&gt;.

Peter</description>
		<content:encoded><![CDATA[<p>Yangyan,</p>
<p>Check out <a href="http://blog.flexexamples.com/2007/09/10/changing-the-cursor-in-a-flex-application-using-the-cursormanager-class/" rel="nofollow"><u>&#8220;Changing the cursor in a Flex application using the CursorManager class&#8221;</u></a>.</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yangyan</title>
		<link>http://blog.flexexamples.com/2008/10/09/setting-the-horizontal-divider-cursor-on-an-hdividedbox-container-in-flex/comment-page-1/#comment-3890</link>
		<dc:creator>Yangyan</dc:creator>
		<pubDate>Tue, 21 Oct 2008 11:48:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/09/setting-the-horizontal-divider-cursor-on-an-hdividedbox-container-in-flex/#comment-3890</guid>
		<description>Hi That I want change the default Cursor style in the canvas ,And I need your help
:) Thank you~~!</description>
		<content:encoded><![CDATA[<p>Hi That I want change the default Cursor style in the canvas ,And I need your help<br />
:) Thank you~~!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: guide</title>
		<link>http://blog.flexexamples.com/2008/10/09/setting-the-horizontal-divider-cursor-on-an-hdividedbox-container-in-flex/comment-page-1/#comment-3891</link>
		<dc:creator>guide</dc:creator>
		<pubDate>Sun, 12 Oct 2008 04:20:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/09/setting-the-horizontal-divider-cursor-on-an-hdividedbox-container-in-flex/#comment-3891</guid>
		<description>I actually have the exact same problem, I thought I could place a setInterval with a sizecheck to auto-resize if the old height is different from actual height. But it seems when I add a second tab it doesn&#039;t work.</description>
		<content:encoded><![CDATA[<p>I actually have the exact same problem, I thought I could place a setInterval with a sizecheck to auto-resize if the old height is different from actual height. But it seems when I add a second tab it doesn&#8217;t work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saul</title>
		<link>http://blog.flexexamples.com/2008/10/09/setting-the-horizontal-divider-cursor-on-an-hdividedbox-container-in-flex/comment-page-1/#comment-3895</link>
		<dc:creator>Saul</dc:creator>
		<pubDate>Fri, 10 Oct 2008 11:08:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/09/setting-the-horizontal-divider-cursor-on-an-hdividedbox-container-in-flex/#comment-3895</guid>
		<description>Just so you know:

The problem i described here seems to be a bug with &lt;a href=&quot;http://www.getfirefox.com/&quot; rel=&quot;nofollow&quot;&gt;Firefox 3.0.3&lt;/a&gt;.

Solution is to add margin-top:1px;
&lt;pre class=&quot;code&quot;&gt;
html, body {
    margin:0px;
    margin-top:1px;
    padding:0px;
    overflow:hidden;
    height:100%;
}
&lt;/pre&gt;

found @
http://www.ultrashock.com/forums/flash-professional/onresize-and-new-tab-in-firefox-89217.html

And, Yes It Works!</description>
		<content:encoded><![CDATA[<p>Just so you know:</p>
<p>The problem i described here seems to be a bug with <a href="http://www.getfirefox.com/" rel="nofollow">Firefox 3.0.3</a>.</p>
<p>Solution is to add margin-top:1px;</p>
<pre class="code">
html, body {
    margin:0px;
    margin-top:1px;
    padding:0px;
    overflow:hidden;
    height:100%;
}
</pre>
<p>found @<br />
<a href="http://www.ultrashock.com/forums/flash-professional/onresize-and-new-tab-in-firefox-89217.html" rel="nofollow">http://www.ultrashock.com/forums/flash-professional/onresize-and-new-tab-in-firefox-89217.html</a></p>
<p>And, Yes It Works!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saul</title>
		<link>http://blog.flexexamples.com/2008/10/09/setting-the-horizontal-divider-cursor-on-an-hdividedbox-container-in-flex/comment-page-1/#comment-3894</link>
		<dc:creator>Saul</dc:creator>
		<pubDate>Fri, 10 Oct 2008 10:32:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/09/setting-the-horizontal-divider-cursor-on-an-hdividedbox-container-in-flex/#comment-3894</guid>
		<description>Fixed It! I should really keep my learning process private but tiredness kills!

Invaluable blog BTW.</description>
		<content:encoded><![CDATA[<p>Fixed It! I should really keep my learning process private but tiredness kills!</p>
<p>Invaluable blog BTW.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saul</title>
		<link>http://blog.flexexamples.com/2008/10/09/setting-the-horizontal-divider-cursor-on-an-hdividedbox-container-in-flex/comment-page-1/#comment-3893</link>
		<dc:creator>Saul</dc:creator>
		<pubDate>Fri, 10 Oct 2008 09:06:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/09/setting-the-horizontal-divider-cursor-on-an-hdividedbox-container-in-flex/#comment-3893</guid>
		<description>Hmm, i just went to Flex style explorer and it replicates the same behaviour as i described above. WTF is going on!</description>
		<content:encoded><![CDATA[<p>Hmm, i just went to Flex style explorer and it replicates the same behaviour as i described above. WTF is going on!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saul</title>
		<link>http://blog.flexexamples.com/2008/10/09/setting-the-horizontal-divider-cursor-on-an-hdividedbox-container-in-flex/comment-page-1/#comment-3892</link>
		<dc:creator>Saul</dc:creator>
		<pubDate>Fri, 10 Oct 2008 09:02:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/09/setting-the-horizontal-divider-cursor-on-an-hdividedbox-container-in-flex/#comment-3892</guid>
		<description>Help! Peter pls help me. I&#039;m a little new to flex and it is kicking the syit out of me =[

I have a flex app that contains height 100% values for all containers. Thats how i want it, like flashs ability to resize dynamically through the stage methods, hmm can i implement these straightforwardly in flex, is that necessary?

The problem is when i open a new browser tab window (i test in firefox), having 2 tabs open. I find that when i switch from the second new tab to the first tab, my menu, which is positioned at the bottom of the screen, and application, does not resize in the original tab which has dropped down to display the new tab. In other words the application does not shrink to fit its new dimensions in the first tab. I don&#039;t like this behaviour. I&#039;ve searched google but i keep coming up short and i&#039;ve spent the whole night working on embedding fonts and fades and i&#039;m so tired and under pressure my brain is like peanut butter right now. Everything worked ok before but i made some changes and cannot retain the original. I&#039;ve looked at the livedocs but they seem to be written by men with grey hair who are mental.

Can you help me pls. I apologise for using this unrelated page in which to communicate Peter but i thought as it is a new one chances are you may be monitoring it more closely. Peter i have found 90% of my flex answers from this site. The advertisers are at least getting value for money =]. Saul</description>
		<content:encoded><![CDATA[<p>Help! Peter pls help me. I&#8217;m a little new to flex and it is kicking the syit out of me =[</p>
<p>I have a flex app that contains height 100% values for all containers. Thats how i want it, like flashs ability to resize dynamically through the stage methods, hmm can i implement these straightforwardly in flex, is that necessary?</p>
<p>The problem is when i open a new browser tab window (i test in firefox), having 2 tabs open. I find that when i switch from the second new tab to the first tab, my menu, which is positioned at the bottom of the screen, and application, does not resize in the original tab which has dropped down to display the new tab. In other words the application does not shrink to fit its new dimensions in the first tab. I don't like this behaviour. I've searched google but i keep coming up short and i've spent the whole night working on embedding fonts and fades and i'm so tired and under pressure my brain is like peanut butter right now. Everything worked ok before but i made some changes and cannot retain the original. I've looked at the livedocs but they seem to be written by men with grey hair who are mental.</p>
<p>Can you help me pls. I apologise for using this unrelated page in which to communicate Peter but i thought as it is a new one chances are you may be monitoring it more closely. Peter i have found 90% of my flex answers from this site. The advertisers are at least getting value for money =]. Saul</p>
]]></content:encoded>
	</item>
</channel>
</rss>

