[flexcoders] Re: Question to Adobe about Flex Framework 1.5 Code Quality

2006-04-11 Thread maxym.hryniv
--- In flexcoders@yahoogroups.com, Ted Patrick [EMAIL PROTECTED] wrote: CAN YOU HERE ME, Ted??? The trick here is that I added 'myFoo.doFoo' I don't see any trick i see just event handling. Your issue is more walking a tree of custom objects. :) So how should we walk an object tree?

[flexcoders] Re: Flex2B2 - bug? problem when calling a webservice method with a string[] arg

2006-04-11 Thread bhaq1972
You're correct! Thanks Ben. this is not a bug. my mistake. --- In flexcoders@yahoogroups.com, ben.clinkinbeard [EMAIL PROTECTED] wrote: call.send([array1]); should be call.send(array1); The square brackets mean you are sending a one element array that contains array1. --- In

[flexcoders] Re: DataGrid has items but doesn't display text

2006-04-11 Thread bhaq1972
Can you show us what your webservice returned data looks like. dont know if this helps but my webservice returned data was a string and i did the following private function returnWebService(event:ResultEvent):void { var xmlobj:XML = new XML(event.result); var xc3:XMLListCollection = new

[flexcoders] Re: Flex2B2 simple question regarding xml attributes

2006-04-11 Thread bhaq1972
Hi Werner. Thanks the suggestion. I wasn't able to run this because i'm getting a access to undefined property 'a' compile error --- In flexcoders@yahoogroups.com, Werner Sharp [EMAIL PROTECTED] wrote: How about this... var xml1:XML = Node1 a='b' c='d' e='f' g='h'/ for each (a

[flexcoders] Re: Flex2B2 simple question regarding xml attributes

2006-04-11 Thread bhaq1972
i did the following for each (var a:Object in [EMAIL PROTECTED]) { trace (a.name()); trace (a.toXMLString()); } a.name doesn't trace anything. a.toXMLString() traces the attribute value. so we're half way their. --- In flexcoders@yahoogroups.com, bhaq1972 [EMAIL PROTECTED] wrote:

[flexcoders] labelfuction and column chart questions

2006-04-11 Thread shemeshkale
hi, 1) me using flex 1.5 i have a ColumnChart. how can i change one column color on mouse hover on it? 2) how can i show images with labelFunction? i m calling a function with labelFunction from a PieChart and want to display images in the label. -- Flexcoders Mailing List FAQ:

回复: Re: [flexcoders] Flex Builder to ship with JDT? Eclipse plugins compatibility wi th Flex Builder 2?

2006-04-11 Thread 沈浩亮
b2 plugin version didn't work fine in my computer,i can create flex project ,mxml file, and so on ,but there is no design panel in my workbench,and the states ,commponents panel only can display, and nothing in it except a words like this the panel is aviliable when edit mxml file !i just edit

[flexcoders] Flex Consultant Needed

2006-04-11 Thread James Bell
Hello Flex Developers, A dynamic firm in San Francisco is looking for help developing creating a new reporting interface prototype using Macromedia Flex. Prototype will most likely be developed using Flex 1.5. Subsequent versions could be developed in Flex 2.0. Consultant will be

[flexcoders] Strange ComboBox problem

2006-04-11 Thread leo4beer
Hi, I've ran into a bug I'm unable to trace, I was wondering if anyone here encountered this (so far I could not find anything on the web) I'm extending a Flex control, in my new class I'm attaching a ComboBox to the control. The problem is: When I change the CB selection for the first time the

[flexcoders] AS3 class cast

2006-04-11 Thread ROUSSELIE David ROSI/SIFAC
hi, I have some problem with AS3 class cast (Flex2 Beta2). I have 2 classes, one (B for example) inherits from the other (A). here is some code : var b: B = new B(); b is B; // - return true b is A; // - return true A(b); // - return null For the last line, I was expecting A(b) returns b but

[flexcoders] Re: DataGrid has items but doesn't display text

2006-04-11 Thread ben.clinkinbeard
Sure, my returned data is a list of nodes like this:Plan xmlns="http://domain.com/BackOffice/DocumentMetadata" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ChartLabel1406238/ChartLabel

RE: [flexcoders] Re: Question to Adobe about Flex Framework 1.5 Code Quality

2006-04-11 Thread Ted Patrick
And DOM model is designed for TREE of objects, but we cannot use it in non-visual tree, that because ITS BAD DESIGNED. --- WITH FLEX 2 YOU CAN SUPPORT THIS TODAY, YOU ARE NOT RESTRICTED.

[flexcoders] Re: Question to Adobe about Flex Framework 1.5 Code Quality

2006-04-11 Thread maxym.hryniv
Ted, You've not understood me one more time. I don't have a problem with creating my own code with my own logic (btw your code is bad). But as a developer you don't have to be targeted to some concrete case but you have to operate with abstractions. And if in bubbled dispatching you see

[flexcoders] Re: DataGrid has items but doesn't display text

2006-04-11 Thread bhaq1972
Sorry, I can't help. this might give you ideas. I was trying this little test out based on your code. var x:XML = Plan xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

Re: [flexcoders] Re: Question to Adobe about Flex Framework 1.5 Code Quality

2006-04-11 Thread Ikezi Kamanu
Maxym, you're the best (in so many ways).This is such groundbreaking insight, do keep it coming.e k z___Ikezi KamanuAdobe Consulting On 4/11/06, maxym.hryniv [EMAIL PROTECTED] wrote: Ted, You've not understood me one more time. I don't have a problem with creating my own

[flexcoders] Re: Question to Adobe about Flex Framework 1.5 Code Quality

2006-04-11 Thread maxym.hryniv
OUT OF CONTEXT --- In flexcoders@yahoogroups.com, Ikezi Kamanu [EMAIL PROTECTED] wrote: Maxym, you're the best (in so many ways). This is such groundbreaking insight, do keep it coming. e k z ___ Ikezi Kamanu Adobe Consulting On 4/11/06, maxym.hryniv [EMAIL

[flexcoders] gant chart

2006-04-11 Thread juscodin
Has anyone worked on creating a gant chart capability with Flex? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group on the web,

RE: [flexcoders] Flex1.5: Limit of series a graph component can have

2006-04-11 Thread RAMOS CARDONA JESUS SALVADOR
I dont think they would want to resample or view chunks of data as a graph detail. This is more a political question. If it can be done, then my managers will trust Flex implicitly. Otherwise, they will force us to use some other product, or even switch to .NET. This financial

[flexcoders] Dreamweaver 8 MXML Syntax Highlighting?

2006-04-11 Thread JesterXL
Does anyone know how to get MXML syntax highlighting in Dreamweaver 8? How about code-hinting? --JesterXL -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups

RE: [flexcoders] Re: Question to Adobe about Flex Framework 1.5 Code Quality

2006-04-11 Thread Stefan Richter
OUT OF CONTEXT At least he wasn't shouting... Or keeping scores. Let's face it Max, you're rude and have been throughout this thread. Go read up on list etiquette before trying to revolutionize the programming world. Stefan -- Flexcoders Mailing List FAQ:

[flexcoders] Flex Contract Opportunity

2006-04-11 Thread Jim Schneider
Hello, We are looking for 1-2 Flex developers for a 6 month contract (1099, Corp-to-Corp). Initial contract is 6 months, but could be extended beyond that. Location - anywhere you want. Depending on your location, minimal travel (1-2 days) may be involved. You must have proven (real world

RE: [flexcoders] Flex1.5: Limit of series a graph component can have

2006-04-11 Thread Roger Gonzalez
There are no hardcoded limits that I know of, it all comes down to performance - CPU and memory. I'd still like to see an instance of what this sort of graph would look like. Unless you're doing a scatterplot (and given the amount of data you're talking about, perhaps even in that case), its

RE: [flexcoders] Re: Question to Adobe about Flex Framework 1.5 Code Quality

2006-04-11 Thread Matt Chotin
Let me just point out no one from Flex Engineering is paying attention to this thread anymore. If you guys want to fight offlist that's fine with me. Matt -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] Re: Question to Adobe about Flex Framework 1.5 Code Quality

2006-04-11 Thread Ted Patrick
Max, I think I have been professional here and other would agree. I have listened to you, tried to understand, and posted code to help. Please keep Flexcoders professional, it is not personal. :) Flash/Flex is simple for a reason. As a platform, it was designed to create light and fast

RE: [flexcoders] Re: Flex2B2 simple question regarding xml attributes

2006-04-11 Thread Werner Sharp
Hmm, that works for me. You could also try for each (var a:Object in xml1.attributes()) { } Or use a for loop var xl:XMLList = xml1.attributes(); for (var i:int = 0; i xl.length(); i++) { trace (xl[0].toXMLString(); // or try typeof, nodeKind(), etc. }

Re: [flexcoders] Re: Question to Adobe about Flex Framework 1.5 Code Quality

2006-04-11 Thread Weyert de Boer
I don't think you should change working code only because it's doesn't have the perfect design, but that might just me. Of course, you can do something refactoring. You can only break ;-) -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

RE: [flexcoders] Flex1.5: Limit of series a graph component can have

2006-04-11 Thread RAMOS CARDONA JESUS SALVADOR
Thank you for your answer, Roger. I agree with the uselessness of a 100k point chart, and I have had long arguments with my superiors regarding the actual need of this, but I backed out after I was introduced to the political issues regarding this project. As I stated before, this is more a

RE: [flexcoders] Flex1.5: Limit of series a graph component can have

2006-04-11 Thread Ely Greenfield
Is it possible? Yes. Will it have reasonable performance? Probably not, but it's a really easy test to find out. Charts probably will not perform well under this load, but I'm not sure you'll even get that far. First you have to send 200k floats over the wire, and deserialize them in the

RE: [flexcoders] labelfuction and column chart questions

2006-04-11 Thread Ely Greenfield
1) write a custom renderer for your columnseries. This renderer should fill the columns with the standard color, _unless_ it's filling the selected index. Something like this: Class MyCustomRenderer { public var index:Number; public var selectedIndex:Number; function

[flexcoders] Maintaining documentation in Flex App in property file / xml file

2006-04-11 Thread shweta_parekh
Hi, How can I use a resource property file in Flex. I want to store the static component labels as well as error messages / alert messages of the application in a property file or an xml file. When Flex loads the mxml or application throws error message etc., it should get the description of

RE: [flexcoders] Removing Items from a list

2006-04-11 Thread Karl Johnson
Use the click event of the button to call list.removeAll() to remove all of the items or removeItemAt(int) to remove a specific list item. Is that what you are asking? If you want to remove the list item that is selected, you should be to just do list.removeItemAt(list.selectedIndex); in the

RE: [flexcoders] gant chart

2006-04-11 Thread Karl Johnson
Yep I created one. It combines a tree control with a grid. The grid is a not actually a grid control because of performance problems, but is actually a big canvas. On the expand and collapse events of the tree, I redraw the gantt chart grid (using the drawing api) to have rows (color determined

[flexcoders] Flex2B2: cannot convert flash.display::SimpleButton to mx.core.IUIComponent

2006-04-11 Thread Tom Bray
What do I need to do to add a SimpleButton to my component without getting the type coercion error above? The code I'm using is taken directly from the docs and it's pasted below. The parent component is an HBox. ... import flash.display.*; private function doInit():void { var

[flexcoders] Flex2 beta 2: java adaptor, RTMP and security

2006-04-11 Thread box110a
The Flex 2 Java adaptor is awesome. But it works over RTMP, which is an insecure transport. This severely limits it's usefulness. Yes, it's true you could send your username and password separatly over the ssl line, but what if your working with sensitive data like banking or medical systems;

Re: [flexcoders] gant chart

2006-04-11 Thread jeremy lu
nice idea, I'm just about to get my hands on the gantt chart, but with real GridTree control so each row can display more than drawings.On 4/12/06, Karl Johnson [EMAIL PROTECTED] wrote: Yep I created one.It combines a tree control with a grid. The grid is a not actually agrid control because

[flexcoders] Beta2 - How to access a dataGrid cell?

2006-04-11 Thread Ryan Pieszak
Very simple question... Have a dataGrid with three columns, one visible. When the user clicks on an item, it should populate two textInputs with the values of the two hidden columns in the row they clicked. Can somebody help with the syntax? Thanks. -- Flexcoders Mailing List FAQ:

[flexcoders] Beta2 - How to access a dataGrid cell?

2006-04-11 Thread Ryan Pieszak
Very simple question... Have a dataGrid with three columns, one visible. When the user clicks on an item, it should populate two textInputs with the values of the two hidden columns in the row they clicked. Can somebody help with the syntax? Thanks. -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Flex2 beta 2: java adaptor, RTMP and security

2006-04-11 Thread Stefan Richter
I don't know if this exists or is planned but considering that rtmp stems from Flash Media Server and that this now supports SSL natively (rtmps) I'd presume that it should be an easy feature to add. Can we be certain that this is not supported already? Stefan From:

[flexcoders] Possible to invoke Flex2b2 compiler as a Java class?

2006-04-11 Thread Avi Flax
I'd like to invoke the Flex2b2 compiler from ColdFusion using the Java class, if possible. I looked at the file MANIFEST.MF in mxmlc.jar, and saw: Main-Class: flex2.tools.Compiler So, I tried this in CF: Application.com.MXMLc = Application.com.URLClassLoader.LoadJarClass(CompilerPath,

RE: [flexcoders] Flex2B2: cannot convert flash.display::SimpleButton to mx.core.IUIComponent

2006-04-11 Thread Gordon Smith
What does your component extend? If you're extending a Container, you can only use addChild() to content children which implement the IUIComponent interface. In order to support the LayoutManager, a content child has to implement things like measure(), etc. However you should able to

[flexcoders] Question about a particular flex book by Steven Webster and Alistar McCloud

2006-04-11 Thread nostra72
I have the book Developing Rich Clients with Macromedia Flex by Steven Webster and Alistair McCloud. I was wondering if someone could tell me where I would be able to download the samples that are in the book I was told I could do that somewhere? -- Flexcoders Mailing List FAQ:

[flexcoders] F2B2: Canvas clipping problem

2006-04-11 Thread David Moylan
I have a Canvas that I'm programatically adding an image after a drag and drop. The method is a simple call to canvas.addChild(image); I've explicitly set clipContent to true, and scroll policies to auto, but still if the image is dropped slightly to the left or above the canvas (x or y is a

RE: [flexcoders] Question about a particular flex book by Steven Webster and Alistar McCloud

2006-04-11 Thread Tracy Spratt
I found it on google, perhaps you should try that next time. http://www.iterationtwo.com/flexbook/source.html Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, April 11, 2006 4:59 PM To: flexcoders@yahoogroups.com

[flexcoders] AS3 Array Question

2006-04-11 Thread turbo_vb
I'm trying to populate a dataProvider array for a comboBox that contains unique status values from another array, that is used as the dataProvider for a dataGrid. The comboBox is used to filter the dataGrid. The code below works, but I seem to remember seeing this done somewhere that doesn't

Re: [flexcoders] Maintaining documentation in Flex App in property file / xml file

2006-04-11 Thread Oriol Gual
Hi Shweta, Maybe these links can help you:ResourceBundle class:http://livedocs.macromedia.com/labs/1/flex20beta2/langref//mx/resource/ResourceBundle.html Localizing apps:http://livedocs.macromedia.com/labs/1/flex20beta2/1159.htmlOriol 2006/4/11, shweta_parekh [EMAIL PROTECTED]: Hi,How can I

Re: [flexcoders] F2B2: Canvas clipping problem

2006-04-11 Thread Peter Hall
I've come across this too. We found that our content is not clipped as it zooms in via a Move effect. But, if the content requires scrollbars, the clipping is applied. Peter On 4/11/06, David Moylan [EMAIL PROTECTED] wrote: I have a Canvas that I'm programatically adding an image after a

[flexcoders] Re: Possible to invoke Flex2b2 compiler as a Java class?

2006-04-11 Thread Dave Wolf
In any Java JAR there can be a main-class which is the class called when no classname is specified. That main-class will also have a main() method which si the default entry point of the class. That method has the following signature public static void main(String[] args); Where the String[]

[flexcoders] Re: AS3 Array Question

2006-04-11 Thread Doug Lowder
For large arrays, it will be more efficient to do this: 1) Make a copy of the input array, if necessary 2) Sort the array by status 3) Iterate through the array once, storing new status values and skipping the duplicates --- In flexcoders@yahoogroups.com, turbo_vb [EMAIL PROTECTED] wrote:

[flexcoders] RPC Http Calls In Flex HOW TO??/

2006-04-11 Thread Faisal Abid
I am having trouble calling a function via XML-RPC ,, I have called an Http Service and it is running , but when i do this posting.send({blogger_getRecentPosts: 'blogid,user,password,posts'}) I have replaced the params for security resons, anways when i call

RE: [flexcoders] Re: AS3 Array Question

2006-04-11 Thread Gordon Smith
You can use a plain Object as a Set... see the code below. You first put key/value pairs into the Object, but it makes no difference what the values are. You just care about the keys, and the Object's hash table takes care of ensuring that setting a key more than once is harmless. Then you

RE: [flexcoders] um, where is my session?

2006-04-11 Thread Dimitrios Gianninas
Hi, Well it depends on what you are doing. I don't know if this is your first try at building Flex applications or not and if it is, then perhaps this explains why you are asking this question. With building RIAs you no longer need to maintain the state of the application in various

[flexcoders] Flex 2 Object Inspector

2006-04-11 Thread Zane Hejduk
Hi,Is there an easy way to inspect objects in Flex 2? I tried setting an object as the dataProvider for a Tree component but the root just says [object Object]. Is there a component I can use to see what's inside of an object?Thank you.-Z How low will we go? Check out Yahoo! Messenger’s low

[flexcoders] Re: um, where is my session?

2006-04-11 Thread Dave Wolf
I think its too simplistic to think you can always store all state in the RIA. The problem is it makes an assumption that the application is very homogenous. I think you will find that over time these more complex applications are a mixture of Flex, Flash and HTML. The ability to maintain

[flexcoders] RE: OutOfMemory Error

2006-04-11 Thread Kim Reddington
As suggested I ran the compile outside of Tomcat. The application compiled just fine using mxmlc. No out of memory error.So Iguess I can assume the problem lies in Tomcat. I upped the memory allocation in the catalina.bat file to 1024. No luck. I'm still getting the error compiling with

[flexcoders] Flex 2 Object Inspector

2006-04-11 Thread Zane Hejduk
Hi,Is there an easy way to inspect objects in Flex 2? Yahoo! Messenger with Voice. PC-to-Phone calls for ridiculously low rates. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] Flex 2 Object Inspector

2006-04-11 Thread Zane Hejduk
Sorry. Don't know why this went twice.-ZZane Hejduk [EMAIL PROTECTED] wrote:Hi,Is there an easy way to inspect objects in Flex 2? Yahoo! Messenger with Voice. PC-to-Phone calls for ridiculously low rates. Love cheap thrills? Enjoy PC-to-Phone calls to 30+ countries for just

[flexcoders] Flex1.5: print an element in Accordion - strange behavior

2006-04-11 Thread wujunjr
print elements function works well in most cases. But things go wrong when I try to print an element within an Accordion element. The size of the printed image become extremly small in first Accordion. In second Accordion, the size is normal, but position is wrong (too much margin in paper).

[flexcoders] WebService to RemoteObject, Why do I get [object Object] from the RO but it work

2006-04-11 Thread angelosalsa
Hi, I have a TileList that gets populated from a WebService search results and that works fine, I wanted to change it to a RemoteObject and for some reason I am getting [object Object] as results in the TileList, here is what I have in the Webservice: mx:Model id=searchCriteria filter /