RE: [Junk E-Mail - LOW] [flexcoders] Re: Choice of backend systems - which provides

2006-08-25 Thread Franck de Bruijn
True. But the processing of the XML is only part of a request. If a certain query itself takes 5 seconds to complete, you can do your best in the remoting part of the transaction, but it will not bring you much. Cheers, Franck From: flexcoders@yahoogroups.com

RE: [Junk E-Mail - LOW] [flexcoders] Re: Choice of backend systems - which provides

2006-08-25 Thread Franck de Bruijn
Its nice to hear this feedback. I am using Axis successfully, but I remember that it indeed took some time to get to full grips with it. Some other post also mentioned (I think it was Ben) that real world examples/tutorials of using web services were not present. And that includes

RE: [Junk E-Mail - LOW] [flexcoders] Re: Choice of backend systems - which provides

2006-08-25 Thread Bjorn Schultheiss
Hi Mark, I am curious, what is the reasoning for that decision? Wasn't WebOrb originally for Java? Regards, Bjorn Schultheiss Senior Flash Developer QDC Technologies From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark PillerSent: Friday, 25 August 2006

RE: [Junk E-Mail - LOW] [flexcoders] Re: Choice of backend systems - which provides

2006-08-25 Thread Bjorn Schultheiss
Hi Franck, Although your post was directed at Ted my opinion is that for UI performance, transferring XML is justtoo slow. Having to construct XML on the server, send it and then parse it in Flex is just too much hassle without any benefits over the AMF. The main attraction of AMF3 for

RE: [flexcoders] Passing data from JSP to Flex

2006-08-25 Thread Seth Hodgson
Hi Anas, After you've logged in via your JSP login page you'll have an authenticated HttpSession on the server. If you then visit an mxml app hosted within the same web application (under the same context root) any remoting/messaging/data service interaction the mxml app has with the server

RE: [Junk E-Mail - LOW] [flexcoders] Re: Choice of backend systems - which provides

2006-08-25 Thread Bjorn Schultheiss
Hi Franck, I guess when faced with the situation of the back-end technology with exposed webservicesis already in place and the UI having to conform to it then that does not leave you much option then having to use XML. In an ideal development process for Client and Server side to make

Re: [flexcoders] Items Invisible in ComboBox

2006-08-25 Thread Carlos Rovira
It looks like and old bud in flash v2 components, but I never get it in flex 2...On 8/24/06, stevehousefl [EMAIL PROTECTED] wrote: I have a very standard combobox control: mx:ComboBox id=cbStatus dataProvider={statusesWithAll} labelField=sStatus

[flexcoders] Re: Passing data from JSP to Flex

2006-08-25 Thread Tim Hoff
Hi Seth, Thank you for your thoughts. It's good to hear new voices. Being a .Net guy I learned something that appplied to my nook. Thanks again, Tim --- In flexcoders@yahoogroups.com, Seth Hodgson [EMAIL PROTECTED] wrote: Hi Anas, After you've logged in via your JSP login page you'll

Re: [flexcoders] Run Swf File in flash player.

2006-08-25 Thread Samuel Reuben
I don't get it Kumar, Are you trying to open a stand alone swf from a IE browser (Explorer) by using SWFLoader??? That is clearly not possible. or are you trying to open it from your computer's file Explorer? That is possible if you have the stand alone player on your machine... You could do a

Re: [flexcoders] Embedded SWF as backgroundImage causing mouseOut event to dispatch

2006-08-25 Thread Samuel Reuben
have you tried using rollOver and rollOut? Please let me know if it works, -sam On 8/24/06, Brendan Meutzner [EMAIL PROTECTED] wrote: Hi All,I've created a container which contains a couple of sub-containers that have SWF symbols set to the backgroundImage. Problem is occurring when I

[flexcoders] Re: Items Invisible in ComboBox

2006-08-25 Thread Tim Hoff
Hey Carlos, It's hard to say without seeing the application. I've experienced problems like this. The solution was usually looking for interference from other actions; events that confuse the renderer and such. If your component works, stand-alone, look outward. -TH --- In

Re: [flexcoders] Re: Items Invisible in ComboBox

2006-08-25 Thread Carlos Rovira
Steve should post an example that shows the bug in a simple way and let people at Adobe fix the bugOn 8/25/06, Tim Hoff [EMAIL PROTECTED] wrote: Hey Carlos, It's hard to say without seeing the application. I've experienced problems like this. The solution

[flexcoders] Disable items in a TileList using a CheckBox

2006-08-25 Thread Phil Marston
Hi All, I'm sure this must be pretty easy, but I'm suffering a mental block! :-/ I want some of the items in a tilelist to become inactive as a result of selecting a checkbox. The items in the tilelist have a property of category that corresponds with the checkbox label so pseudocode would

[flexcoders] Re: Items Invisible in ComboBox

2006-08-25 Thread Tim Hoff
You're right, my bad Carlos. Wrong name on the reply. Cheers. --- In flexcoders@yahoogroups.com, Carlos Rovira [EMAIL PROTECTED] wrote: Steve should post an example that shows the bug in a simple way and let people at Adobe fix the bug On 8/25/06, Tim Hoff [EMAIL PROTECTED] wrote:

Re: [flexcoders] Re: Items Invisible in ComboBox

2006-08-25 Thread Carlos Rovira
Don' worry Tim :)On 8/25/06, Tim Hoff [EMAIL PROTECTED] wrote: You're right, my bad Carlos. Wrong name on the reply. Cheers. --- In flexcoders@yahoogroups.com, Carlos Rovira [EMAIL PROTECTED] wrote: Steve should post an example that shows the bug in a

[flexcoders] Re: Run Swf File in flash player.

2006-08-25 Thread flexnewbie06
Kumar, SWFLoader loads the requested SWF inside your flex app, if that is what you are trying to achieve then the following code will load an SWF that is located in the same directory as your .mxml file. Just take out the @Embed(). mx:SWFLoader id=Load source=myswf.swf autoLoad=true

Re: [flexcoders] CairngormEvent Antipattern

2006-08-25 Thread Andrea Varga
e_baggg wrote: Hello group- I hadn't seen a previous post regarding this explicity so I wrote a small blog about it. It helps reduce the #of classes that get created when using Cairngorm (a big issue with me since the client is VERY picky with their swf file sizes). This blog shows the code for

RE: [flexcoders] Run Swf File in flash player.

2006-08-25 Thread Kumar
Hi Sam, Thanks for your response. I am trying to open SWF file in flash player that is installed in my system. I do not want to open file in Explorer. Please tell me how we can do it. Regards, Kumar From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: XML editor (contd)

2006-08-25 Thread John Mazzocchi
Tim, hi. Ta. Now just to figure out how to do that ... :) J -Original Message- From: Tim Hoff [mailto:[EMAIL PROTECTED] Sent: Friday, 25 August 2006 3:22 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: XML editor (contd) Hi John, Sure, the data object contains all of the

[flexcoders] How to assign NetStream to VideoDisplay component?

2006-08-25 Thread ?????? ????????
Hi all I have Flex application which connects to FMS 2 and retrieves NetStream. How can I use VideoDisplay or other resizable component instead Video object for displaying media? Thanks Mozilla By __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] Building Flex 2 project with Maven

2006-08-25 Thread lfontvielle
We are developing large Java applications. They are composed of multiple Java projects implemented by different teams. We use Maven (http://maven.apache.org/) to build our projects. The projects can be built outside eclipse on an integration server as part of a Maven project. Jar/war files are

[flexcoders] Re: How to render HTML text in data grid column?

2006-08-25 Thread Oscar
Hi David, I am glad that flexcoders is starting to work for you. I've been helped for other people in the list, and now that I know more about Flex, I am happy to help. See the example below, I think it does what you need. Note that I change the Label for a Text tag. I noticed that the

Re: [flexcoders] CairngormEvent Antipattern

2006-08-25 Thread Martin Wood
Andrea Varga wrote: e_baggg wrote: Hello group- I hadn't seen a previous post regarding this explicity so I wrote a small blog about it. It helps reduce the #of classes that get created when using Cairngorm (a big issue with me since the client is VERY picky with their swf file sizes).

[flexcoders] Re: CairngormEvent Antipattern

2006-08-25 Thread e_baggg
Andi- Nothing changes with the FrontController and Commands. You would still have 3 separate commands (1 each for add, update, delete). Remember, the generic CairngormEvent classes calls: super(commandName) so the dispatchEvent() for each call would like this: dispatchEvent(new

[flexcoders] DataGrid, rowCount, variableRowHeight and wordWrap

2006-08-25 Thread Shannon Hicks
I have a DataGrid that I want to always show all 5 rows it will have. The problem is, I have variableRowHeight set to true, and when the grid gets populated with something that makes the row grow in height (or the window size changes, etc), the scrollbars appear. I'd like the grid to

[flexcoders] POP3 by Socket

2006-08-25 Thread Santo
Bom dia pessoal, Hi folks, I want to know if anyone of you try make the POP3 by Socket example, from IFBIN(Flex by Example), work with final version of Flex 2. Now that he´s free, I try to test something but it just don´t work. Don´t give me any errors. Seems to be a security issue, like

[flexcoders] If statment runs before remote call returns data

2006-08-25 Thread David Brown
I am writting a login function that calls a remote cfc and returns data. Based on the length of lastresult either show different view stack child or turn visiable on for label that displays no user found The remote call works, but I have to press login button twice to display the no user

[flexcoders] Re: XML editor (contd)

2006-08-25 Thread Tim Hoff
Before getting long-winded, what's your goal? Using the same itemRenderer/Editor for every column in a DataGrid sounds suspicious, but certainly a challenge. I'm out of time right now, but happy to help later. (Since I can't make MAX this year, I'm off to Vegas this weekend instead. Wish I

Re: [flexcoders] Items Invisible in ComboBox

2006-08-25 Thread Nate Hardt
I've seen this exact same behavior in a ComboBox that is in a DataGrid. I didn't have to time to fully explore the issue so I just set the rowCount property to more items than I had in the ComboBox. The problem didn't happen for me without scrolling in the ComboBox. Nate On Aug 24, 2006,

Re: [flexcoders] What is the best invalidation technique for non-UI classes?

2006-08-25 Thread Sergey Kovalyov
Any source example? What delay do you use?On 8/24/06, Matt Chotin [EMAIL PROTECTED] wrote: We use a Timer in our non-visual code for this. Matt __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

RE: [flexcoders] How to assign NetStream to VideoDisplay component?

2006-08-25 Thread Stephen Gilson
Hi, There is an example in the VideoDisplay controldoc showing how to connect to FMS: http://livedocs.macromedia.com/flex/2/docs/0546.html I'm not sure if this is exactly your situation, but it might get you started. Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Re: If statment runs before remote call returns data

2006-08-25 Thread Oscar
You can do something like this : // This will run only when the call to the service is back ... public function OnResult(event:ResultsEvent):void { // Do your stuff here } mx:RemoteObject id=classifiedCFC destination=ColdFusion source=applications.Classifieds.CFCs.classifiedapp

[flexcoders] Problem: 500 No configured channel has an endpoint path '/flex2gateway/'

2006-08-25 Thread Joost Nuijten
Hi there, We are trying to install a Flex2 application on a ColdFusion MX 7.02 J2EE edition (that runs on JRun4). The result is an error: "500 No configured channel has an endpoint path '/flex2gateway/'" Can't find much information about this. Anybody? Thanks! Cheers, Joost

[flexcoders] FDMS: check, if an item exists on the client?

2006-08-25 Thread Dirk Eismann
Is there any way in FDMS to get an item without really going to the server if it's on the client already? I found that calling dataService.getItem(uid) always goes to the server, even if the item in question is available on the client. This is unnecessary overhead IMHO if the item is available

RE: [Junk E-Mail - LOW] [flexcoders] Problem: 500 No configured channel has an endpoint path '/flex2gateway/'

2006-08-25 Thread Shannon Hicks
Can you double-check that you really are running 7.0.2? The error sounds like it's saying the flex2gateway isn't configured, which would mean it was taken out of the config file, the 7.0.2 upgrade didn't put it in, or you're not running 7.0.2, and I'd say the latter two are most likely :)

Re: [Junk E-Mail - LOW] [flexcoders] Re: Choice of backend systems - which provides

2006-08-25 Thread Evert | Collab
A webservice commonly does this: * authentication (optional) * a service/method is invoked with an optional set of arguments * the service returns a result Why not abstract your service system to allow SOAP + REST + XML-RPC + JSON + AMF ? As long as the interface is abstracted, it doesnt

[flexcoders] Re: Flex with Coldfusion Beginner

2006-08-25 Thread Oscar
You can bind the result of your WebService to an ArrayCollection and then use it as the dataprovider for your Datagrid. Here is a simple of example of using an ArrayCollection as the datagrid dataprovider. ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] Still Getting History Manager Security Sandbox Errors

2006-08-25 Thread Battershall, Jeff
I had thought that I had worked around this, but it appears I was wrong. I am running a project using a virtual host defined in my Hosts file and Apache. I've never had this issue with 1.5. I keep getting Local Connection Security Sandbox errors. What's odd is it seems intermittent -

[flexcoders] bug when loading a CFReport inside SWFLoader

2006-08-25 Thread João Fernandes
Hi there, Im trying to load a SWF from a cfreport  and Im getting this behaviour Is there a way to avoid this 2 tripes? Thanks, João Fernandes __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

RE: [flexcoders] POP3 by Socket

2006-08-25 Thread Ted Patrick
Rogerio, http://www.crossdomainxml.org http://www.crossdomainxml.org With Socket operations you will need to have a crossdomain.xml file on the server you are connecting to, in this case the POP server! This particular crossdomain.xml file needs to permit access to use

[flexcoders] Re: add additional data to list-based drag and drop?

2006-08-25 Thread Michael Ritchie
I had a similar need using two datagrid components. I wanted to drag from datagrid one to datagrid two, and also drag/drop within datagrid two. I had to determine the names of each datagrid to allow/deny drag and drop targets. You can check out my example and source code here:

RE: [flexcoders] If statment runs before remote call returns data

2006-08-25 Thread Tracy Spratt
All data access operation in Flex are asynchronous. You can not access the result in the same function that invokes the send/operation call. You must use an event handler function run by the result event, or use binding. Tracy From: flexcoders@yahoogroups.com

RE: [flexcoders] POP3 by Socket

2006-08-25 Thread Tracy Spratt
Ted, that is a handy site. A suggestion:  An issue that is not obvious to those who are not web/network administratiors is: Where do I put the crossdomain.xml file.  While I bet this is discussed on more than one of the links you provide, consider a quick paragraph on the subject,

[flexcoders] UI Problem : HorizontalScrollPolicy and VerticalScrollPolicy

2006-08-25 Thread paromitadey
Hi All, I am new to Flex and I need urgent help. I am trying to control the Horizontal and Vertical scroll policies of different layout controls (sav VBox, HBox etc.) using simple actionscript codes. Default I have the scroll policy 'off' but on certain condition (click of a button), I wish

[flexcoders] Re: Building Flex 2 project with Maven

2006-08-25 Thread kaleb_pederson
Laurent, We would definitely be interesting in having a maven plugin available for Flex. We currently use maven for our projects but use an ant script to handle building the flex pieces. Tighter integration would be much nicer. Thanks --Kaleb --- In flexcoders@yahoogroups.com, lfontvielle

[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] ssh client using Flex 2/ActionScript 3

2006-08-25 Thread ajitparthan
The exmple of building a telnet client on livedocs using the socket api is really cool. I was wondering if it is possible to build a ssh client using similar techniques- the encryption and key exchange algorithm seems fairly complicated. This is within the context of a project I am doing where we

[flexcoders] restrict length (maxChars) in an editable combobox

2006-08-25 Thread Lisa Nelson
Anyone know how I can restrict the length of input in an editable combobox? -- 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

RE: [flexcoders] Re: Items Invisible in ComboBox

2006-08-25 Thread Lisa Nelson
I had this problem just yesterday. In my case, I had some bad test data with data in the labelFields that was too long. I nuked those records and haven't had the problem since. But it isn't a completely satisfactory explanation, because other records with equally long data appeared just

RE: [flexcoders] FDMS: check, if an item exists on the client?

2006-08-25 Thread Seth Hodgson
Hi Dirk, getItem() will always fetch the current state of the requested object from the server and update the local instance with the result if it exists. If you don't have auto sync enabled (server pushed updates) this is how you can periodically refresh your local instance. If you call

[flexcoders] Weird problem with my search.

2006-08-25 Thread Jeremy Rottman
In my application I have a setup a search screen. I was asked to add in two more search parameters, House Number and Street. In all I have 3 search parameters, searchTerm, searchKey, and seachStatus. The searchTerm, is the term they are trying to find, the key is the parameter they are searching

[flexcoders] i can not find flex 1.5 SDK

2006-08-25 Thread dan_marcu_eee
Hi, guys i really need the Flex 1.5 SDK and i can not find it anywhere. Macromedia is gone, and adobe is really cold on this matter. Does anyone of you have the Flex 1.5 SDK ? And if so can you send it over? on email, or up it on an FTP or something? I hope you keep archives and someone from this

RE: [flexcoders] i can not find flex 1.5 SDK

2006-08-25 Thread Battershall, Jeff
Flex 1.5 didn't have an SDK to my knowledge. The entire licensing scheme of Flex has changed between versions. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dan_marcu_eee Sent: Friday, August 25, 2006 1:33 PM To:

Re: [flexcoders] POP3 by Socket

2006-08-25 Thread Thijs Triemstra | Collab
The link to flickr's crossdomain.xml seems to be broken..ThijsOp 25-aug-2006, om 20:20 heeft Ted Patrick het volgende geschreven:I will get that added ASAP. Great feedback.Anyone else?Ted PatrickFlex EvangelistAdobe Systems IncorporatedFrom: [EMAIL

RE: [flexcoders] POP3 by Socket

2006-08-25 Thread Tom Lee
Sometimes it's not obvious from debugging that the lack of a crossdomain.xml file is at issue. Perhaps you could list some common symptoms of malformed or non-existent crossdomain.xml files? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ted

Re: [flexcoders] POP3 by Socket

2006-08-25 Thread Clint Modien
I would also include this article...http://www.martijndevisser.com/blog/article/why-crossdomainxml-is-a-good-thing It's gotta kewl flash slide show that explains it pretty well.On 8/25/06, Ted Patrick [EMAIL PROTECTED] wrote: I will get that added ASAP. Great

RE: [flexcoders] POP3 by Socket

2006-08-25 Thread Ted Patrick
Adding that as well. Good one. Ted Patrick Flex Evangelist Adobe Systems Incorporated From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Clint Modien Sent: Friday, August 25, 2006 11:44 AM To: flexcoders@yahoogroups.com Subject: Re:

[flexcoders] Re: i can not find flex 1.5 SDK

2006-08-25 Thread dan_marcu_eee
On adobe.com there are some traces of flex 1.5 SDK. From that kit i need the executable used to compile SWF's. I can not use the one in flex 2 sdk because it seems it does not recognize the source code and i get compile errors. So i really need it badly to complete one of my projects. If anyone

[flexcoders] menubar icon

2006-08-25 Thread Doug Arthur
Can someone send me an example of an icon in a menubar? - Doug __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED

[flexcoders] Re: Asynchronous TestCase.setUp in FlexUnit (and another use case)

2006-08-25 Thread kaleb_pederson
Thanks Matt! Here's a real-world example of where the fixed ordering of the addAsync calls just bit me: I'm testing what is essentially an HTTPService, that could throw a result or a fault. I instinctively wrote the following: public function testChangeUser():void { // cp is my service

Re: [flexcoders] bug when loading a CFReport inside SWFLoader

2006-08-25 Thread Nick Collins
I've been trying to figure out the same issue. The only thing I've been able to do that seems to work alright is use the IFRAME component to embed it as HTML, but that has a whole slew of issues in and of itself. On 8/25/06, João Fernandes [EMAIL PROTECTED] wrote:

[flexcoders] Launch Failed

2006-08-25 Thread Ken Bromberger
Hi All, When I add an additional application file to my project and try to launch it, I get an error: Launch Failed File not found: It seems as though Flex is not creating the HTML file for the swf. Is there a fix for this Thanks - Ken __._,_.___

Re: [flexcoders] Re: i can not find flex 1.5 SDK

2006-08-25 Thread Douglas Knudsen
If you really need this then you will need to call Adobe. Get your wallet out before hand though, and be prepared to empty it. DKOn 8/25/06, dan_marcu_eee [EMAIL PROTECTED] wrote:On adobe.com there are some traces of flex 1.5 SDK. From that kit ineed the executable used to compile SWF's. I

RE: [flexcoders] Re: i can not find flex 1.5 SDK

2006-08-25 Thread Battershall, Jeff
Dan, Yes, there was a command line compiler that shipped with Flex - but if you have a Flex 1.5 license, you should have it. Last time I checked, you needed a Flex license to build/deploy in Flex 1.5. Thankfully the entire business model has changed with Flex 2. Upgrading AS2 code to AS3 is not

[flexcoders] Re: Blitz XRay

2006-08-25 Thread Renaun Erickson
Thanks, that is what I thought, just got confused with the talk of Flex connector. Any plans for a AS3 connnector? --- In flexcoders@yahoogroups.com, John Grden [EMAIL PROTECTED] wrote: Sorry, it doesn't support AS3 yet. 1.6 connector is for AS2 applications only. The Xray interface that

Re: [flexcoders] Re: i can not find flex 1.5 SDK

2006-08-25 Thread greg dunf
the flex 1.5 SDK should be free, that is what they told me whan i talked about the Flex 2 SDK! I Got somthein on may email, hope it will help! On 8/25/06, Battershall, Jeff [EMAIL PROTECTED] wrote: Dan, Yes, there was a command line compiler that shipped

Re: [flexcoders] Re: Blitz XRay

2006-08-25 Thread John Grden
LOL yep! man, lately, that's all I've been hearing about...guess I should get on it ;)On 8/25/06, Renaun Erickson [EMAIL PROTECTED] wrote: Thanks, that is what I thought, just got confused with the talk of Flex connector. Any plans for a AS3 connnector? ---

RE: [flexcoders] POP3 by Socket

2006-08-25 Thread Dirk Eismann
Don't have the correct syntax in front of me, but it should also be noted that by calling System.loadPolicyFile(http://www.foo.com/some/nested/folder/crossdomain.xml) or somthing similar, Flash Player can load crossdomain files that do not live in the root of the server. Also, by using

RE: [flexcoders] Launch Failed

2006-08-25 Thread Mark Rausch
Try this open project properties, turn off Generate HTML wrapper, apply the change, then turn it back on. Hope this helps, Mark From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Ken Bromberger Sent: Friday, August 25, 2006 12:24 PM To:

[flexcoders] Specifying LineSeries itemRenderer with Actionscript

2006-08-25 Thread j_sevlie
I have some LineSeries charts that are generated all through ActionScript (because the number of lines I need is not know until run-time). --- CODE START --- var seriesArray:Array = new Array(); var i:int; var marketShareData:ArrayCollection = new ArrayCollection; marketShareData =

RE: [flexcoders] Launch Failed

2006-08-25 Thread Ken Bromberger
Simple enough that works. Thanks! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Rausch Sent: Friday, August 25, 2006 1:10 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Launch Failed Try this open project properties, turn off

[flexcoders] Adding Components on the Fly

2006-08-25 Thread Faisal Abid
I have created a simple component which extends the image component, and i Want to add it to the application on the fly. Eg when i clikc start, flex will create the component for me and then i can interact with it, how can this be done. __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] SWFLoader doesn't work inside custom component

2006-08-25 Thread fernando_onelx
Hello guys, I'm playing a little with the TileList.itemRenderer so i built a simpl custom component but it doesn't seem to work. Here's my component code: package { import mx.core.UIComponent; import mx.controls.listClasses.BaseListData; import

Re: [flexcoders] Icons in menu - not working

2006-08-25 Thread Doug Arthur
Can someone please send me this same file as an example? Thanks! - Doug On 6/28/06, Kelly Birr [EMAIL PROTECTED] wrote: Thank you, that is the solution I cam up with also. It's nice to know that this is not the intended behavior, and that hopefully some day I can go back to static

Re: [flexcoders] Org Chart

2006-08-25 Thread Douglas Knudsen
ok, here it ishttp://www.cubicleman.com/2006/08/25/cmorgchart-releasedfinally/nothing outstandingly spectacular for sure, but free code and another Cairngorm example. DKOn 7/18/06, Douglas Knudsen [EMAIL PROTECTED] wrote: np! darn hot out these days and all, eh? DKOn 7/18/06, Paul Andrews

[flexcoders] Selecting a Leaf in a Tree

2006-08-25 Thread Ethan Miller
Greetings - I have a tree whose dataProvider is some E4X XML. I'd simply like to programatically open the tree to and select a given leaf. Can't figure out however what property to set the xml reference to. I'd expected being able to do something like: myTree.selectedItem =

RE: [flexcoders] Adding Components on the Fly

2006-08-25 Thread Gordon Smith
mx:Button click=clickHandler(event)/ mx:Script private function clickHandler(event:Event):void { var myImage:MyImage = new MyImage(); myImage.source = ...; addChild(myImage); } /mx:Script - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] menubar icon

2006-08-25 Thread Tracy Spratt
I never could get this to work. Id like to see a simple working sample app myself. Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Doug Arthur Sent: Friday, August 25, 2006 2:46 PM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Component access to dynamic application variable

2006-08-25 Thread qnotemedia
I'm currently learning how to utilize components. In a slideshow app, I have a thumbnail component (image) that is rendered by a TileList in the main application. dataProvider in the TileList is being used to supply the path, image name, etc, by sending a repeating node of an xml file.

[flexcoders] How can I tell an AreaChart data tip to display?

2006-08-25 Thread Mark
I'm creating an AreaChart and I want the DataTip to appear whenever the mouse rolls over the Series. I know that I can set showDataTips=true on the Chart but the DataTip will only appear if the mouse is directly over the data point. I've extended AreaSeries and captured the mouseOver and

[flexcoders] Re: Blitz XRay

2006-08-25 Thread Renaun Erickson
--- In flexcoders@yahoogroups.com, John Grden [EMAIL PROTECTED] wrote: LOL yep! man, lately, that's all I've been hearing about...guess I should get on it ;) On 8/25/06, Renaun Erickson [EMAIL PROTECTED] wrote: Lol, good luck :) Thanks, that is what I thought, just got confused with

[flexcoders] Re: Specifying LineSeries itemRenderer with Actionscript

2006-08-25 Thread pasflex
Try something like: columnSeries.setStyle(itemRenderer, new ClassFactory (DiamondItemRenderer)); --- In flexcoders@yahoogroups.com, j_sevlie [EMAIL PROTECTED] wrote: I have some LineSeries charts that are generated all through ActionScript (because the number of lines I need is not know until

[flexcoders] Custom server validation

2006-08-25 Thread Mike Nimer
So I recently came upon an interesting situation. I needed to validate a form entry against data on the server. For example, I wanted to query the db to make sure the quantity that the user typed in was a validamount with the stock on hand. My initial thought was that I could just extend the

RE: [flexcoders] restrict length (maxChars) in an editable combobox

2006-08-25 Thread Lisa Nelson
Resending this as I never saw it show up. -Original Message- From: Lisa Nelson Sent: Friday, August 25, 2006 8:48 To: 'flexcoders@yahoogroups.com' Subject: [flexcoders] restrict length (maxChars) in an editable combobox Anyone know how I can restrict the length of input in an editable

Re: [flexcoders] restrict length (maxChars) in an editable combobox

2006-08-25 Thread Daniel Freiman
I haven't spent a lot of time on this, but my guess is that you're going to have to extend the combobox. From their you'll have access to textInput, which you can call getTextField() on, which returns a UITextField that has a maxChars Property. On 8/25/06, Lisa Nelson [EMAIL PROTECTED] wrote:

[flexcoders] flex-config.xml in Flexbuilder

2006-08-25 Thread Louie Penaflor
Does anyone know where flex-config.xml is for the flex builder? I want to enable AS output when mxml compiles thanks. Louie __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] flex-config.xml in Flexbuilder

2006-08-25 Thread Carson Hager
You now include this parameter in the project build options. There is a text input for command line parameters. Carson Carson HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: [EMAIL PROTECTED]Office: 866-CYNERGYMobile:

RE: [flexcoders] Adding Components on the Fly

2006-08-25 Thread Faisal Abid
Thank you for that, a little late but i also figured out something from yours, i was using the canvas.addchild, but you showed me i didnt have to , so thanks alot. From: "Gordon Smith" [EMAIL PROTECTED]Sent: Friday, August 25, 2006 5:50 PMTo:

RE: [flexcoders] Items Invisible in ComboBox

2006-08-25 Thread Dimitrios Gianninas
I experienced this too at one point and it was because one of the items was "null" Remove it and back to normal. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of stevehouseflSent: Thursday, August 24,

RE: [flexcoders] FDMS: check, if an item exists on the client?

2006-08-25 Thread Dimitrios Gianninas
I think what you are looking for is: myArrayCollection.getItem( x ); Assuming myArrayCollection was populated by the fill() method of a DataService. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dirk

RE: [flexcoders] Re: i can not find flex 1.5 SDK

2006-08-25 Thread Tracy Spratt
I would expect the trial and developer licenses to still be available for free. Converting a large 1.5 app to 2.0 can be a very difficult process. Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Douglas Knudsen Sent: Friday,

Re: [flexcoders] Flex with Coldfusion Beginner

2006-08-25 Thread Mike Nimer
Check out the flex docs on the DataGrid.dataProvider property. Basically you'll assign the result from CF to a variable and at the same time you'll bind the dataGrid to this variable. Flex will take care of the rest. hth, ---nimer - Original Message From: plucka70 [EMAIL PROTECTED]To:

RE: [Junk E-Mail - LOW] [flexcoders] Re: Choice of backend systems - which provides

2006-08-25 Thread Tom Lee
Speaking of that Ive always wondered, is the gzip decompression handled by the browser, or by the Flash player? Ive assumed it was the browser (HTTP Compression, right?). That being the case, arent there some browsers which dont have gzip support, or are they all dead? From:

RE: [flexcoders] Re: XML editor (contd)

2006-08-25 Thread Tracy Spratt
John I wrote a sample app to demonstrate using HTTPService to load/save xml files on the server. It uses a Tree to display the xml and provides for editing and deleting the selected node and adding nodes. It might be of some use to you, so Ill send it directly to you. Tracy

RE: [Junk E-Mail - LOW] [flexcoders] Re: Choice of backend systems - which provides

2006-08-25 Thread Franck de Bruijn
An architect I closely work with always says: ‘Each extra component introduces complexity’. I think that is true. Each component ‘in the middle’ makes a system harder to understand, debug, maintain, deploy and requires an additional level of competence. Unless it has true added value,

RE: [Junk E-Mail - LOW] [flexcoders] Re: Flex with Coldfusion Beginner

2006-08-25 Thread Shannon Hicks
At the risk of invoking wrath from the "web services vs AMF" thread, if you're using ColdFusion, you probably shouldn't be using web services. You should be using Remote Objects (CF version 7.0.2 required). I googled, and this was the best example I could come up with in 30 seconds:

RE: [flexcoders] POP3 by Socket

2006-08-25 Thread Ted Patrick
Ok, good one too. Ted Patrick Flex Evangelist Adobe Systems Incorporated From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tom Lee Sent: Friday, August 25, 2006 11:44 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] POP3 by

Re: [flexcoders] i can not find flex 1.5 SDK

2006-08-25 Thread Johannes Nel
google flex 1.5 swd and decompile. its sorta the source of the 1.5 framework, but it doesn't compile, but could help you on your way.On 8/25/06, Battershall, Jeff [EMAIL PROTECTED] wrote: Flex 1.5 didn't have an SDK to my knowledge.The entire licensing scheme of Flex has changed between

Re: [flexcoders] Re: i can not find flex 1.5 SDK

2006-08-25 Thread Johannes Nel
you mean the compiler...heh. yeah mate, that ain't dodgy at all. On 8/25/06, dan_marcu_eee [EMAIL PROTECTED] wrote:On adobe.com there are some traces of flex 1.5 SDK. From that kit ineed the executable used to compile SWF's. I can not use the one inflex 2 sdk because it seems it does not

Re: [flexcoders] Functionality Between Components and the Main Application

2006-08-25 Thread Johannes Nel
dispatch an event when a button gets clicked. let the container listen to it on the toolbar. On 8/23/06, Megan [EMAIL PROTECTED] wrote:Hi! I've been trying to figure out how to do this sort of thing, and thought I'd ask before messing with it anymore.I have a toolbar that's in its own

  1   2   >