AW: [flexcoders] modal PopUp with one component, that should accept user interaction

2008-10-11 Thread Christoph Leva
Thanks Tracy and Mark, 
 
what I want to do is create something like a guided tour, that displays
instructions in a popup on how to interact with the component, from where
the help is called. Therefore, this component has to accept user
interaction, but all the other components not.
 
I think I will try it Tracys advice. Had the same idea after looking at the
PopUpManager code.
 
Christoph

  _  

Von: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Im
Auftrag von Mark Carter
Gesendet: Samstag, 11. Oktober 2008 05:59
An: flexcoders@yahoogroups.com
Betreff: Re: [flexcoders] modal PopUp with one component, that should accept
user interaction




What exactly do you want to do? i.e. why do the other components have to be
mouse-shielded?

I assume you know about PopUpButton - I don't know if you could use that to
help you do what you want...?

-- 
View this message in context: http://www.nabble.
<http://www.nabble.com/modal-PopUp-with-one-component%2C-that-should-accept-
user-interaction-tp19898132p19929358.html>
com/modal-PopUp-with-one-component%2C-that-should-accept-user-interaction-tp
19898132p19929358.html
Sent from the FlexCoders mailing list archive at Nabble.com.



 


Re: [flexcoders] modal PopUp with one component, that should accept user interaction

2008-10-10 Thread Mark Carter

What exactly do you want to do? i.e. why do the other components have to be
mouse-shielded?

I assume you know about PopUpButton - I don't know if you could use that to
help you do what you want...?

-- 
View this message in context: 
http://www.nabble.com/modal-PopUp-with-one-component%2C-that-should-accept-user-interaction-tp19898132p19929358.html
Sent from the FlexCoders mailing list archive at Nabble.com.



[flexcoders] modal PopUp with one component, that should accept user interaction

2008-10-09 Thread Christoph Leva
Hi all,

I use the popUpManager to show a TitleWindow. I want it modal, but exlude
the component from where I create the popUp. The result should be, that this
one component and the titleWindow can be clicked on or interacted with and
all other components should not react to user interaction.

Does anybody have an idea how to do it with the PopUpManager?

Cheers, Christoph



RE: [flexcoders] Modal Popup inside a module (or inside a view) of my application

2008-08-13 Thread Alex Harui
Modal is done by putting a transparent sprite over the area that
shouldn't be clicked.  So, if you pop up a transparent sprite then popup
your dialog and position and size everything, you should get what you
want.

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of cuttenv
Sent: Wednesday, August 13, 2008 11:20 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Modal Popup inside a module (or inside a view) of
my application

 

Help! I am trying to create a popup that is modal over only one area of
my application. I don't 
know if it helps but that area is actually a module that is loaded into
the main application. It 
only takes up about half of the stage. Is there a way to make a modal
popup over only a 
module or any view inside your application for that matter. I know there
used to be a way in 
Flex 2 when modules still used the application tag...
Thanks in advance! 
-Vito

 



[flexcoders] Modal Popup inside a module (or inside a view) of my application

2008-08-13 Thread cuttenv
Help! I am trying to create a popup that is modal over only one area of my 
application. I don't 
know if it helps but that area is actually a module that is loaded into the 
main application. It 
only takes up about half of the stage. Is there a way to make a modal popup 
over only a 
module or any view inside your application for that matter. I know there used 
to be a way in 
Flex 2 when modules still used the application tag...
Thanks in advance! 
-Vito



RE: [flexcoders] Modal PopUp without background blur?

2007-01-23 Thread Tracy Spratt
Searching the archives for "blur" turns up this topic:" Re: [flexcoders]
Re: Disable Application Blur in Popup window", and in that message you
will find:



 

Tracy

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of zzwi89
Sent: Tuesday, January 23, 2007 2:22 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Modal PopUp without background blur?

 

I am using the PopUpManager to make a modal dialog out of a Canvas
subclass. I need the dialog to be modal, but I'd prefer not to blur
out the rest of the application. Is there any way to do this short of
subclassing the PopUpManager itself?

 



[flexcoders] Modal PopUp without background blur?

2007-01-23 Thread zzwi89
I am using the PopUpManager to make a modal dialog out of a Canvas
subclass. I need the dialog to be modal, but I'd prefer not to blur
out the rest of the application. Is there any way to do this short of
subclassing the PopUpManager itself?



[flexcoders] Modal popup problem - Flex 1.5

2006-03-30 Thread mrmcfeely8
I'm running into a problem that's driving me insane:

If you open a modal popup from a modal popup, it seems like all key
strokes are captured by the *first* popup, not the top-most popup.

For example, create a modal popup containing a form, and open another
modal popup with a form from the first popup.  If you were to hit TAB
to cycle through fields on the top-most popup, you'd find that it
would actually cycle through the fields on the underlying popup!

The specific situation that I'm running into is with a popup that
contains a form, and if you try submitting that form and there are
validation errors, a basic Alert is shown notifying the user that
errors still exist.  The problem occurs when the user hits ENTER to
try and close that Alert.  Rather than simulating a click on the
Alert's default button, it actually simulates a click on the
underlying Form's default button, which in turn opens up another Alert!!!

Any ideas?  Anyone else run into this problem?






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





RE: [flexcoders] Modal Popup

2006-02-14 Thread Matt Chotin
The top-level window is Application.application, can you try passing
that as the parent?  I admit I don't play with the loader that much :-)

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Rajni
Sent: Tuesday, February 14, 2006 2:22 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Modal Popup

Hi Matt,

Actually my application consists loader in flex application and popup is

opening  in loader,

___
TOP
___
L   | R
 |
 |
 |

The above graphic is showing the top, left, right part of the 
application, and the right part (R) of the dividebox consists loader, 
and popup is opening in the right part, and i want to deactivate the top

and the left part of the application when popup is opened. I have tried 
with root, parent, loader id  but its not working.

Can you please give me a solution or if possible small example so that i

can use it.

-Rajni





On Tue, Feb 14, 2006 at 11:13 AM, Matt Chotin wrote:

> Pass the Application as the parent window for the popup.  But you can
> only cover the movie itself, it's not like you can take over the
> browser...
>
> Matt
>
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] 
> On
> Behalf Of Rajni
> Sent: Monday, February 13, 2006 7:37 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Modal Popup
>
>
> How to set any popup as modal for loader in which the whole 
> application running not for the Application window in which it is 
> running?
> --
>
>
> Sent using Laszlo Mail. Try it yourself.
> http://www.laszlomail.com
>
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups

> Links
>
>
>
>
>
>
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups

> Links
>
>
>
>
>


-- 
Sent using Laszlo Mail. Try it yourself.
http://www.laszlomail.com



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Modal Popup

2006-02-14 Thread Rajni
Hi Matt,

Actually my application consists loader in flex application and popup is 
opening  in loader,

___
TOP
___
L   | R
 |
 |
 |

The above graphic is showing the top, left, right part of the 
application, and the right part (R) of the dividebox consists loader, 
and popup is opening in the right part, and i want to deactivate the top 
and the left part of the application when popup is opened. I have tried 
with root, parent, loader id  but its not working.

Can you please give me a solution or if possible small example so that i 
can use it.

-Rajni





On Tue, Feb 14, 2006 at 11:13 AM, Matt Chotin wrote:

> Pass the Application as the parent window for the popup.  But you can
> only cover the movie itself, it's not like you can take over the
> browser...
>
> Matt
>
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] 
> On
> Behalf Of Rajni
> Sent: Monday, February 13, 2006 7:37 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Modal Popup
>
>
> How to set any popup as modal for loader in which the whole 
> application running not for the Application window in which it is 
> running?
> --
>
>
> Sent using Laszlo Mail. Try it yourself.
> http://www.laszlomail.com
>
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups 
> Links
>
>
>
>
>
>
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups 
> Links
>
>
>
>
>


-- 
Sent using Laszlo Mail. Try it yourself.
http://www.laszlomail.com



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Modal Popup

2006-02-13 Thread Matt Chotin
Pass the Application as the parent window for the popup.  But you can
only cover the movie itself, it's not like you can take over the
browser...

Matt

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Rajni
Sent: Monday, February 13, 2006 7:37 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Modal Popup


How to set any popup as modal for loader in which the whole application 
running not for the Application window in which it is running?
--


Sent using Laszlo Mail. Try it yourself.
http://www.laszlomail.com



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Modal Popup

2006-02-13 Thread Rajni

How to set any popup as modal for loader in which the whole application 
running not for the Application window in which it is running?
--


Sent using Laszlo Mail. Try it yourself.
http://www.laszlomail.com



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [flexcoders] Modal Popup window

2005-03-16 Thread Clint Tredway
refreshing the grid is one option.. you could just update the item
thats selected in the grid, but thats a bit more complicated...

you can pass the dataProvider to the popUp... dp:grid.dataProvider and
then in the popUp you can just bind that to another grid or what ever
you want...


On Wed, 16 Mar 2005 08:20:43 -0800 (PST), Valy Sivec
<[EMAIL PROTECTED]> wrote:
> 
> Thanks Clint. Just another stupid question: and how do I referece the
> variables encapsulated in the initObj in the popup? Can I encapsulate the
> provider in the "initObj" object as well?. Will the source grid feel that
> the datagrid has been changed in the popup? or should I refresh the original
> grid? 
> 
> Valy.
> 
> 
> Clint Tredway <[EMAIL PROTECTED]> wrote:
> 
> function click(){
> //btn.label = "clicked";
> var parentOver = this;
> var isModal:Boolean = true;
> var initObj = {y:100,x:100,width:400,
> height:400,blogid:bid,title:"Blog
> Entry",entryTxt:entryTxt,entryTitle:entryTitle};
> var show =
> mx.managers.PopUpManager.createPopUp(parentOver,blogView,isModal,initObj);
> }
> 
> the initObj is where you send data to your popup... in this code
> snippet, I have vars in my popUp blogid, entryTxt, and entryTitle...
> and I pass data into those vars
> 
> 
> 
> 
> On Wed, 16 Mar 2005 07:54:34 -0800 (PST), Valy Sivec
> <[EMAIL PROTECTED]> wrote:
> > 
> > 
> > 
> > Hello, 
> > 
> > I have a datagrid and underneath a add/edit button. I would want to select
> a
> > row from the grid and pass that row data to a modal popup window and also
> > prepopulate some form items elements. I wasn't able to pass the info
> between
> > the grid and the popup window. After I edit the info in the popup I would
> > like to refresh the grid underneath... is there a way to reference the
> > provider from the parent? 
> > 
> > Thanks, 
> > 
> > Valy
> > 
> > 
> > Do you Yahoo!?
> > Yahoo! Small Business - Try our new resources site! 
> > 
> > Yahoo! Groups Sponsor 
> > 
> > ADVERTISEMENT
> > 
> > 
> > 
> > Yahoo! Groups Links
> > 
> > 
> > To visit your group on the web, go to:
> > http://groups.yahoo.com/group/flexcoders/
> > 
> > To unsubscribe from this group, send an email to:
> > [EMAIL PROTECTED]
> > 
> > Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 
> > 
> > 
> 
> 
> -- 
> My Blog
> http://www.clinttredway.com
> 
> Are you diabetic?
> http://www.diabetesforums.com
> 
> 
> 
> 
> Do you Yahoo!?
> Yahoo! Mail - 250MB free storage. Do more. Manage less. 
> 
> Yahoo! Groups Sponsor 
> 
> ADVERTISEMENT
> 
> 
> 
> Yahoo! Groups Links
> 
> 
> To visit your group on the web, go to:
> http://groups.yahoo.com/group/flexcoders/
> 
> To unsubscribe from this group, send an email to:
> [EMAIL PROTECTED]
> 
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 


-- 
My Blog
http://www.clinttredway.com

Are you diabetic?
http://www.diabetesforums.com




Re: [flexcoders] Modal Popup window

2005-03-16 Thread Valy Sivec
Thanks Clint. Just another stupid question: and how do I referece the variables encapsulated in the initObj in the popup?  Can I encapsulate the provider in the "initObj" object as well?. Will the source grid feel that the datagrid has been changed in the popup? or should I refresh the original grid?
 
Valy.Clint Tredway <[EMAIL PROTECTED]> wrote:
function click(){    //btn.label = "clicked";        var parentOver = this;      var isModal:Boolean = true;      var initObj = {y:100,x:100,width:400,height:400,blogid:bid,title:"BlogEntry",entryTxt:entryTxt,entryTitle:entryTitle};      var show = mx.managers.PopUpManager.createPopUp(parentOver,blogView,isModal,initObj);      }the initObj is where you send data to your popup... in this codesnippet, I!
 have
vars in my popUp blogid, entryTxt, and entryTitle...and I pass data into those varsOn Wed, 16 Mar 2005 07:54:34 -0800 (PST), Valy Sivec<[EMAIL PROTECTED]> wrote:>  >  > > Hello, > > I have a datagrid and underneath a add/edit button. I would want to select a> row from the grid and pass that row data  to a modal popup window and also> prepopulate some form items elements. I wasn't able to pass the info between> the grid and the popup window. After I edit the info in the popup I would> like to refresh the grid underneath... is there a way to reference the> provider from the parent? > > Thanks, > > Valy> >  > Do you Yahoo!?>  Yahoo! Small Business - Try our new resources site! >  >  Yahoo! Groups Sponsor >  > 
ADVERTISEMENT>  >  >  >  Yahoo! Groups Links>  >  > To visit your group on the web, go to:> http://groups.yahoo.com/group/flexcoders/>   > To unsubscribe from this group, send an email to:> [EMAIL PROTECTED]>   > Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. > > -- My Bloghttp://www.clinttredway.comAre you diabetic?http://www.diabetesforums.com
Do you Yahoo!? 
Yahoo! Mail - 250MB free storage. Do more. Manage less.

Re: [flexcoders] Modal Popup window

2005-03-16 Thread Clint Tredway
function click(){
//btn.label = "clicked";
var parentOver = this;
var isModal:Boolean = true;
var initObj = {y:100,x:100,width:400,
height:400,blogid:bid,title:"Blog
Entry",entryTxt:entryTxt,entryTitle:entryTitle};
var show = 
mx.managers.PopUpManager.createPopUp(parentOver,blogView,isModal,initObj);
}

the initObj is where you send data to your popup... in this code
snippet, I have vars in my popUp blogid, entryTxt, and entryTitle...
and I pass data into those vars




On Wed, 16 Mar 2005 07:54:34 -0800 (PST), Valy Sivec
<[EMAIL PROTECTED]> wrote:
> 
> 
> 
> Hello, 
> 
> I have a datagrid and underneath a add/edit button. I would want to select a
> row from the grid and pass that row data to a modal popup window and also
> prepopulate some form items elements. I wasn't able to pass the info between
> the grid and the popup window. After I edit the info in the popup I would
> like to refresh the grid underneath... is there a way to reference the
> provider from the parent? 
> 
> Thanks, 
> 
> Valy
> 
> 
> Do you Yahoo!?
> Yahoo! Small Business - Try our new resources site! 
> 
> Yahoo! Groups Sponsor 
> 
> ADVERTISEMENT
> 
> 
> 
> Yahoo! Groups Links
> 
> 
> To visit your group on the web, go to:
> http://groups.yahoo.com/group/flexcoders/
> 
> To unsubscribe from this group, send an email to:
> [EMAIL PROTECTED]
> 
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 
> 
> 


-- 
My Blog
http://www.clinttredway.com

Are you diabetic?
http://www.diabetesforums.com