[flexcoders] TitleWindow titleBar with rollover state.

2010-06-26 Thread Ivan
Hi everyone, Has anyone ever need to use TitleWindow as a pop up where the background colour of the titleBar changes colour when the user hovers the mouse pointer over the title bar? I tried to use a custom ActionScript background skin, but to no success. When I base my custom skin on

[flexcoders] TitleWindow Custom Components - A Problem

2010-04-29 Thread Battershall, Jeff
Hi, Let me describe the scenario: I'm using Hillen Coren's AutoComplete component to suggest choices for a user inside of a DataGrid ItemRenderer, which has been working fine in Flex 3.x for a year. One additional factor - this grid is popped up as part of a TitleWindow using PopUpManager.

Re: [flexcoders] TitleWindow Custom Components - A Problem

2010-04-29 Thread Alex Harui
Are you still using mx components or switching to spark? On 4/29/10 8:32 AM, Battershall, Jeff jeff.battersh...@dowjones.com wrote: Hi, Let me describe the scenario: I’m using Hillen Coren’s AutoComplete component to suggest choices for a user inside of a DataGrid ItemRenderer, which

RE: [flexcoders] TitleWindow Custom Components - A Problem

2010-04-29 Thread Battershall, Jeff
...@yahoogroups.com] On Behalf Of Alex Harui Sent: Thursday, April 29, 2010 12:58 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] TitleWindow Custom Components - A Problem Are you still using mx components or switching to spark? On 4/29/10 8:32 AM, Battershall, Jeff jeff.battersh

[flexcoders] TitleWindow Show and Hide effects

2010-03-18 Thread raja_s_patil
Hello, In My Project I am Using many TitleWindows as popups via PopUpManager Create and remove popups methods. All is working fine. Now I would like to apply some effects like fade or zoom while the popup is being shown and removed and I would like to define those effects in a central location

Re: [flexcoders] TitleWindow Popup Question(s)

2009-10-06 Thread Angelo Anolin
window does not have any problem retrieving the data from the web service. Thanks again. Regards Angelo From: Dave Cates d...@redemptionmedia.co.uk To: flexcoders@yahoogroups.com Sent: Wednesday, 30 September, 2009 1:15:41 Subject: Re: [flexcoders] TitleWindow

[flexcoders] TitleWindow Popup Question(s)

2009-09-29 Thread Angelo Anolin
Hi FlexCoders, Just a little TitleWindow popup question. I want a function to be executed everytime my popup title window component is displayed.  How do I achieve this? I tried in the title window using the initialize property like: mx:TitleWindow xmlns:mx=http://www.adobe.com/2006/mxml;

Re: [flexcoders] TitleWindow Popup Question(s)

2009-09-29 Thread Dave Cates
: [flexcoders] TitleWindow Popup Question(s) Hi FlexCoders, Just a little TitleWindow popup question. I want a function to be executed everytime my popup title window component is displayed. How do I achieve this? I tried in the title window using the initialize property like

Re: [flexcoders] TitleWindow Popup Question(s)

2009-09-29 Thread Dave Cates
: [flexcoders] TitleWindow Popup Question(s) Hi FlexCoders, Just a little TitleWindow popup question. I want a function to be executed everytime my popup title window component is displayed. How do I achieve this? I tried in the title window using the initialize property like

Re: [flexcoders] TitleWindow Popup Question(s)

2009-09-29 Thread Angelo Anolin
to make a backend (.NET) web service call? Thanks. From: Dave Cates dave.ca...@gmail.com To: flexcoders@yahoogroups.com Sent: Tuesday, 29 September, 2009 16:00:10 Subject: Re: [flexcoders] TitleWindow Popup Question(s)   Hi, I’d reference a public set function

Re: [flexcoders] TitleWindow Popup Question(s)

2009-09-29 Thread Dave Cates
...@yahoo.com Reply-To: flexcoders@yahoogroups.com Date: Tue, 29 Sep 2009 17:01:01 -0700 (PDT) To: flexcoders@yahoogroups.com 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

Re: [flexcoders] TitleWindow closeButton Color

2009-07-07 Thread claudiu ursica
=CloseButtonOver); closeButtonUpSkin: Embed(source=custom_skins.swf,symbol=CloseButtonUp); } TH, C From: jmfillman jmfill...@verizon.net To: flexcoders@yahoogroups.com Sent: Tuesday, July 7, 2009 1:27:59 AM Subject: [flexcoders] TitleWindow closeButton Color

[flexcoders] TitleWindow closeButton Color

2009-07-06 Thread jmfillman
Is there a style for the color of the closeButton in a TitleWindow? I can't seem to find it, but it seems odd to have black be the only option. Can't seem to embed an image for the closeButtonSkin either. Setting a style in CSS doesn't work, or...?? TitleWindow { closeButtonSkin:

[flexcoders] titlewindow skinned component

2009-03-03 Thread stinasius
hi how can i skin or where can i get a custom title window component like the one found here http://www.adobe.com/devnet/flex/articles/marketing_platforms_06.html; thanks

[flexcoders] TitleWindow and CloseButton

2009-02-25 Thread Cato Paus
Wath I want help with is: are there a another way to do this, private function thisCreationComplete(event:FlexEvent):void {trace('OverWriteWarning::thisCreationComplete'); for(var i:int = 0; titleBar.numChildren i; i++){ if(titleBar.getChildAt(i) is Button) { var butt:Button =

RE: [flexcoders] TitleWindow and CloseButton

2009-02-25 Thread Yves Riel
The button of a title window is located in the Panel component. You can directly access it thought the mx_internal::closeButton http://geo.yahoo.com/serv?s=97359714/grpId=12286167/grpspId=1705007207/ msgId=137608/stime=1235567809/nc1=4507179/nc2=3848640/nc3=4836036 variable. Just make sure to

[flexcoders] TitleWindow with TabNavigator

2008-09-04 Thread Jason Crummack
Hi, I have a problem with the display of an options dialog (TitleWindow) that contains a TabNavigator and sizing of the underlying tabs. I've tried combinations of creationPolicy=all and resizeToContent=true on the navigator and don't seem to be able to get the effect i'm after what i'd like

Re: [flexcoders] TitleWindow with TabNavigator

2008-09-04 Thread Michael Schmalle
Hi, Yes, this seems like the job for a subclass. The problem here is the ViewStack only measures the selectedChild. So there is no possibility of knowing anything about the other children until the child becomes the selected child. On the other hand, if you know you have all of your content

Re: [flexcoders] TitleWindow with TabNavigator

2008-09-04 Thread Michael Schmalle
If you choose to try this, I forgot you need to include the ViewStack's viewMetricsAndPadding in the measurements before setting the parent window's width and height. Mike On Thu, Sep 4, 2008 at 8:15 AM, Michael Schmalle [EMAIL PROTECTED]wrote: Hi, Yes, this seems like the job for a

Re: {Disarmed} Re: [flexcoders] TitleWindow with TabNavigator

2008-09-04 Thread Jason Crummack
Thanks mike managed to get things going had a little fight with the top bordermetric being eaten by the tabbar but other than that things seem to be working as i'd have hoped thanks for the tips. Jason Michael Schmalle wrote: If you choose to try this, I forgot you need to include the

[flexcoders] TitleWindow

2008-09-02 Thread markgoldin_2000
Is it possible to add a push button or other controls to a TitleWindow to show it on the horizontal title line? Thanks

Re: [flexcoders] TitleWindow

2008-09-02 Thread Sherif Abdou
, September 02, 2008 5:25 PM Subject: [flexcoders] TitleWindow Is it possible to add a push button or other controls to a TitleWindow to show it on the horizontal title line? Thanks

Re: [flexcoders] Titlewindow resize problem

2008-07-17 Thread ibo
] To: flexcoders@yahoogroups.com Sent: Thursday, July 17, 2008 1:41:53 AM Subject: RE: [flexcoders] Titlewindow resize problem I don’t have time to set this up right now. Did it clip or did you get scrollbars? Should it clip or just layout differently? From:[EMAIL

[flexcoders] TitleWindow

2008-07-17 Thread markgoldin_2000
New TitleWindow comes with a white area inside. Is it possible to get rid of it completely? Thanks

[flexcoders] Titlewindow resize problem

2008-07-16 Thread ibo
Guys need help, I've spent a day trying to figure out whats the problem with with this app. Its about programmatically resizing a Titlewindow. When I'm assigning the TitleWindow a new value for width, a portion of the window seems to be clipped for no reason. Is this a bug? Is there a

RE: [flexcoders] Titlewindow resize problem

2008-07-16 Thread Alex Harui
@yahoogroups.com Subject: [flexcoders] Titlewindow resize problem Guys need help, I've spent a day trying to figure out whats the problem with with this app. Its about programmatically resizing a Titlewindow. When I'm assigning the TitleWindow a new value for width, a portion of the window seems

[flexcoders] TitleWindow (Popup) Resize Problem

2008-06-24 Thread wwwpl
I have a dialog box with a text field in it. The text field can be set with text that wraps. So the size of the text field is unknown. Well when the text field has text that is 2 lines, it causes children to be pushed down. The bottom children are cut off because the dialog box

[flexcoders] TitleWindow activation

2007-12-18 Thread reflexactions
We have an application where we use the PopUpManager to add a number of TitleWindows. I want to know when a window is activated i.e. it is clicked on and the window is brought to the front and vice versa when it ceases to be the topmost window. I thought the track focusin/focusout would be

RE: [flexcoders] TitleWindow activation

2007-12-18 Thread Alex Harui
:[EMAIL PROTECTED] On Behalf Of reflexactions Sent: Tuesday, December 18, 2007 5:44 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] TitleWindow activation We have an application where we use the PopUpManager to add a number of TitleWindows. I want to know when a window is activated i.e

Re: [flexcoders] TitleWindow and Open/Close Effect

2007-12-07 Thread Ben Marchbanks
hideEffect will not work for titleWindow. You should create your effect and define - effectEnd=PopUpManager.removePopUp(this) Then your titleWindow close event should be close={myEffect} This way the effect runs and then the window closes. reflexactions wrote: I was trying to have an

[flexcoders] TitleWindow and Open/Close Effect

2007-12-07 Thread reflexactions
I was trying to have an effect run when I open and close a TitleWindow. I set the showEffect/hideEffect but nothing happens. Is this the wrong effect property for open and closing a window? If so what effect property should I use ... or how can I do this? tks

[flexcoders] TitleWindow icon

2007-09-14 Thread candysmate
Is this correct for inserting an icon into a TitleWindow? icon=@Embed(source='../images/dissectionicon.png') Try as I might, I cannot get the icon to appear. My TitleWindow is being used as a popup by PopUpManager. Hmm...

Re: [flexcoders] TitleWindow icon

2007-09-14 Thread Doug McCune
titleIcon is a different property. Why I'll never know. On 9/14/07, candysmate [EMAIL PROTECTED] wrote: Is this correct for inserting an icon into a TitleWindow? icon=@Embed(source='../images/dissectionicon.png') Try as I might, I cannot get the icon to appear. My TitleWindow is being

Re: [flexcoders] TitleWindow sozing help needed

2007-09-07 Thread Michael Schmalle
Hi, That is good ole mathematics. You need to calculate the popups new width and height, then use that to calc the x and y using the stage.screen dimensions. Peace, Mike On 9/7/07, Mark [EMAIL PROTECTED] wrote: I'm poping up a title window and would like the size to be a percentage of the

[flexcoders] TitleWindow sozing help needed

2007-09-07 Thread Mark
I'm poping up a title window and would like the size to be a percentage of the window size. I haven't been able to see how do to this, is it something I can do? What I'd like is for it to be centered at about 75 percent of the screen width and height. I really don't even know if that will

[flexcoders] TitleWindow close calling Application.application.currentstate?

2007-09-03 Thread grimmwerks
I'm trying to have a close window call upstream to the main application to switch the currentstate; is this possible? I keep getting: Access of undefined property Application... close={Application.application.currentState='start'}

[flexcoders] titleWindow cutomisation

2007-05-23 Thread Lincoln Mitchell
How do you remove ALL the space around a TitleWindow main content area? This is how far I have got: --- ?xml version=1.0 encoding=utf-8? mx:TitleWindow xmlns:mx=http://www.adobe.com/2006/mxml; title=title backgroundColor=red headerHeight=0 borderStyle=none

Re: [flexcoders] titleWindow cutomisation

2007-05-23 Thread Flexing...
Also set following to zero borderThicknessBottom borderThicknessTop borderThicknessLeft borderThicknessRight Refer http://livedocs.adobe.com/flex/2/langref/mx/containers/ Panel.html (TitleWindow extends Panel) for more details. On May 23, 2007, at 2:05 PM, Lincoln Mitchell wrote: How do you

RE: [flexcoders] titleWindow cutomisation

2007-05-23 Thread Lincoln Mitchell
: [flexcoders] titleWindow cutomisation Also set following to zero borderThicknessBottom borderThicknessTop borderThicknessLeft borderThicknessRight Refer http://livedocs. http://livedocs.adobe.com/flex/2/langref/mx/containers/Panel.html adobe.com/flex/2/langref/mx/containers/Panel.html

[flexcoders] TitleWindow, Borderskin, and the Move Effect

2007-04-09 Thread Paul Whitelock
I have a TitleWindow that uses a BorderSkin (based on HaloBorder) to draw a custom background in the window's content area. The skin works fine until I try applying a Move effect to the TitleWindow. What happens is that when the move begins from offscreen top, the TitleWindow's content background

Re: [flexcoders] TitleWindow missing all focus events??

2007-02-02 Thread Roman Protsiuk
Overloading focusOutHandler/focusInHandler helps. You'll be able to handle FocusEvents there. Like in protected override function focusOutHandler(event : FocusEvent) : void { if (event.relatedObject == null || !contains(event.relatedObject)) { // event came from outside not from one

[flexcoders] TitleWindow missing all focus events??

2007-02-01 Thread zhongtie
I pop up TitleWindows using PopupManager, and I change the titlebar colors based on if the titleWindow is active (topmost) or not. The problem is, I am NOT able to capture the focus event for TitleWindow (other controls, like TextArea, has no problems), nor does onFocusIn/onFocusOut overwrite

[flexcoders] Titlewindow dragging and dropping within canvas

2007-01-16 Thread Shailesh Mangal
I need to put a titleWindow over the canvas (either as a child or as popup) and should be draggable by it titleBar (and not the body) confined with the canvas and should not flow over other components on the screen. I did it successfully by implementing custom dragging but that lets the whole

[flexcoders] titlewindow reveals too early

2007-01-09 Thread bghoward3
is there a way i can stall the tile window opening until the items in it have full drawn? my title window contains a combobox component populated with dynamic data, so since it takes longer tot load than the the window takes to open, the window resizes after it opens and looks sloppy any

Re: [flexcoders] TitleWindow Component...help!

2006-12-05 Thread Roman Protsiuk
Hi. Why don't your pop up dispatch some event (e.g. submitData) and you listen to it? R. On 12/5/06, qnotemedia [EMAIL PROTECTED] wrote: OK - so I'm using the generic TileWindow example found on the Component Explorer. It basically shows you how to build something where: 1) User clicks a

RE: [flexcoders] TitleWindow Component...help!

2006-12-05 Thread Tracy Spratt
@yahoogroups.com Subject: [flexcoders] TitleWindow Component...help! OK - so I'm using the generic TileWindow example found on the Component Explorer. It basically shows you how to build something where: 1) User clicks a button, Window pops up. 2) User types into a text box in the window, clicks Submit

RE: [flexcoders] TitleWindow Component...help!

2006-12-05 Thread Tracy Spratt
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] TitleWindow Component...help! Hi. Why don't your pop up dispatch some event (e.g. submitData) and you listen to it? R. On 12/5/06, qnotemedia [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: OK - so I'm using the generic TileWindow

[flexcoders] TitleWindow Component...help!

2006-12-04 Thread qnotemedia
OK - so I'm using the generic TileWindow example found on the Component Explorer. It basically shows you how to build something where: 1) User clicks a button, Window pops up. 2) User types into a text box in the window, clicks Submit. 3) Text typed in appears in the main app.

Re: [flexcoders] TitleWindow Close Button

2006-09-26 Thread Tom Chiverton
On Tuesday 26 September 2006 01:14, John Kirby wrote: I am try do trap an event when the mouse is over the close button (x) on a TitleWindow. http://livedocs.macromedia.com/flex/2/langref/mx/containers/Panel.html#event:close -- Tom Chiverton Helping to confidentially evolve

[flexcoders] TitleWindow Close Button

2006-09-25 Thread John Kirby
Title: quote I am try do trap an event when the mouse is over the close button (x) on a TitleWindow. Anyone know how to reference this object? Thanks -- Whether you think that you can, or that you can't, you are usually right. - Henry Ford __._,_.___ -- Flexcoders Mailing List

[flexcoders] TitleWindow title text aligned left aligned right...

2006-08-25 Thread Doug Arthur
How do you have text on the left and right of a TitleWindow??? Here's an example if you login: http://flexderby.ntara.com/ Thanks! __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] TitleWindow for the Screen coordinates

2006-08-11 Thread Satish
Hi, i am showing my title window like alert on the screen. I am specifying the screeen coordinates also here. But the coordinates i am specifying are taking the application size. But i need to put this x,y coordinates respect to the browser window. Because, i am adding more than one mxml

Re: [flexcoders] TitleWindow Text colors

2006-08-07 Thread Samuel Reuben
Hi Tim, You can change the Title text color using titleStyleName. But changing it to two colors is not possible, you could probably us the status and use the statusStyleNameto change it's color too or use and image in front of the text which has the textCurrent Window and set it as the

Re: [flexcoders] TitleWindow Text colors

2006-08-07 Thread Samuel Reuben
The closest that you will be able to get is setting the titleIcon(to an image with text in it) and changing the titleStyleName. -sam On 8/7/06, Samuel Reuben [EMAIL PROTECTED] wrote: Hi Tim, You can change the Title text color using titleStyleName. But changing it to two colors is not

[flexcoders] TitleWindow Text colors

2006-08-02 Thread sufibaba
Hello flexors,Does anyone know how to make the Title text of the TitleWindow Control in different colors.For example, in the title I would like the following text displayed.Current Window: ExplorerPlusThanks in advance.-Tim __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] TitleWindow - Positioning and Background Blurring

2006-07-26 Thread Stefan Schmalhaus
1. Can I adjust the amount of blurring that is applied to the background when I open a TitleWindow? Is it possible to completely switch off the blurring? 2. How do I center a TitleWindow automatically? Thanks in advance. Stefan Yahoo! Groups Sponsor

Re: [flexcoders] TitleWindow - Positioning and Background Blurring

2006-07-26 Thread JesterXL
1. Application has a global style, modalTransparencyBlur, that you can set to 0. 2. PopUpManager.centerPopUp ( YourPopUpHere ); - Original Message - From: Stefan Schmalhaus [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, July 26, 2006 12:53 PM Subject: [flexcoders

RE: [flexcoders] TitleWindow - Positioning and Background Blurring

2006-07-26 Thread Karl Johnson
[mailto:[EMAIL PROTECTED] On Behalf Of Stefan SchmalhausSent: Wednesday, July 26, 2006 12:53 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] TitleWindow - Positioning and Background Blurring 1. Can I adjust the amount of blurring that is applied to thebackground when I open a TitleWindow

Re: [flexcoders] TitleWindow - Positioning and Background Blurring

2006-07-26 Thread hank williams
To: flexcoders@yahoogroups.com Subject: [flexcoders] TitleWindow - Positioning and Background Blurring 1. Can I adjust the amount of blurring that is applied to thebackground when I open a TitleWindow? Is it possible to completelyswitch off the blurring?2. How do I center a TitleWindow

[flexcoders] TitleWindow - htmlText does not render

2006-04-27 Thread marksdean2000
I am trying to produce a pop-up window (TitleWindow) that contains HTML formatted text. The simple example below produces no output (blank). It appears that HTML is not supported in TitleWindow, although I see no mention of this. Does anyone know if HTML is supported in TitleWindow, or am I

RE: [flexcoders] TitleWindow - htmlText does not render

2006-04-27 Thread Darren Houle
Your example works fine for me in F2B2... except I had to close the Text tag with an ending / Darren From: marksdean2000 [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] TitleWindow - htmlText does not render Date: Thu, 27 Apr 2006

[flexcoders] TitleWindow lost focus on startup

2006-03-23 Thread xithor
I have a TitleWindow set to popup at the startup of my application. I use this window at other points in the program with absolutely no problems. But when it's called on startup using the 'initialize' event on my main canvas, it opens the popup, and it functions fairly normally, but A: does

Re: [flexcoders] TitleWindow width issue

2006-01-30 Thread Manish Jethani
On 1/28/06, Deepa Subramaniam [EMAIL PROTECTED] wrote: Try using PopUpManager.popUpWindow() which takes the window to pop up. After you create the window object to pop up, set its width and height to the parent application's width and height and then call popUpWindow(). Something like:

RE: [flexcoders] TitleWindow width issue

2006-01-29 Thread Matt Chotin
Subject: [flexcoders] TitleWindow width issue I would like to know if there is a way to make a popup expand the entire screen? I have need for a pop that expands the entire screen. When I use the PopUpManager.createPopUp function to create a pop-up the TitleWindow seems to take up about 60%-70

[flexcoders] TitleWindow width issue

2006-01-27 Thread rgwilson26
I would like to know if there is a way to make a popup expand the entire screen? I have need for a pop that expands the entire screen. When I use the PopUpManager.createPopUp function to create a pop-up the TitleWindow seems to take up about 60%-70% of the screen when the width is set to

RE: [flexcoders] titlewindow move end

2005-10-10 Thread Philippe Maegerman
: flexcoders@yahoogroups.comSubject: Re: [flexcoders] titlewindow move end move.my_panel.addEventListener("move", this);function move(){ trace("cracka moved!");}- Original Message - From: "Rajesh Jayabalan" [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent:

[flexcoders] titlewindow move end

2005-10-07 Thread Rajesh Jayabalan
Hi, I want to findout where a titlewindow has moved? so that I can set the position is the user has moved the titlebar outside the screen area. Does anyone know what event is generation when a move of titlewindow is ended and how to trap it. Regards Rajesh J

Re: [flexcoders] titlewindow move end

2005-10-07 Thread JesterXL
move. my_panel.addEventListener(move, this); function move() { trace(cracka moved!); } - Original Message - From: Rajesh Jayabalan [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, October 07, 2005 7:38 PM Subject: [flexcoders] titlewindow move end Hi, I want

RE: [flexcoders] TitleWindow passing vars back to another TitleWindow

2005-07-20 Thread Sauro, Nick
: flexcoders@yahoogroups.comSubject: RE: [flexcoders] TitleWindow passing vars back to another TitleWindow OK, here's a sample of what I'm trying to do. I want Window2 to populate recpName.text which can be found in Window1 when the input field in Window2 is changed. If I change Window1

RE: [flexcoders] TitleWindow passing vars back to another TitleWindow

2005-07-19 Thread Sauro, Nick
you should look into data binding. Nick Sauro+R O U N D A R C H + bus 212.909.2335+ mob 914.882.3687 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kim ReddingtonSent: Tuesday, July 19, 2005 11:33 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders

Fwd: RE: [flexcoders] TitleWindow passing vars back to another TitleWindow

2005-07-19 Thread kreddington1
A R C H + bus 212.909.2335 + mob 914.882.3687 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kim Reddington Sent: Tuesday, July 19, 2005 11:33 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] TitleWindow passing vars back

RE: RE: [flexcoders] TitleWindow passing vars back to another TitleWindow

2005-07-19 Thread Sauro, Nick
@yahoogroups.comSubject: Fwd: RE: [flexcoders] TitleWindow passing vars back to another TitleWindow Using data binding, I run into the same problem. The 2nd window doesn't seem to be able to talk to the first window. Is there another method I could try?Thanks--- In flexcoders@yahoogroups.com

RE: [flexcoders] TitleWindow passing vars back to another TitleWindow

2005-07-19 Thread kreddington1
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kreddington1 Sent: Tuesday, July 19, 2005 4:03 PM To: flexcoders@yahoogroups.com Subject: Fwd: RE: [flexcoders] TitleWindow passing vars back to another TitleWindow Using data binding, I run into the same problem. The 2nd window doesn't seem

[flexcoders] TitleWindow show event

2005-05-17 Thread Jeff Beeman
I've got a TitleWindow popup that appears when a button is clicked. When the window appears, I want to set focus on a TextInput component that is in the TitleWindow. I assume that the event I'm looking for is show - but it doesn't seem to be broadcasting that event when the TitleWindow is popped

RE: [flexcoders] TitleWindow show event

2005-05-17 Thread Tracy Spratt
I'd use creationComplete of the TitleWindow instead. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Beeman Sent: Tuesday, May 17, 2005 2:53 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] TitleWindow show event I've got

RE: [flexcoders] TitleWindow show event

2005-05-17 Thread Matt Horn
tfunction setMyFocus() {form1.setFocus();}/mx:Scriptmx:TextInput id="form1" text="Your Name" / /mx:TitleWindow From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy SprattSent: Tuesday, May 17, 2005 3:48 PMTo: flexcoders@yah

RE: [flexcoders] TitleWindow show event

2005-05-17 Thread Jeff Beeman
@yahoogroups.com Subject: RE: [flexcoders] TitleWindow show event Works like a charm: ?xml version=1.0 encoding=utf-8? mx:TitleWindow xmlns:mx=http://www.macromedia.com/2003/mxml closeButton=true width=200 click=this.deletePopUp(); creationComplete=setMyFocus() mx:Script function setMyFocus() { form1