Re: [flexcoders] PopUpManager Module Components

2010-02-01 Thread Alex Harui
On my blog On 2/1/10 9:11 AM, criptopus sd_br...@ntlworld.com wrote: Can anybody give me a simple example of how I would set up a PopUp to load as a module? -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

RE: [flexcoders] PopUpManager

2008-07-21 Thread David Gironella
Here can find information: http://blog.flexexamples.com/2007/08/14/changing-a-modal-alert-controls-blur -transparency-and-transparency-color/ Google is your friend!!! Giro. -Mensaje original- De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] En nombre de tchredeemed Enviado el:

RE: [flexcoders] PopUpManager to Set General-Purpose Control

2008-07-16 Thread Alex Harui
Interfaces, and events. Dialogs should implement an interface of properties and methods and dispatch events when things change From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of edlueze Sent: Wednesday, July 16, 2008 9:15 AM To:

RE: [flexcoders] PopupManager causes RangeError: Error #2006: adding a popup window

2007-12-18 Thread Alex Harui
The DataGrid does not like having popups come up during edit sessions. It is trying to manage focus between editors as the popup tries to take away the focus. There's also a 'problem' in your code that itemEditEnd can be called twice, once as you leave the cell, and again as the dg tries to move

RE: [flexcoders] PopupManager - any way to make it blur the app but not the mask?

2007-11-27 Thread Alex Harui
i'm not sure what you maen by mask From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bjorn - Sent: Tuesday, November 27, 2007 1:53 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] PopupManager - any way to make it blur the app but not

Re: [flexcoders] PopupManager - any way to make it blur the app but not the mask?

2007-11-27 Thread bjorn -
Application.application.mask = myCustomBorder; // myCustomBorder is a loaded swf. On 27/11/2007, Alex Harui [EMAIL PROTECTED] wrote: i'm not sure what you maen by mask -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *bjorn -

RE: [flexcoders] PopupManager - any way to make it blur the app but not the mask?

2007-11-27 Thread Alex Harui
I'd popup the mask to cover the blurred mask then popup your original popup over that From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bjorn - Sent: Tuesday, November 27, 2007 10:35 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders

RE: [flexcoders] PopUpManager

2007-05-29 Thread Alex Harui
Check out how we wrote mx.controls.Alert. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kgnytia Sent: Tuesday, May 29, 2007 1:33 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] PopUpManager Hi all! Im trying to open a

Re: [flexcoders] PopUpManager - how to pass an object to a IFlexDisplayObject

2007-05-25 Thread Igor Costa
You can do that, Just do it. !--- here's the ReduxPanel component -- ?xml version=1.0 encoding=utf-8? mx:Panel creationComplete=createPopUpMe() xmlns:mx= http://www.adobe.com/2006/mxml; layout=absolute width=400 height=300 mx:Script ![CDATA[ import mx.controls.ComboBox; import

RE: [flexcoders] PopUpManager Memory Leak 10 children???

2007-04-15 Thread Alex Harui
I think your test outruns the garbage collector. 50ms is a pretty short interval and the GC is incremental, it tries not to affect other code so it won't always collect everything, then 50ms later you create a whole pile of things. I think another factor is that the 10th ComboBox might cause

RE: [flexcoders] PopUpManager Problem

2007-03-28 Thread Alex Harui
See sharedCode portion of my presentation on modules at blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Sent: Wednesday, March 28, 2007 11:48 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] PopUpManager

RE: [flexcoders] popupmanager . . . position the window?

2005-07-11 Thread Tracy Spratt
You can do popup.centerPopUp(centerRef: MovieClip). If you do not pass the centerRef, it centers on the window that contains the createPopUp() Don't forget about the Flex API on liveDocs: http://livedocs.macromedia.com/flex/15/asdocs_en/index.html Tracy -Original Message- From:

Re: [flexcoders] popupmanager . . . position the window?

2005-07-09 Thread Daniel Cascais
I haven't tried this out, but maybe if you append this to your code: popup.move(Stage.width * .5 - popup.width * .5, Stage.height * .5 - popup.height * .5); On 7/8/05, chris.alvarado [EMAIL PROTECTED] wrote: good afternoon everyone, i have a but that loads a popup window with a form in it. i