Thank you!
I just remembered the related bug:
https://bugs.adobe.com/jira/browse/SDK-25598
Cheers,
Adnan
On 21/02/2012 07:27, Alex Harui wrote:
Set mouseEnabled=true on the TitleWindow
On 2/20/12 3:29 AM, "Adnan Doric" wrote:
Hi all,
I followed the Alex's P
Set mouseEnabled=true on the TitleWindow
On 2/20/12 3:29 AM, "Adnan Doric" wrote:
Hi all,
I followed the Alex's Popup Dialogs as Modules blog entry:
http://blogs.adobe.com/aharui/2007/08/popup_dialogs_as_modules.html
It works with mx.containers.TitleWindow as intended, t
Hi all,
I followed the Alex's Popup Dialogs as Modules blog entry:
http://blogs.adobe.com/aharui/2007/08/popup_dialogs_as_modules.html
It works with mx.containers.TitleWindow as intended, the context menu
shows and I can copy/paste text in a TextArea.
But if I try t
07 wrote:
>>> Hi
>>>
>>>I use build a pop component for mobile app
>>>
>>>and use the following code to call the popup
>>>
>>>var pop:PopUpWindows = new PopUpWindows();
>>&g
a pop component for mobile app
> >
> > and use the following code to call the popup
> >
> > var pop:PopUpWindows = new PopUpWindows();
> > pop.open(this,true);
> >
> >
> > but the popup always in top-left location of c
PopUpManager.centerPopUp(pop);
On 2/17/2012 14:36, markflex2007 wrote:
> Hi
>
> I use build a pop component for mobile app
>
> and use the following code to call the popup
>
> var pop:PopUpWindows = new PopUpWindows();
> pop.open(thi
Hi
I use build a pop component for mobile app
and use the following code to call the popup
var pop:PopUpWindows = new PopUpWindows();
pop.open(this,true);
but the popup always in top-left location of current page. how to make the
popup on screen
a is fine.
>
> HTH,
> Claudiu
>
> --
> *From:* Csomák Gábor
> *To:* flexcoders
> *Sent:* Wednesday, February 8, 2012 12:46 PM
> *Subject:* [flexcoders] privacy settings popup
>
>
> How to listen if a user already clicked accept, when the camera access
> popup showed up?
>
>
>
>
12 12:46 PM
Subject: [flexcoders] privacy settings popup
How to listen if a user already clicked accept, when the camera access popup
showed up?
How to listen if a user already clicked accept, when the camera access
popup showed up?
ve a mx:module component that I sometimes call with a moduleloader, and
> sometimes call with a popupManager. In order to close the item properly I
> need to know how I was instantiated (popup manager or module loader).
>
> Is there a property that I can check that will tell me this?
>
how I was instantiated (popup manager or module loader).
Is there a property that I can check that will tell me this?
Obviously I can set my own property, but I would prefer using one that
already exists.
Paul
Thanks Alex.
That was the problem actually. The wmode was set to 'transparent'; Setting it
to 'window' fixed the problem.
Thanks for the help.
- Latha
--- In flexcoders@yahoogroups.com, Alex Harui wrote:
>
> If you have a non-default wmode all bets are off.
>
>
> On 6/24/10 8:54 AM, "Latha"
If you have a non-default wmode all bets are off.
On 6/24/10 8:54 AM, "Latha" wrote:
Hi Flex Experts,
I am Latha, I am relatively new to the group.
I need your help in fixing a problem in the application I am working on.
We have a pop-up and it may or may not have vertical scroll bars.
W
Hi Flex Experts,
I am Latha, I am relatively new to the group.
I need your help in fixing a problem in the application I am working on.
We have a pop-up and it may or may not have vertical scroll bars.
When there is a vertical scroll and we scroll fast, the UI gets distorted.
Some parts of it bec
events.
--- In flexcoders@yahoogroups.com, "ilikeflex" wrote:
>
> Hi
>
> I am trying to create editable datagrid. I have also implemented itemEditEnd
> event because i have nested datafield. I have custom itemeditor. In the
> custom itemeditor, i have textInput and
Hi
I am trying to create editable datagrid. I have also implemented itemEditEnd
event because i have nested datafield. I have custom itemeditor. In the custom
itemeditor, i have textInput and button to open the popup. I click to open open
pop up.I write some text in the pop up but that that
Could some one please post the "create.php" file.
I downloaded the latest version and it's not in the zip file.
thanks
mars
Thanks Alex, much appreciated!
-Greg
On Tue, May 11, 2010 at 4:21 PM, Alex Harui wrote:
>
>
> The Application and all popups are parented by the SystemManager. The
> SystemManager divides its children into four childlists (application, popup,
> tooltip, cursor). The Applicati
Now problem has been solved. I use preventDefault in Item_Edit_Begin event
after closing the popup. but it prevent it on same condition as in
ITEM_EDIT_BEGINNING. it works fine now
Thanks
Sachin
Alex Harui wrote:
>
> You may not be able to prevent another edit session from ITEM_ED
The Application and all popups are parented by the SystemManager. The
SystemManager divides its children into four childlists (application, popup,
tooltip, cursor). The Application childlist is the lowest so that children in
the popup childlist float over them, tooltips float over the
Hi Alex,
No, I was not specifying the childList and never understood the implication
of using that argument.
I updated my code however, same result.
My top level popup, or the one I want on top specifies the parent as the
main application and uses APPLICATION childList arg. My small "m
adonly but editedItemRenderer is
readonly. Now, My 50% problem is solved but 50% is still remaining. After
closing popup and returning focus to grid, cell is opened in edit mode. I
want this cell in renderer mode. How should I dispatch itemEditEnd event
from popup so after closing the popup, cell wil
Hi Alex,
Thanks for Quick reply. Yes, it is not readonly but editedItemRenderer is
readonly. Now, My 50% problem is solved but 50% is still remaining. After
closing popup and returning focus to grid, cell is opened in edit mode. I
want this cell in renderer mode. How should I dispatch itemEditEnd
Are you using the childLIst parameter of PopUpManager?
On 5/10/10 11:30 AM, "Greg Hess" wrote:
Hi All,
My application employs a modular architecture(main applications responsibility
is just to load and unload modules). My module displays a popup window who's
par
Hi All,
My application employs a modular architecture(main applications
responsibility is just to load and unload modules). My module displays a
popup window who's parent is the main application that covers the entire UI.
Unfortunately, while this popup is displayed certain events occur i
EditedItemPosition should be read/write.
On 5/10/10 2:44 AM, "DevSachin" wrote:
Hi Alex,
I studied your example at
http://blogs.adobe.com/aharui/2008/08/datagrid_with_popup_editor.html
I have created "editing cell with popup editor with ADG " and also implement
cell
Hi Alex,
I studied your example at
http://blogs.adobe.com/aharui/2008/08/datagrid_with_popup_editor.html
I have created "editing cell with popup editor with ADG " and also implement
cell edit in double click instead of single click.
I have written itemeditBeginning handler and
hat the problem was and now I do, so I thought I
would restate the question.
Is there anyway to change the transparency color of an existing modal popup?
I have tried the following, and it does not work.
var intRed:int = Math.round(Math.random() * (255));
var intBlue:int = Math.round(Math.random(
I posted this question under another Subject.
I didn't realize precisely what the problem was and now I do, so I thought I
would restate the question.
Is there anyway to change the transparency color of an existing modal popup?
I have tried the following, and it does not work.
var intRe
Set the height in code in a creationComplete and show handler
On 4/12/10 10:14 AM, "Richard Rodseth" wrote:
In the context of:
Is there a simple way to give the popup a height of, say, 50% of the
current application height, along with a min and max height?
In the context of:
Is there a simple way to give the popup a height of, say, 50% of the
current application height, along with a min and max height?
his:
>
> var target:Point = localToGlobal( new Point( hbox.x, hbox.y ) );
> popup.move( target.x, target.y );
>
> Call the method after you add the popup and when the container is scrolled.
> In some cases localToContent is more appropriate.
>
> -TH
>
>
> --- In flex
You'll want to create a method that does something like this:
var target:Point = localToGlobal( new Point( hbox.x, hbox.y ) );
popup.move( target.x, target.y );
Call the method after you add the popup and when the container is scrolled. In
some cases localToContent is more appropriate.
Hi all,
I'm trying to work out a specific problem I'm having with positioning in Flex
using the PopUpManager. Basically I'm wanting to create a popup which will
scroll with the parent container - this is necessary because the parent
container is large and if the user's
e:
I have a very odd issue in my Flex3 app.
I have a popup that is an mx:TitleWindow, instantiated with the
popupManager in the normal way. It has a number of buttons, and a
canvas. On creationComplete, an additional control is dynamically
added to the canvas using childCanvas.addChild().
I have a very odd issue in my Flex3 app.
I have a popup that is an mx:TitleWindow, instantiated with the
popupManager in the normal way. It has a number of buttons, and a
canvas. On creationComplete, an additional control is dynamically
added to the canvas using childCanvas.addChild
I think the popup has to implement IFocusManagerContainer. See the
dropDownSwatch in ColorPicker.
On 2/4/10 7:10 PM, "reflexactions" wrote:
I have a custom control that is similar to a combo in that it has a 'popup'
dropdown.
The difference is that the popup is
I have a custom control that is similar to a combo in that it has a 'popup'
dropdown.
The difference is that the popup is editable and can be clicked into.
The problem I am having is that when I click into the dropdown I get a RTE
because focusManager is null.
The problem seems to b
This could be done with separate questions: 1) how to make a popup for a
custom component ( e.g. a custom panel, canvas etc). 2) How to make a custom
component expandable. There's lots of material about that too.
2010/2/1 MicC
>
>
>
> If you have a link that would be great
If you have a link that would be great googled for about an hour before
posting request - found some interesting popup stuff but nothing that had
expand.
--- In flexcoders@yahoogroups.com, "Tracy Spratt" wrote:
>
> I don't have one handy but google will.
>
[SPAM] [flexcoders] popup dialog with grow ability?
Looking for a popup example where the popup can be grabbed and expanded.
TIA,
Mic.
[SPAM] [flexcoders] popup dialog with grow ability?
Looking for a popup example where the popup can be grabbed and expanded.
TIA,
Mic.
Looking for a popup example where the popup can be grabbed and expanded. TIA,
Mic.
Hi,
I'm stumped on a problem and could use some help: I have a
PopUpManager-launched TitleWindow (modal == true) that contains a DataGrid.
Using the DataGrid's slider, I can move through the data rows just fine but
can't scroll the DG using the mouse wheel. As a test, I set a
MouseEvent.MOUSE_
Seth.
>
>
>
>
> [image: i'm] EMAILING FOR THE GREATER GOOD
> Join me<http://im.live.com/Messenger/IM/Home/?source=EML_WLHM_GreaterGood>
>
> --
> To: flexcoders@yahoogroups.com
> From: n...@middleweek.co.uk
> Date: Tue, 22 Dec 200
excoders] Using Cairngorm and how to display a
Popup from aCommand
Nice post and thanks for replying...
I understand your first solution, I think it's similar to a ChangeWatcher
approach... but I'm a bit lost with the 2nd approach..
s.adobe.com/aharui
From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf
Of markflex2007
Sent: Wednesday, December 23, 2009 1:13 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] How to disable 'actionscript error" popup window?
Hi,
Do you think if it i
Hi,
Do you think if it is possible to do this?
Thanks
Marks
lf Of Nick Middleweek
Sent: Monday, December 21, 2009 1:46 PM
To: flexcoders@yahoogroups.com
Subject: [SPAM] Re: [Spam] Re: [flexcoders] How to dispatchevent in popup
window?
Hi,
I'm quite new to Flex and was wondering if it's possible to use Meta Tags to
declare the custom Event that is
fetched data is displayed on the
current View. If the data contains Fault event info then I need to show a
custom PopUp component...
I think, you're 2nd solution is storing a private or public function from
inside the View on the CairngormEvent that is fired to reference it later...
If I've go
om: n...@middleweek.co.uk
Date: Mon, 21 Dec 2009 19:05:46 +
Subject: [flexcoders] Using Cairngorm and how to display a Popup from a Command
Hi,
If there's a preferred place to ask this, please let me know but I'm working on
my first Cairngorm
vents.
And no, the parent "shouldn't" dispatch the event, this does cause component
coupling.
I'm pretty certain though that the people who suggested that did it for the
sake of simplicity.
In case of a quick-and-dirty prototype, you might not want to extend
TitleWindow to
or Error I want to
show a custom Popup Component.
My question is how do others deal with this? If I use PopupManager.add or
create PopUp I need to pass in the parent : DisplayObject... What is best
practice to reference the parent ?
Would you create a reference on the model.rootApplication = thi
Hi,
I'm quite new to Flex and was wondering if it's possible to use Meta Tags to
declare the custom Event that is to be fired from the 'popup' component.
And then assign that Custom Event to the function handler in the parent MXML
or AS file?
I guess this is the same as
Either what Valdor suggested, or in your pop window have a "componentOwner"
refrence which you use to dispatch your event:
popup:
public var componentOwner:DisplayObject ;
popup dispatches event:
componentOwner.dispatchEvent(...your event...) ;
application using the popup:
theP
dispatchevent in popup window?
You need to add the event listener to the SystemManager.
SystemManager handles all events from popup windows.
--- In flexcoders@yahoogroups.com, "markflex2007" wrote:
>
> Hi,
>
> I want to d
You need to add the event listener to the SystemManager.
SystemManager handles all events from popup windows.
--- In flexcoders@yahoogroups.com, "markflex2007" wrote:
>
> Hi,
>
> I want to dispatch event in popup window and capture the event
> in base page.
>
&g
popup window?
Hi,
I want to dispatch event in popup window and capture the event
in base page.
Please give me a idea how to do this.
Thanks
Mark
Hi,
I want to dispatch event in popup window and capture the event
in base page.
Please give me a idea how to do this.
Thanks
Mark
I have the following code:
I think I have the targeting wrong, any ideas as to what it should be or where
I am going wrong?
- Stephen
r McArthur <
cmcart...@riotgames.com> wrote:
>
>
> I was unable to find any way to do this either after a lot of experiment I
> finally gave up. A callLater after creationComplete, or any other of a host
> of events that it looks like you tried as well still happens before the
>
Yes, that's what I'm trying to do.
Listening to FlexEvent.ADD doesn't work - it happens pretty early in the
cycle.
Thanks.
On Mon, Dec 7, 2009 at 3:40 PM, cuttenv wrote:
>
>
>
>
> I'm guessing what you're trying to do is to create a popup, then displ
I was unable to find any way to do this either after a lot of experiment I
finally gave up. A callLater after creationComplete, or any other of a host of
events that it looks like you tried as well still happens before the popup is
visible as you found.
I ended up just doing a timer of about 1s
I'm guessing what you're trying to do is to create a popup, then display it,
then start your encoding of the image?
The popup is a child of the system manager try adding your event
A popup is a child of the system manager try adding an child added
eventlistener to it.
--- In
Bump. Still trying to find a way to detect that a popup is visible.
On Mon, Nov 30, 2009 at 9:55 AM, Richard Rodseth wrote:
> Yes, I have tried using callLater(). I was hoping there was an event I
> could tap into that got dispatched once the window is visible.
>
>
> On Mon, No
lto:flexcod...@yahoogroups.com] On Behalf
Of steveb805
Sent: Monday, November 30, 2009 2:50 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] calling removeListener on a popup
I have a mxml component based on TitleWindow that's used for a Popup. Nothing
new there - big yawn goin your way.
I have a mxml component based on TitleWindow that's used for a Popup. Nothing
new there - big yawn goin your way.
I also have an addEventListener called on the object (so I can dispatch a
custom event):
---
win = EditTaskBox(PopUpManager.createPopUp(this, EditTaskBox,
ayObject
>>> as a PNG or JPEG to add to an AlivePDF PDF.
>>>
>>> Since I can't seem to force a busy cursor (ironic), one of the
>>> suggestions was to pop up a window before starting the encoding. But I've
>>> tried listening to creationComplete,
ration (in my case encoding a DisplayObject
>> as a PNG or JPEG to add to an AlivePDF PDF.
>>
>> Since I can't seem to force a busy cursor (ironic), one of the suggestions
>> was to pop up a window before starting the encoding. But I've tried
>> listening to cr
; as a PNG or JPEG to add to an AlivePDF PDF.
>
> Since I can't seem to force a busy cursor (ironic), one of the suggestions
> was to pop up a window before starting the encoding. But I've tried
> listening to creationComplete, render, show, addedToStage etc. etc., and in
> a
indow before starting the encoding. But I've tried
listening to creationComplete, render, show, addedToStage etc. etc., and in
all cases the popup doesn't appear until the encoding is complete.
I was unable to find any event dispatched by the PopupManager either.
Help!
@yahoogroups.com
Subject: [SPAM] Re: [flexcoders] Passing values from popup window to MXML
component
Hi,
I have written a function and after checking the username and password, to
toggle the buttons, but I get the following error:
TypeError: Error #1009: Cannot access a property or method
the code for displaying on the popupwindow, and Main is
another component which contains code for calling popup window and it contain
other UI code for header. Is this the right way to do?
Thanks
From: Omotola Anjorin
To: flexcoders@yahoogroups.com
Se
r 10, 2009 12:38 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Nested PopUp and Mouse_Down_Outside event
>
>
>
> Hi,
>
> I'm trying to solve this problem here and I'd like to ask if anyone has any
> suggestions?
>
> I have a panel
] Passing values from popup window to MXML
component
Yeah you can do what rohit said by adding a logout button at the same place
and toggling the visiblity.
This way,
>From you main application you can do something like this.
if(loginWin. userInput. text=='funand
@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf
Of johncch85
Sent: Tuesday, November 10, 2009 12:38 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Nested PopUp and Mouse_Down_Outside event
Hi,
I'm trying to solve this problem here and I'd like to ask if anyone has a
x27;m using the
FlexMouseEvent.MOUSE_DOWN_OUTSIDE to trap the event and close the popup.
I have a custom component inside this panel that uses a pop up similar to the
date field. The custom component utilizes a class that extends UIComponent
which acts as a "popup" to select an input val
ut play around the text property.
Cheers
From: Rohit Sharma
To: flexcoders@yahoogroups.com
Sent: Mon, November 9, 2009 12:21:02 PM
Subject: Re: [flexcoders] Passing values from popup window to MXML component
You can add a logout button at the same place as login button and toggle the
visibil
;headerButtons"
> borderStyle="outset" horizontalAlign="left" verticalAlign="middle"
> backgroundColor="#938480">
>
>
>
>
>
>
> borderColor="#F85023">
eight="261">
component2.mxml has the following code for the popup
xmlns:main="components.*" layout="vertical"
Flex does not provide a way to get around popup blockers. But you can put up
your own Flex popups within the application/browser.
Alex Harui
Flex SDK Developer
Adobe Systems Inc.<http://www.adobe.com/>
Blog: http://blogs.adobe.com/aharui
From: flexcoders@yahoogroups.com [mailto:f
Hello,
Is it possible to setup the option : allow popup window in the navigator from a
flex application ?
Thank you,
Christophe,
I posted a question the other day about how to prevent a popup from being
dragged outside the bounds of the application window. Since I'm fairly new at
Flex, some obvious things are not immediately obvious to me.
I think my popup window can be dragged outside the main application w
How can I set focus to a particular control in a container whenever it it first
gets poped up.
However after the user has clicked in some other control I want focus to go to
the control they last clicked in if the window gets deactivated and activated.
Yes you can, A quick overview - Create an Event meta tag
create a class for the meta event that extends the Event and
then dispatch your event that bubbles to the main application
from your popup.
read here;
http://livedocs.adobe.com/flex/3/html/help.html?content=createevents_3.html
Of
Yes you can.
Add an event listener to the systemManager of the application. systemManager is
the owner for popup windows.
--- In flexcoders@yahoogroups.com, "markflex2007" wrote:
>
> Hi,
>
> Do you think if it is possible for popup Flex window to send event to main
Hi,
Do you think if it is possible for popup Flex window to send event to main
Application screen?
Thanks
Mark
stems Inc.<http://www.adobe.com/>
Blog: http://blogs.adobe.com/aharui
From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf
Of flexaustin
Sent: Friday, October 09, 2009 2:10 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Custom PopUp not resizing.
Thanks
in
> Sent: Friday, October 09, 2009 9:04 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Custom PopUp not resizing.
>
>
>
> So I swapped out Box with s:Panel as the base of my custom component. If I
> don't set set height or width in my component then Fla
obe Systems Inc.<http://www.adobe.com/>
Blog: http://blogs.adobe.com/aharui
From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf
Of flexaustin
Sent: Friday, October 09, 2009 9:04 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Custom PopUp not resizing
Sent: Thursday, October 08, 2009 2:07 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Custom PopUp not resizing.
>
>
>
> I have a custom popup based on mx:Box. In it I have a dropdown. In this list
> dropdown you can select multiple items that once items are sele
@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf
Of flexaustin
Sent: Thursday, October 08, 2009 2:07 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Custom PopUp not resizing.
I have a custom popup based on mx:Box. In it I have a dropdown. In this list
dropdown you can selec
I have a custom popup based on mx:Box. In it I have a dropdown. In this list
dropdown you can select multiple items that once items are selected they stay
in the dropdowns selected box (think multiselect combobo box). My custom pop
has a width and height set to 300 by 300;
Anyway, when I
Hi Dave,
Your advise certainly helped. Thanks.
What I did was the TitleWindow was used to display the data which is retrieved
from the parent window.
Although I find it odd that the TitleWindow when opened as a popup window does
not seem to connect to the web service, whereas the parent
alize events were
> not firing is that I declared the popup window in an application scope
> variable, so basically, it has alread been instantiated and not
> re-instantiated when I make the call.
>
> Another question though.
>
> I think the TitleWindow when it is a popup w
Hi
Struggling with the follwing problem:
We build a popup-based application. Popups are created with default childlist
parameters, meaning "PopUpManagerChildList.PARENT". In a certain popup, I use
a standard button that, when clicked open a Menu to offer additional choices.
Probl
: Tue, 29 Sep 2009 17:01:01 -0700 (PDT)
To:
Subject: Re: [flexcoders] TitleWindow Popup Question(s)
Hi Dave,
This is what I was doing previously. I agree with you that the titlewindow
popup should have quite a minimal set of codes in it.
What puzzles me though is that I am unable to make a
Hi Dave,
This is what I was doing previously. I agree with you that the titlewindow
popup should have quite a minimal set of codes in it.
What puzzles me though is that I am unable to make a web service call from
within the Popup window itself. Is it not possible for the popup window to
hi Vito,
Thanks a lot. This surely does work. The reason why my initialize events were
not firing is that I declared the popup window in an application scope
variable, so basically, it has alread been instantiated and not re-instantiated
when I make the call.
Another question though.
I think
1 - 100 of 1001 matches
Mail list logo