RE: [flexcoders] COLUMNCHART + REPEATER

2005-08-11 Thread david_gal-reyniez
Thank Matt. I have a better control about the building of my chart with the method creationComplete() which you advise me to use. Indeed I could optimize my chart! For example, the LinearAxis generates by default the property autoAdjust to true. It was problematic to watch a Datein this

[flexcoders] createClassObject || Create dynamically series of buttons in AS components

2005-08-23 Thread david_gal-reyniez
Hi everybody, I need your advises concerning the development of customized component. I would like totransform this following code that I did in my mxml component into a in actionscript coded component : mx:Repeaterid="rpTreeExpandCollapse"dataProvider="{ arrTreeExpandCollapseBtn }"

RE: [flexcoders] Calling functions

2005-08-23 Thread david_gal-reyniez
Prasad, What I may say about your code : - the function line contains moveTo that you call each time you call the method line(). It's not a good practise. moveTo is use at the beginning to set the first x,y coordinates, then you use lineTo to draw the shape you want. -

[flexcoders] RemoteObject || Multiple signature

2006-05-15 Thread david_gal-reyniez
Hi everybody. Is it possible to call 2 methos of a remote object with different signature? I suppose with the tag mx:arguments But I don't know how I may differenciate both arguments call. Thanks for your help. David **

[flexcoders] HTTPService and dynamic url

2005-04-28 Thread david_gal-reyniez
Hello everyone! My problem is the following: I try to affect dynamically the url of my HTTPService component. But even if the value of the url that I generate is good, the url property of my HTTPService is not affected. I'm interested by any kind of suggestions. Thanks for your help!

RE: [flexcoders] XPath support in Flex?

2005-04-28 Thread david_gal-reyniez
Hi Kris, I had the same approach. You may find ActionScript classes developed by XFactorStudio : http://www.xfactorstudio.com/. this solution is free for use. David De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Kristopher SchultzEnvoyé: jeudi 28 avril 2005

[flexcoders] TREE : open all the branches of one tree

2005-05-02 Thread david_gal-reyniez
Hi everybody, I try to create a function allowing me to openall the branches of my tree. Problems iface with are : 1. I open only the first branch 2. The number of items i count = the number of items i see - the number of children of the new opened branch Here is my function :

RE: [flexcoders] Flex and jsp

2005-05-31 Thread david_gal-reyniez
thing you need is to use the getURL method. You can use it to communicate with a _javascript_ function back on your JSP page... like so: getURL( "_javascript_:someJSFunction( 'someValue' )", "_top" ); Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments I

[flexcoders] Chart examples

2005-06-07 Thread david_gal-reyniez
Hi everybody, Itry to use the chart examples furnished by Macromedia unsuccessfully. I have always recieved the same error message for each chart examples: *PROPERTY ELEMENTS MAY NOT HAVE ATTRIBUTES* can you help me aboutthis problem? ?xml version="1.0"?mx:Application

[flexcoders] Event Class in the book developping rich clients with macromedia flex

2005-06-07 Thread david_gal-reyniez
Steven, Alistair, I read your book about developping rich clients with macromedia and i try to follow your suggestions concerning the architecture. I especially try to adapt the differents classes (according to theJ2EE Core Pattern) but I meet a problem concerning the class Event. You

RE: [flexcoders] Chart examples

2005-06-07 Thread david_gal-reyniez
Matt, I have the same version but this is the trial version. Is that the reason why? David De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Matt HornEnvoyé: mardi 7 juin 2005 17:28À: flexcoders@yahoogroups.comObjet: RE: [flexcoders] Chart examples David, I copied

RE: [flexcoders] Chart examples

2005-06-08 Thread david_gal-reyniez
Matt, Is that possible that the error is generated by a wrong/reduced class PlotSeries.as? It seems that the message is due to a defect xml structure. Don't you think so? I don't find the chart classes to look at them. Do you know where I can find them. Thanks. David De:

RE: [flexcoders] Chart examples

2005-06-09 Thread david_gal-reyniez
Matt, The problem come from this portion of code: mx:PlotSeries xField="Expenses" yField="Profit" name="Plot 1" /mx:PlotSeries xField="Amount" yField="Expenses" name="Plot 2" /mx:PlotSeries xField="Profit" yField="Amount" name="Plot 3" / I re-write it without success. After submitting

[flexcoders] TREE : TreeNode TreeNode attributes creation

2005-06-15 Thread david_gal-reyniez
Hi everybody, I need your help to create new attributes to a TreeNode. I created a button which call the function addNodeUp() Inside this function is the following code : public var newNode:TreeNode;public var selectedNode:TreeNode; addNodeUp() { var

[flexcoders] TREE : Collapsing expanding TreeNode

2005-06-15 Thread david_gal-reyniez
Hi everybody, New question about Tree manipulation. I would like to have control on specific parts of my Tree structure. More precisely I would like to prevent user to expand specific TreeNodes among all TreeNode into my Tree because I don't want them to have a look on the subnode. I

RE: [flexcoders] TREE : Collapsing expanding TreeNode

2005-06-16 Thread david_gal-reyniez
Matt, Thank you for your help. I've already tried to use setIsBranch but it doesn't work because Nodes are automatically configured as branch nodes when they have children... I try your second suggestion! Thank too for thecode for adding node. I haven't thought to this way of coding...It

[flexcoders] REPEATER : Index

2005-06-17 Thread david_gal-reyniez
Hi everybody, I need your help tomanage myincapacity of usingcorrectly the repeater. In my repeater I define an TextInput , a List , aButton and a CheckBox. I would like to clear the text property of my TextInput by clicking the corresponding Button and to make visible my List by

RE: [flexcoders] TREE : extending the tree component

2005-06-23 Thread david_gal-reyniez
Matt, I seems that it's the same problem I have with the viewing of chart. May the problem come from a bad configuration of the .war or something like that. David De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Matt ChotinEnvoyé: jeudi 23 juin 2005 06:43À:

[flexcoders] ERROR MESSAGE : Branch between 7543 and 40329 around line 0 exceeds 32K span. If possible, please refactor this component

2005-07-19 Thread david_gal-reyniez
Hi everyboby! Can anybody explain to me the reason of this regularly error message I have *** Branch between 7543 and 40329 around line 0 exceeds 32K span. If possible, please refactor this component

RE: [flexcoders] ERROR MESSAGE : Branch between 7543 and 40329 around line 0 exceeds 32K span. If possible, please refactor this component

2005-07-20 Thread david_gal-reyniez
Hi everybody For people who faces with the same problem I had... http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_19520 Bye De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de david_gal-reyniezEnvoyé: mardi 19 juillet 2005 17:07À:

[flexcoders] COLUMNCHART + REPEATER

2005-07-28 Thread david_gal-reyniez
Hi everybody, I try to generate 4 charts thanks to the REPEATER object but I partially success. Can you help me to success totally... The chart contains the good values, the legend generates the good labels et the defined colors. The problem is to get the value for the both axis (in

[flexcoders] Flex 1.5 || Integration of MXML file into a BEA Workshop project

2006-09-06 Thread david_gal-reyniez
Hi Everybody! I would like to integrate FLEX into a BEA Workshop project. How do I have to configure the Weblogic Server to integrate the Flex server? What is the way to integrate MXML component into jsp? Should I have to mix files like web.xml for example? Or should I have to make my

[flexcoders] Flex 1.5 || DataGrid + CellRenderer

2006-06-07 Thread david_gal-reyniez
Hi everybody! I have a problem with datagrid dataprovider and cellrenderer refreshing. Objective: From a comboboxI build a matrix into a datagrid. I want to refresh the datagrid each time I change my choice. Problem: No refresh of the cellrenderer into the datagrid