<?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: Creating custom pop-up windows with the PopUpManager class</title>
	<atom:link href="http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Mon, 22 Mar 2010 09:31:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: andres</title>
		<link>http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/comment-page-1/#comment-7029</link>
		<dc:creator>andres</dc:creator>
		<pubDate>Tue, 16 Feb 2010 13:36:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/#comment-7029</guid>
		<description>nice  example. i wonder  how can i create a sub modal. i mean. i need a modal who just covers a required container ( and its childs), not the whole application .  thanks in advance.</description>
		<content:encoded><![CDATA[<p>nice  example. i wonder  how can i create a sub modal. i mean. i need a modal who just covers a required container ( and its childs), not the whole application .  thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/comment-page-1/#comment-6452</link>
		<dc:creator>James</dc:creator>
		<pubDate>Wed, 25 Nov 2009 05:07:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/#comment-6452</guid>
		<description>Hello Peter,

I am a student at the University of Nevada Reno and I like this application.  I am gonna try to manipulate it but I am very new to Flex.  I want to be able to click on text and the pop up contain images and info.  Any help would be greatly appreciated.  For example, we are creating a web site about entertainment and when the user clicks on an event the pop up window will appear and the user will be able to see more detailed information about the specific event.</description>
		<content:encoded><![CDATA[<p>Hello Peter,</p>
<p>I am a student at the University of Nevada Reno and I like this application.  I am gonna try to manipulate it but I am very new to Flex.  I want to be able to click on text and the pop up contain images and info.  Any help would be greatly appreciated.  For example, we are creating a web site about entertainment and when the user clicks on an event the pop up window will appear and the user will be able to see more detailed information about the specific event.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chua Chee Seng</title>
		<link>http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/comment-page-1/#comment-6034</link>
		<dc:creator>Chua Chee Seng</dc:creator>
		<pubDate>Fri, 16 Oct 2009 16:05:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/#comment-6034</guid>
		<description>hi friend,

Your example hit error if you:-
i) Click the button to open the popup
ii) While the popup is still open, press &#039;space&#039; 2 times on your keyboard

To avoid that, you should add the setFocus()  after PopupManager.centerPopup:-

 PopUpManager.addPopUp(panel, this, true);
 PopUpManager.centerPopUp(panel);
panel.setFocus();</description>
		<content:encoded><![CDATA[<p>hi friend,</p>
<p>Your example hit error if you:-<br />
i) Click the button to open the popup<br />
ii) While the popup is still open, press &#8217;space&#8217; 2 times on your keyboard</p>
<p>To avoid that, you should add the setFocus()  after PopupManager.centerPopup:-</p>
<p> PopUpManager.addPopUp(panel, this, true);<br />
 PopUpManager.centerPopUp(panel);<br />
panel.setFocus();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lulu</title>
		<link>http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/comment-page-1/#comment-5950</link>
		<dc:creator>Lulu</dc:creator>
		<pubDate>Wed, 07 Oct 2009 13:21:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/#comment-5950</guid>
		<description>I found out that it was just the text color.

Mabye it will help someone new (like me ;o)

Lulu</description>
		<content:encoded><![CDATA[<p>I found out that it was just the text color.</p>
<p>Mabye it will help someone new (like me ;o)</p>
<p>Lulu</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lulu</title>
		<link>http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/comment-page-1/#comment-5949</link>
		<dc:creator>Lulu</dc:creator>
		<pubDate>Wed, 07 Oct 2009 12:42:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/#comment-5949</guid>
		<description>Hi all,

thanks for this blog, I just have a little problem, no matter which popup example I take from internet, every popup window content *looks* like disabled, it is like under other layer :( I can use the datagrid and the buttons, it just shows up like disabled...

Any idea what I am doing wrong?

Thanks for any suggestions.
Lulu</description>
		<content:encoded><![CDATA[<p>Hi all,</p>
<p>thanks for this blog, I just have a little problem, no matter which popup example I take from internet, every popup window content *looks* like disabled, it is like under other layer :( I can use the datagrid and the buttons, it just shows up like disabled&#8230;</p>
<p>Any idea what I am doing wrong?</p>
<p>Thanks for any suggestions.<br />
Lulu</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/comment-page-1/#comment-5870</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Mon, 28 Sep 2009 11:58:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/#comment-5870</guid>
		<description>winPopup.x = (mx.core.Application.application.width -winPopup.width) / 2;
winPopup.y = (mx.core.Application.application.height – winPopup.height) / 2;</description>
		<content:encoded><![CDATA[<p>winPopup.x = (mx.core.Application.application.width -winPopup.width) / 2;<br />
winPopup.y = (mx.core.Application.application.height – winPopup.height) / 2;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/comment-page-1/#comment-5869</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Mon, 28 Sep 2009 11:58:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/#comment-5869</guid>
		<description>winPopup.x = (mx.core.Application.application.width -winPopup.width) / 2;
winPopup.y = (mx.core.Application.application.height - winPopup.height) / 2;</description>
		<content:encoded><![CDATA[<p>winPopup.x = (mx.core.Application.application.width -winPopup.width) / 2;<br />
winPopup.y = (mx.core.Application.application.height &#8211; winPopup.height) / 2;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Louise</title>
		<link>http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/comment-page-1/#comment-4940</link>
		<dc:creator>Louise</dc:creator>
		<pubDate>Tue, 04 Aug 2009 15:11:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/#comment-4940</guid>
		<description>If you change this line:
PopUpManager.addPopUp(panel, this, true);

to
PopUpManager.addPopUp(panel, this, false);

or
PopUpManager.addPopUp(panel, this);
 
you will get the desired behavior.  The 3rd parameter in createPopUp or addPopUp is a boolean - by default it is false, which means the window will be non-modal, which allows you to interact with other windows besides the PopUp window.  When it is set to true, the PopUp takes over - all other windows are disabled until the user has finished interacting with the PopUp and dismisses it.</description>
		<content:encoded><![CDATA[<p>If you change this line:<br />
PopUpManager.addPopUp(panel, this, true);</p>
<p>to<br />
PopUpManager.addPopUp(panel, this, false);</p>
<p>or<br />
PopUpManager.addPopUp(panel, this);</p>
<p>you will get the desired behavior.  The 3rd parameter in createPopUp or addPopUp is a boolean &#8211; by default it is false, which means the window will be non-modal, which allows you to interact with other windows besides the PopUp window.  When it is set to true, the PopUp takes over &#8211; all other windows are disabled until the user has finished interacting with the PopUp and dismisses it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arun</title>
		<link>http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/comment-page-1/#comment-390</link>
		<dc:creator>Arun</dc:creator>
		<pubDate>Tue, 09 Jun 2009 20:17:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/#comment-390</guid>
		<description>I am new to Flex and I have modified the close function to this :






Can you please tell me where the above code would fail where the code listed on the website would succeed?</description>
		<content:encoded><![CDATA[<p>I am new to Flex and I have modified the close function to this :</p>
<p>Can you please tell me where the above code would fail where the code listed on the website would succeed?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raj</title>
		<link>http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/comment-page-1/#comment-393</link>
		<dc:creator>Raj</dc:creator>
		<pubDate>Tue, 10 Feb 2009 21:24:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/#comment-393</guid>
		<description>I&#039;m looking for a way to have a pop appear at the top of a screen but centered horizontally. Can anyone shed light on how to do this? Thanks.</description>
		<content:encoded><![CDATA[<p>I&#8217;m looking for a way to have a pop appear at the top of a screen but centered horizontally. Can anyone shed light on how to do this? Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
