RE: [flexcoders] Re: DepthManager

2005-08-17 Thread Theodore E Patrick
The window may be on a different branch of the display list. This depends on the hierarchy of your MXML file and how the controls are instantiated at runtime. Have the window and the menu trace these values: trace( menu ) trace( window ) You will see a resulting path something like:

[flexcoders] Repeater doesn't work

2005-08-17 Thread r_woess
Hi, I tried tu use a Repeater like you can see in the code below. Can anybody tell me, why no data will be shown? ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; creationComplete=CreationComplete(); mx:Script ![CDATA[

Re: [flexcoders] How to install multiple Flash Player versions?

2005-08-17 Thread Brett Palmer
For our development needs we need to evaluate the plugin for IE and Firefox. We also need to evaluate these Windows and Linux. For final testing we would like to evaluate on Mac as well. Brett On 8/16/05, John Dowdell [EMAIL PROTECTED] wrote: Brett Palmer wrote: I'm trying to profile a

RE: [flexcoders] How to install multiple Flash Player versions?

2005-08-17 Thread Philippe Maegerman
Check this out: http://www.browsercam.com/default.aspx Philippe Maegerman From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brett PalmerSent: mercredi 17 août 2005 13:43To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] How to install multiple Flash Player

[flexcoders] Validation TextInput

2005-08-17 Thread Kai König
Hi all, I want a bunch of TextInputs within a form to be required and to validate against a common mx:Validator. This works fine in general, but the customer wants that the validation comes up even if someone just sets the focus to the particular TextInput, doesn't type anything and immediately

[flexcoders] Problems with LocalConnection

2005-08-17 Thread r_woess
Hi, I want to use LocalConnection to send Data between to Flex-Windows. I tried it with these two Files: listener.mxml ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; creationComplete=CC(); mx:Script ![CDATA[

RE: [flexcoders] Problems with LocalConnection

2005-08-17 Thread Philippe Maegerman
mx:Button click="ButtonClicked()"/ Philippe Maegerman Webdeveloper +32 2 400 40 39 +32 472 35 28 10 Avoir des rêves, c'est continuer d'exister... From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of r_woessSent: mercredi 17 août 2005 14:19To:

Re: [flexcoders] Re: DepthManager

2005-08-17 Thread JesterXL
I dug back to the first message; sounds like he has a TitleWindow being created without PopUpManager, and inside a container. In that case, depth shouldn't be a question, but rather implementation. Things in containers can't change depth to any higher since they are in a container, and their

[flexcoders] was anybody able to run this macromedia example properly?

2005-08-17 Thread Paolo Bernardini
I've tried the example at macromedia, http://www.macromedia.com/support/documentation/en/flex/1/cellrendere rs/cellrenderers13.html but it doesn't work properly. It behave in a strange way, basically as soon as you roll over a row of the tree the checkbox covers the disclosure arrow icon making

[flexcoders] Re: Problems with LocalConnection

2005-08-17 Thread r_woess
unfortunatly this was only a copy-paste failure. it also doesn't work with (). Yahoo! Groups Sponsor ~-- font face=arial size=-1a

RE: [flexcoders] Problems with LocalConnection

2005-08-17 Thread Dirk Eismann
This looks like a scoping problem. Try this: private function CC():Void { receivingLC = new LocalConnection(); receivingLC = new LocalConnection(); receivingLC.methodToExecute = mx.utils.Delegate.create(this, setText); } private function setText():Void { myText.text=ok; } Dirk.

RE: [flexcoders] Problems with LocalConnection

2005-08-17 Thread Dimitrios Gianninas
My code is a bit different that yours, perhaps you should look at it and just change things around: Sender: myConnection = new LocalConnection(); myConnection.send("phxApp", "messagePosted", "uploadSuccess"); Receiver: cn = new LocalConnection(); cn.messagePosted = Delegate.create(

RE: [flexcoders] How to install multiple Flash Player versions?

2005-08-17 Thread Dirk Eismann
For Windows there's this great freeware tool (works with Mozilla, IE and also allows to change the default standalone Player) http://www.kewbee.de/FlashPluginSwitcher/index.php Dirk. Yahoo! Groups Sponsor ~-- font face=arial size=-1a

RE: [flexcoders] Re: Problems with LocalConnection

2005-08-17 Thread Philippe Maegerman
I changed the LocalConnection creation in sender.mxml, put it in a initApp() function called onCreationComplete, see attachment Philippe Maegerman From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of r_woessSent: mercredi 17 août 2005 14:42To:

[flexcoders] Changing the wrongLengthError in a DateValidator

2005-08-17 Thread Kai König
Hi all, another validator-related question: Having to validate for a date using a DateValidator, the requirements are to just deliver one validation message if the validation fails. Following the concept, I'd have to add a long list of attributes to my validator call, as in: mx:DateValidator

[flexcoders] Creating a new Flex component

2005-08-17 Thread Michel Bertrand
Title: Creating a new Flex component Hello ! I would like to create some new Flex components, like extended grids, text input and so on. My ideia is not only to add some new behavior to them but new faces too. Does anybody know where could a find documentation about it ? Thanks in

[flexcoders] problem with modelChanged 'updateField' and editField()

2005-08-17 Thread bhaq1972
Hi Qu 1) I have an extended datagrid with an overidden editcell() function. My datagrid is populated from a database. When i make changes to a cell, i dispatch an 'updateField' modelChanged event to show changes. This works fine except when the cell is empty (i.e. no data in database to

[flexcoders] horizontalList

2005-08-17 Thread Philippe Maegerman
I have an horizontalList that has a cellRenderer made of a VBox containing other components. Is it possible to 'talk' to the hList selected component? I tried with hList.getChildAt(index) but it doesn'treturn anything. I have tried many other things but I am totaly stuck :(( Any

RE: [flexcoders] Repeater doesn't work

2005-08-17 Thread Pranav
IMHO The data wont show up because TestData is not defined anywhere, I tried to play with your code.. check this ?xml version=1.0? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml mx:Script /mx:Script mx:Array id=myData mx:Object data1abc/data1

RE: [flexcoders] Repeater doesn't work

2005-08-17 Thread Rob Rusher
I don’t see an import statement for the TestData class. Rob Rusher RIA Consultant Macromedia Certified Flex Instructor e:[EMAIL PROTECTED] c:303.885.7044 im:robrusher -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of r_woess Sent: Wednesday,

Re: [flexcoders] horizontalList

2005-08-17 Thread Oscar . Cortes
I am not sure but what about selectedChild Philippe

RE: [flexcoders] Repeater doesn't work

2005-08-17 Thread Abdul Qabiz
Hi, Your code looks fine except one thing. I think, Binding is not being executed when a particular element of array is changed. Which is good as it saves the performance issues. Following is modified code and it should work, I am reassigning the entire array to itself. See the last line in

RE: [flexcoders] horizontalList

2005-08-17 Thread Philippe Maegerman
nope, no 'child' function seem to work :(( I managed to do what I wanted throughthe cellRenderer, via the third param passed to 'setValue(str:String, item:Object, sel:Boolean)'. About this parameter, it is supposed to return a boolean, but in fact it is returning a string 'normal',

[flexcoders] Re: Repeater doesn't work

2005-08-17 Thread r_woess
Thanks. That's the solution!!! --- In flexcoders@yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED] wrote: Hi, Your code looks fine except one thing. I think, Binding is not being executed when a particular element of array is changed. Which is good as it saves the performance issues.

Re: [flexcoders] Creating a new Flex component

2005-08-17 Thread Tariq Ahmed
Title: Creating a new Flex component Hi Michel, I would suggest looking at some examples to start off with. Eg the Gauge Component, clock Component, etc... http://www.cflex.net/showfiles.cfm?ChannelID=1lkpFileGroup=codelibrary Michel Bertrand wrote: Hello ! I would like

[flexcoders] menubar bar color

2005-08-17 Thread Robert Brueckmann
Title: Creating a new Flex component I searched the archives and it seems a handful of people have asked how to change the color of the actual bar of the menubar component but nobody ever got an answershould I take that as a definitive not possible? Ive tried every color and fill

[flexcoders] Question about passwords

2005-08-17 Thread nostra72
Ok lets say your making a site where you want people to go on and imput information and have everyone put in different information but not have someone be able to put important information for someone else. I guess what I am saying in a nutshell is I want to be able to have someone type in a

[flexcoders] Repeater Question

2005-08-17 Thread Mehdi, Agha
Title: Repeater Question Hi all, Can someone please take a look at this code and tell me what am I doing wrong here? = mx:Script ![CDATA[ private var attributes : Array; private function loadAttributes() : Void {

RE: [flexcoders] Question about passwords

2005-08-17 Thread Battershall, Jeff
Title: Message You have to set password="true" in your TextInput declaration. Jeff -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]Sent: Wednesday, August 17, 2005 1:11 PMTo: flexcoders@yahoogroups.comSubject:

RE: [flexcoders] Repeater Question

2005-08-17 Thread Battershall, Jeff
Title: Message Agha, This is from the Flex docs: You cannot use a Repeater object to iterate through a two-dimensional Array object that is programmatically generated. This is because the elements of an Array object do not trigger changeEvent events, and therefore cannot function as

RE: [flexcoders] Repeater Question

2005-08-17 Thread Tracy Spratt
Title: Message I suspect that if you assign the dataProvider to the repeater after it is ready, this will work. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Battershall, Jeff Sent: Wednesday, August 17, 2005 1:41 PM To:

Re: [flexcoders] Question about passwords

2005-08-17 Thread JesterXL
mx:TextInput password="true" / - Original Message - From: [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, August 17, 2005 1:11 PM Subject: [flexcoders] Question about passwords Ok lets say your making a site where you want people to go on

RE: [flexcoders] Repeater Question

2005-08-17 Thread Mehdi, Agha
Title: Message Yup, That worked. Thanks Tracy Agha Mehdi IDT - eBusiness Program Manager From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Wednesday, August 17, 2005 11:30 AM To: flexcoders@yahoogroups.com Subject: RE:

[flexcoders] Flex Builder Package Component - removing code hints

2005-08-17 Thread kgbroce
I recently used the File / Package Component action in Flex Builder on a local AS component to achieve code hinting. It worked as expected and is a nice feature. How do you remove the code hints and undo this action? Where is this metadata being stored? I couldn't find an actual

RES: [flexcoders] Creating a new Flex component

2005-08-17 Thread Michel Bertrand
Title: Mensagem Thanks ! I will take a look on it ! -Mensagem original-De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Em nome de Tariq AhmedEnviada em: quarta-feira, 17 de agosto de 2005 13:26Para: flexcoders@yahoogroups.comAssunto: Re: [flexcoders]

[flexcoders] Alert box icon

2005-08-17 Thread Andrew Spaulding
Hi all, We're having trouble showing an icon in a dialogue window using mx.controls.Alert.show We have embedded the icon and reference it in the show method as per the docs BUT nothing is displayed. I can use the icon elsewhere so there is no problem with the embedding. Any ideas?? Andrew

[flexcoders] Re: Alert box icon

2005-08-17 Thread owls_yang
Hello Andrew, Method signatures of mx.core.Application.alert and mx.controls.Alert.show are not in consistence. The examples in Flex live doc use mx.core.Application.alert. However, if you use mx.controls.Alert.show, then you may change the parameters/typs. Notice that Alert.show takes a