RE: [flexcoders] Flex crashing @ compilation time

2006-11-29 Thread Matt Chotin
40 applications is a whole lotta applications to compile, and I believe the project is going to compile all of them. Maybe you could create different projects with the applications and use a library project for shared code? Less would need to be re-compiled each time. Matt

[flexcoders] Using a resize event 1 time only

2006-11-29 Thread {reduxdj}
I have a VBox with a resize effect, how do I stop the resize events after my component resizes the first time. Thanks, patrick

[flexcoders] lockedColumnCount lockedRowCount

2006-11-29 Thread devisbalsemin
Hi to all, it's possibile to write a total into my lockeRowCount? also I wish that my dataProvider start from rowCount 3 into a DataGrid Thanks for your help Devis mx:DataGrid dataProvider={conto} width=100% height=100%

[flexcoders] Cairngorm ServiceLocater Problem

2006-11-29 Thread sinacapho
Dear all, I am new to Cairngorm and for now i am writing a program using flex and i have decided to use Cairngorm. I have created subsection for each cairngorm state (business,Commands,Event). I have created sub folder in business for handling different service . But

[flexcoders] Re: Problem with DataGrid (bug or not)

2006-11-29 Thread Boris Furman
Here is another example of this problem. ?xml version=1.0? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; xmlns:local=* height=100% width=100% mx:Script ![CDATA[ [Bindable] public var myDP:Array = [ {Name: John Doe, Photo: john_doe.jpg, Phone: 555-55-55}, {Name: John Doe, Photo:

[flexcoders] Re: displaying an array result as a pop up dialog

2006-11-29 Thread troy.kakulupia
Hi, your can try popupManager sample code lists below: import mx.managers.PopUpManager; public function onSendResult(result:Array):void{ var str:String = result.toString(); string_res.htmlText=

[flexcoders] Re: rotation of vertical axis title

2006-11-29 Thread troy.kakulupia
Hi, I also met the same requirment. unfortunately, the answer is no. And I use the another way to instead: 1 set show vertical axis title to false 2 create a HBox containing both a TextField and the chart 3 set the position of the drawing TextField to vertical 4 refine the position. Anyone who

[flexcoders] Re: creating line chart using action script

2006-11-29 Thread troy.kakulupia
You may new a linechart firstly. var lineChart:LineChart = new LineChart(); set the properties here; this.addChild(lineChart); --- In flexcoders@yahoogroups.com, arpan srivastava [EMAIL PROTECTED] wrote: Hi , I need to draw a linechart using only actionscript. I have done following:

[flexcoders] Image Slide Show(Quick One)

2006-11-29 Thread KP
Hi All, Well I want to know some simple approach for creating an image slide show. I have an XML file containing all path and source of the images. I don't want to give any more functionality except that images should changes every 5sec. Can some one suggest a quick and easy

Re: [flexcoders] Text instance does not calculate its height properly when in scrollable Box

2006-11-29 Thread Lachlan Cotter
Hi Sergey, I'm not sure what you mean by 'cut by mask'. Is the text being obscured? When I tried your example code it performed as expected without issues. Cheers, Lach On 27/11/2006, at 10:25 PM, Sergey Kovalyov wrote: Hi All! When Text instance is in scrollable Box and user scrolls

[flexcoders] ListBase.as getting called after Drop to Datagrid--Preventing the Drop???

2006-11-29 Thread wayneposner
I'm trying to drag-and-drop from a tree to a datagrid. I've followed the examples to try to achieve this, but whenever I drag over the datagrid, it refuses to accept the drop. The datagrid acts like the dropEnabled flag is set to false. I've traced the code and despite the fact that I have a

[flexcoders] Re: Hands-on charts

2006-11-29 Thread mark_g_wales
Tom, I tried to take an excerpt of some existing code so there may be more imports, etc. that are needed. Hopefully this is the effect you were looking for... ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; xmlns:local=* mx:Script

Re: [flexcoders] Binding to a custom method: possible?

2006-11-29 Thread Lachlan Cotter
Hi Ben, Your problem is probably that you have not told Flex when it needs to fire the binding. The binding mechanism works by broadcasting events from the setter methods of bindable properties. If there is no direct setter involved, then Flex does not automatically know to refresh the

Re: [flexcoders] Flex crashing @ compilation time

2006-11-29 Thread Rich Tretola
Try uchecking Build Automatically under Window - Preferences - General - Workspace Rich On 11/29/06, Matt Chotin [EMAIL PROTECTED] wrote: 40 applications is a whole lotta applications to compile, and I believe the project is going to compile all of them. Maybe you could create different

Re: [flexcoders] displaying an array result as a pop up dialog

2006-11-29 Thread Lachlan Cotter
Sounds like you want to say: Alert.show(your message here) That will give you a simple pop-up with your confirmation text. If you want to use a custom component for your pop-up, investigate the PopupManager class. Cheers, Lach On 28/11/2006, at 10:41 PM, munene_uk wrote: I have built a

[flexcoders] Where is my vertical scroll bar?

2006-11-29 Thread Avinoam Aharoni
Hello good people, I'm placing titlewindows on main application canvas in a way that exceeds the application canvas vertical boundaries. I expect a vertical scrollbar to be automatically displayed, but that does not happen. Anybody knows why? What can I do to make it happen? Thanks in

Re: [flexcoders] accordion, load ALL

2006-11-29 Thread Yiðit Boyar
thanks for your quick anser, but i just need to load one of my child tab not all... so isn't there a way to say accordion, load your xth tab ? thanks - Original Message From: Karl Johnson [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, November 28, 2006 7:19:20 PM

RE: [flexcoders] Text instance does not calculate its height properly when in scrollable Box

2006-11-29 Thread Steve Cox
Unfortunately there seems to be a bug with text fields / labels and htmlText. The text component seems to not take into account line breaks/font sizing or something causing it to measure the component inaccurately. I'm yet to find a work-around. Lach, to replicate the bug highlight the text at

[flexcoders] debug version issue

2006-11-29 Thread Mark McCray
Hi there, Some sites that require flash player 9 don't work with my debug version of the flash player. Take for instance the new Kuler app from adobe. (http://kuler.adobe.com) It says i need to install Flash Player 9. But I have the debug version 9,0,18,60 installed. And sites like myspace

Re: [flexcoders] Cairngorm ServiceLocater Problem

2006-11-29 Thread Douglas McCarroll
Capho, ServiceLocator is an implementation of the Singleton pattern which, in a nutshell, means that only one instance of the class should be created. Your code is somehow breaking this rule. Set a breakpoint in ServiceLocator.new() and ServiceLocator.getInstance() and run your app in debug

[flexcoders] to form or not to form that is my question

2006-11-29 Thread bghoward3
can somone enlighten me on the benefit to using forms and form items instead of simply using text input boxes thanks

Re: [flexcoders] application structure and proper practice

2006-11-29 Thread Lachlan Cotter
Hi, That is an architecture question so it depends on how you have decided delegate responsibilities in your application. As a general guide however: your pop-up windows are views and should be separated from (have no knowledge of) the service calls which are an interface to the

Re: [flexcoders] application structure and proper practice

2006-11-29 Thread Lachlan Cotter
Hi, That is an architecture question so it depends on how you have decided delegate responsibilities in your application. As a general guide however: your pop-up windows are views and should be separated from (have no knowledge of) the service calls which are an interface to the

[flexcoders] Re: change properties in itemRenderer at runtime ?

2006-11-29 Thread ben.clinkinbeard
Hi Arpan, You need to use the properties property of ClassFactory. This is basically an object whose properties get assigned to your factory class's public properties with matching names. For example, if your gridItemRenderer class has public properties called someString, someNumber and

[flexcoders] {data} current index

2006-11-29 Thread Alex
Hi, I have an application that uses a custom component as a renderItem in a TileList, retrieving a list of data from XML as the dataProvider. How can I retrieve the current index of the item within my custom component? I can retrieve the data using {data}, but how would I retrieve the index

[flexcoders] Styling in Flex is officially ridiculous

2006-11-29 Thread ben.clinkinbeard
OK. I am usually very hesitant to criticize Adobe because of the immense respect I have for their employees and the amazing technology they create. I have built my career around their products. That being said, the styling capabilities in Flex are downright silly. I have suffered silently through

Re: [flexcoders] to form or not to form that is my question

2006-11-29 Thread Ben Marchbanks
I was wondering the same - everything seems to work just fine without using form and formItems. I found that the form component seem to make it more difficult to create and size the layout objects. I am not using either and have no problems using just textInput and labels instead. Ben

[flexcoders] Best practices for displaying large texts

2006-11-29 Thread Pablo Apanasionek
Hey, I'm trying to figure out the best (or at least optimal) way to display a large text (e.g. a news article) with several paragraphs using Flex 2. Would a Text control be the right one to use? Or is there another technique that would render better? Is there any way to justify text on -both-

RE: [flexcoders] debug version issue

2006-11-29 Thread Steve Cox
Yes mate: 9.0.r28 http://www.adobe.com/support/flashplayer/downloads.html -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark McCray Sent: 29 November 2006 14:55 To: flexcoders@yahoogroups.com Subject: [flexcoders] debug version issue

Re: [flexcoders] FDS and AMFPHP

2006-11-29 Thread Tom Chiverton
On Monday 27 November 2006 19:25, Philippe wrote: Is it possible to use Flex Data Services 2 with AMFPHP ? I thought AMFPHP only did remoteing, not full blown FDS. I could be wrong though. -- Tom Chiverton Helping to completely incubate visionary e-commerce

Re: [flexcoders] Styling in Flex is officially ridiculous

2006-11-29 Thread Michael Schmalle
Well, Before your loose it... try myButton.setStyle(upSkin, null); OR Button { upSkin:ClassReference(null); } OR mx:Button upSkin={null}/ Peace, Mike On 11/29/06, ben.clinkinbeard [EMAIL PROTECTED] wrote: OK. I am usually very hesitant to criticize Adobe because of the immense

RE: [flexcoders] To Adobe - new release improvements??

2006-11-29 Thread Matt Chotin
The performance is on par with 2.0, we didn't make any major improvements, sorry. Nor are project path issues addressed. Number of bugs fixed between SDK and Flex Builder is over 500 though. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

Re: [flexcoders] Cairngorm ServiceLocater Problem

2006-11-29 Thread Tom Chiverton
On Wednesday 29 November 2006 08:53, sinacapho wrote: application . It prompt and say that The ServiceLocater can only instantied once . What i can do? is that i need to put all the service in the business folder ? Post a couple of examples of your use of the ServiceLocator, and we'll see. --

[flexcoders] Is it possible to upload an xml file from local filesystem into a variable

2006-11-29 Thread Murdo
Hi, I'm trying to replace a .Net web client which zips and xml file and transfers it a server for analysis via a SOAP webservice. I wanted to remove dependancy on .Net standalone client and use flex app as replacment. I can't seem to find a way of loading the local xml file into a var for

RE: [flexcoders] Styling in Flex is officially ridiculous

2006-11-29 Thread Andrew Trice
I can't answer any of that for Adobe, but here is some input. Granted, I agree that it should be a default css property that can be easilty changed... It actually can be done without a ton of work. The easiest way to do that is to copy modify the halo ButtonSkin class, and use it as a custom

RE: [flexcoders] Styling in Flex is officially ridiculous

2006-11-29 Thread Andrew Trice
I'm not sure that approach really works... The buttons don't show up at all. -Andy _ Andrew Trice Cynergy Systems, Inc. http://www.cynergysystems.com Blog: http://www.cynergysystems.com/blogs/page/andrewtrice Email: [EMAIL PROTECTED] Office:

Re: [flexcoders] To Adobe - new release improvements??

2006-11-29 Thread Adam Reynolds
Any link to what has been fixed? Matt Chotin wrote: The performance is on par with 2.0, we didn’t make any major improvements, sorry. Nor are project path issues addressed. Number of bugs fixed between SDK and Flex Builder is over 500 though. Matt

Re: [flexcoders] Re: Hands-on charts

2006-11-29 Thread Tom Fitzpatrick
Mark - Thanks - I'll take a look at that. - Tom mark_g_wales wrote: Tom, I tried to take an excerpt of some existing code so there may be more imports, etc. that are needed. Hopefully this is the effect you were looking for... ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] Re: Binding to a custom method: possible?

2006-11-29 Thread ben.clinkinbeard
Thanks to everyone who replied, I think there is probably enough info here to get a solution implemented. Unfortunately I have been pulled onto other tasks so I have not had a chance to test these methods, but I am confident they'll lead me to success. Thanks again! Ben --- In

Re: [flexcoders] mx.automation

2006-11-29 Thread EECOLOR
Indeed it was my mistake, still had source from one of the beta's in my flexbuilder. Greetz Erik On 11/27/06, Steve Kellogg @ Project SOC [EMAIL PROTECTED] wrote: BUSTED -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Matt

RE: [flexcoders] To Adobe - new release improvements??

2006-11-29 Thread Matt Chotin
Not yet, when we release there will be lots of info. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Adam Reynolds Sent: Wednesday, November 29, 2006 8:18 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] To Adobe - new release

Re: [flexcoders] Styling in Flex is officially ridiculous

2006-11-29 Thread Michael Schmalle
Oh yeah... If he is talking about the actual button border, that is the skin and he needs to create a new skin. The button does not have borders, it has skins. It dosn't even share the same characteristics of a Container that has a border. These are not the same things. So, Ben, what do you

Re: [flexcoders] Styling in Flex is officially ridiculous

2006-11-29 Thread Michael Schmalle
Andy, It answers his question and it does work. If the label is present, you click on the label and the Button functions correctly. I don't know what he is aiming for here but, if you 'don't' have a border, there is no other hit area specified for the component. So, how are you going to get

[flexcoders] Re: totaling items in datagrid

2006-11-29 Thread nall_daniel
Thanks Ben, I already use similar code with a labelFunction to do sub-totals within the grid and it works very well. However, that code will only do calculations on a single row and not on an entire column. The code I wrote for totaling a column works as well but not on a new form where the

Re: [flexcoders] debug version issue

2006-11-29 Thread Mark McCray
yeah but that's not the intel or universal binary version, and I'm on intel. Adobe? On Nov 29, 2006, at 10:06 AM, Steve Cox wrote: Yes mate: 9.0.r28 http://www.adobe.com/support/flashplayer/downloads.html -Original Message- From: flexcoders@yahoogroups.com

[flexcoders] Messaging and serialization

2006-11-29 Thread Allen Riddle
I have a flex app that is unable to de-serialize a JMS message correctly. The message I'm sending is a Java object, but when Flex de-serializes the message, aggregate objects on the message are null, only String values there populated. Do I have to set up an action script class and use the

Re: [flexcoders] ColdFusion and Flex Integration - up to 10x gain, avoid cf object creation

2006-11-29 Thread EECOLOR
I suppose it gives you the performance of struct and the advantadges of typed/mapped objects The properties of a CFC are NOT typed, thats the problem. We can type the argument of a CF function, but not the property of a CFC... This means that using properies is sensitive to errors. Greetz

Re: [flexcoders] charting trial banner

2006-11-29 Thread Tom Chiverton
On Monday 27 November 2006 21:17, Yiðit Boyar wrote: how can i get rid of the charting trial banner over my charts ? (my FB is not trial anymore) Did you purchase FB with charting, or just FB ? -- Tom Chiverton Helping to confidentially industrialize error-free schemas

RE: [flexcoders] Styling in Flex is officially ridiculous

2006-11-29 Thread Andrew Trice
That's how I interpreted it: that he is actually talking about the button's border. Ben, is that what you were talking about? If so, the skin method is the way to go. -Andy _ Andrew Trice Cynergy Systems, Inc. http://www.cynergysystems.com Blog:

[flexcoders] installing FDS

2006-11-29 Thread Russell Sprague
I would like to use the FDS, but I am unclear on the installation process. My production server is Win 2000, running IIS and Coldfusion7. I know I need JRun? J2EE? to run the fds, but thats about it. I have heard that people are using Tomcat to run the fds, but I don't want to mess with my

Re: [flexcoders] Re: Hands-on charts

2006-11-29 Thread Tom Fitzpatrick
Ely - Inching forward some more... I implemented your tracking code (very clever) but it's still unclear how to use the Point data to rebuild the dataProvider. What is the hook that lets the function know which item in the dataProvider array is associated with the point data? - Tom Ely

[flexcoders] First problem: Error #2006 with the MenuBar

2006-11-29 Thread matze.kueby
Hello, I have a problem with the MenuBar. We have implemented the MenuBar, which was filled dynamically with XML data. Sporadically it will appear following fault, if we mousover the root layer. RangeError: Error #2006: Der angegebene Index liegt außerhalb des zulässigen Bereichs. at

[flexcoders] Defining the scope property of a destination

2006-11-29 Thread Michel ZAOUIA
Hi, I'm currently running some tests with coldfusion and java adapters and i'm wondering what is the difference between request and application when defining the scope property of a destination in FDS. Thank you all ! Michael

[flexcoders] Redux...Populating with Many-to-Many Relationship Data via RO?

2006-11-29 Thread Tom Sammons
Hi all (again), I guess using an existing post to create a new one simply by changing the subject wasn't a good idea. It got stuck under a completely unrelated thread; So, sorry for the double post, but at least now I will know that this isn't buried and ignored by accident...Here's my

Eclipse Optimizations. WAS RE: [flexcoders] Flex crashing @ compilation time

2006-11-29 Thread Steve Kellogg @ Project SOC
Hey Matt (et al), Does Adobe have any specific suggestions for setting up Eclipse to prevent the SLUGGISH EDITTING that many of us are seeing? I sometimes have to stop typing for 5-10 seconds to wait for Eclipse to CATCH UP to what I've typed. I'm not trying to say that I'm typing so

Re: [flexcoders] Eclipse + Flex2Plugin + Subversion + Ant + Webserver Quickstart

2006-11-29 Thread Tom Chiverton
On Wednesday 29 November 2006 00:48, Aldo Bucchi wrote: So, eating my own dogfood, my 2 cents on the 80/20 project: We've completed several Flex 2 projects, and some in 1.5 too, so here goes: * iterative releases ( not monolythic ) A must. We throw screen shots at the users as soon as we can,

RE: Eclipse Optimizations. WAS RE: [flexcoders] Flex crashing @ compilation time

2006-11-29 Thread Andrew Trice
I've modified the Flexbuilder.ini file to increase memory usage. It speeds it up a good bit, but has also caused the occasional crash of FB. More detail at: http://eclipsezone.com/eclipse/forums/t61618.html Be sure reference FlexBuilder.ini instead of Eclipse.ini. C:\Program Files\Adobe\Flex

[flexcoders] Problem with DataGrid ItemRenderer

2006-11-29 Thread pasflex
We have a datagrid that is using an item renderer that consists of an HBox implementing IDropInListItemRenderer with a few components in it. One of these components is a Text component used so some text can be wrapped. The problem is there are a few cases were the datagrid does not seem to

Re: [flexcoders] Re: Having trouble with swf app and proxies

2006-11-29 Thread Tom Chiverton
On Tuesday 28 November 2006 02:51, Ben Marchbanks wrote: Can you elaborate on exactly how we might overcome the proxy issue ? Rather than the Flex loaded from http://your.host/foo.swf (try to) talk to http://another.host:80/flex2gateway have it talk to

Re: [flexcoders] HistoryManager causing intermittent security errors

2006-11-29 Thread Rich Tretola
I have been having the same issue. I just added the initialize call to HistoryManager. Do you have any additional info since you posted this? Rich On 10/23/06, Paul Spitzer [EMAIL PROTECTED] wrote: I'm getting intermittent security errors the moment my application starts loading. Error

RE: [flexcoders] accordion, load ALL

2006-11-29 Thread Gordon Smith
You could probably use createComponentsFromDescriptors() to do this. But can you explain why you want to populate a child tab that the user can't yet see? - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Yiðit Boyar Sent:

[flexcoders] Re: totaling items in datagrid

2006-11-29 Thread nall_daniel
Okay, I made a little progress on this. Instead of passing the mx:model (which is an array) to my Grand Total function I'm now passing the actual dataProvider which is an arrayCollection. Now, new forms show the grand total as well as previously existing forms being edited. That's where the

[flexcoders] Different font height on Mac and Win.

2006-11-29 Thread rozhkovalexey
Create for example TextInput with fontFamily=TimesNewRoman, fontSize=14. If you run the function TextInput.measureText ( ).ascent on Mac the result will never be 14. On Windows - all good. It's problem with measureText function. Try to run this is simple application on Mac and on Win and you

RE: [flexcoders] installing FDS

2006-11-29 Thread Kelly
Probably wise to practice installing on your local machine first. Not that installing tomcat will have any effect on a running server. --Kelly _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Russell Sprague Sent: Wednesday, November 29, 2006

RE: Eclipse Optimizations. WAS RE: [flexcoders] Flex crashing @ compilation time

2006-11-29 Thread Steve Kellogg @ Project SOC
. I'll get to that now. I'll report the result here. THANKS ANDREW! Steve _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Trice Sent: Wednesday, November 29, 2006 11:16 AM To: flexcoders@yahoogroups.com Subject: RE: Eclipse

RE: [flexcoders] Problems with a DateField as an itemRenderer/editor

2006-11-29 Thread leds usop
Have you set rendererIsEditor to true and the editorDataField=selectedDate? --- Louie Penaflor [EMAIL PROTECTED] wrote: You are correct. It is itemEditEnd. I was just in a rush. As for the issue, the date is populating right. It's when I select a date from the calendar.

RE: [flexcoders] Messaging and serialization

2006-11-29 Thread Peter Farland
Hi Allen, Before going this far, can you try turning on Debug level logging in /WEB-INF/flex/services-config.xml and ensure that only the Endpoint.* pattern is enabled for the logging target filters? I'd then clear out the logs, re-run the test, and examine the AMF representation of the Object

Re: [flexcoders] many-to-many managed association in Hibernate destination

2006-11-29 Thread Douglas McCarroll
Jeff Vroom wrote: 4) If you turn on debug logging in the server for the “Endpoint.*” logging category, you’ll see the object graph which is sent to the client after your fill. I am curious if the time is being spent loading the data from the database or sending data to the client, or

Re: [flexcoders] installing FDS

2006-11-29 Thread Douglas Knudsen
http://www.brightworks.com/technology/adobe_flex/with_java.html might be helpful too. I'm about to delve into this to enhance/upgrade a Flex 1.5 project. I used JRun for it, seems like hardly anyone does though! My lack of J2EE know-how has kept me from jumping into Tomcat so fartime to

RE: [flexcoders] Re: Hands-on charts

2006-11-29 Thread Ely Greenfield
That depends on what you're trying to do specifically. The easy answer would be to say that this only works when the user specifically clicks down and drags on an item in the chart. In that case, I'd modify my example below by: 1) listen to the chart's itemMouseDown event instead of

[flexcoders] Message Services can't handle enums

2006-11-29 Thread Allen Riddle
Can flex handle deserializing Java 5 enums? Allen Riddle Sofware Development x3217

RE: [flexcoders] Problem with Flex ColdFusion

2006-11-29 Thread Philip Bedi
Hi Israel, You need to put the following in your root folder (I am assuming you have got jrun server Install). [C:\JRun4\]servers\cfusion\cfusion-ear\cfusion-war\ The thing in brackets {} can be replaced by the location on your computer. Hope this will help. Philip

RE: [eDoxs PSpam]RE: [flexcoders] Messaging and serialization

2006-11-29 Thread Allen Riddle
Ya, I will do that. But it appears that the problem is only occurring on Java 5 enums. My message I'm sending has an aggregate type that is an enum. Can flex not handle the deserialization of enums? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

[flexcoders] Conditionally Change the Text Color on a Datagrid Row

2006-11-29 Thread Sam Shrefler
Does anyone have any thoughts on changing the text color conditionally on an entire row of a datagrid? I've previously done it by creating an individual item renderer for each DataGridColumn, but I am looking for this ability on many grids with many columns... Thanks Sam

RE: [flexcoders] installing FDS

2006-11-29 Thread Tracy Spratt
I'm in the same boat: we're too small to have a server administrator, but not too small to need server administration! I have not installed FDS, but I have/am running Tomcat (For the Flex 1.5 server) on the same box as IIS 6, without any problems or interactions whatsoever. In order to be

RE: [flexcoders] Is it possible to upload an xml file from local filesystem into a variable

2006-11-29 Thread Tracy Spratt
The Flash Player security sandbox restrictions pretty much prevent access to any local/client resources, including the file system. There are ways around this but they require signficant work. Is a projector like Zinc an option? Tracy From:

[flexcoders] Re: totaling items in datagrid

2006-11-29 Thread camlinaeizerous
to call your function after the array is populated call it right after you populate it when the event results. The event results are nto called till the query is finished and the data is pulled so it makes for a great time to run code like your function. It will also call your function again each

Re: [flexcoders] accordion, load ALL

2006-11-29 Thread Michael Schmalle
can you explain why you want to populate a child tab that the user can't yet see? Man, I knew you were going to say something! haha Gordon, you should have a filter on you email that can regexp creationPolicy=all and have it send out an auto email, something like when people go out on

RE: [flexcoders] To Adobe - new release improvements??

2006-11-29 Thread David Mendels
Hi, It may be worth adding however that we are of course working on significant Flex Builder improments (and SDK and FDS) that will show up in releases after Flex 2.0.1. I wouldn't want you to think we are resting where we are. Regards, David Adobe From:

RE: [eDoxs PSpam]RE: [flexcoders] Messaging and serialization

2006-11-29 Thread Allen Riddle
Here is the output: both Typed Object 4 5 are Java 5 enums, and they are not deserializing to anything. [Flex] Serializing AMF/RTMP push Version: 3 (Command method=receive (0) trxId=null) (Typed Object #0 'flex.messaging.messages.AsyncMessage') destination =

RE: [flexcoders] Conditionally Change the Text Color on a Datagrid Row

2006-11-29 Thread Tracy Spratt
Here is one: http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectI D=487 http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=Fileobject ID=487 There is an alternate solution out there too, but I can't find it right now. Tracy

[flexcoders] Chart :Clipping segment from a line serie

2006-11-29 Thread Claude Hussenet
I have noticed that if one of the point of a segment is not within the min/max of the chart area,the whole segment is not displayed.I would have expect to see a segment between the point within the min/max and the intersection between the segment and the axis. Is there an option to make it

[flexcoders] Second problem: how to delete a component out of the storage

2006-11-29 Thread matze.kueby
Hello, My second question is how to delete a component out of storage. We have some own components (basically forms), which will be created and shown by an construct e.g. var myComponent : T_Component = new T_Component ; this.addChild(myComponent) Some of our forms will be created in an

[flexcoders] Re: Styling in Flex is officially ridiculous

2006-11-29 Thread ben.clinkinbeard
Yes, I meant the button's border. The default button is a gradient background with a border around it. I just wanted a gradient. No border. What I ended up doing was to create a PNG that had a gradient using the colors I wanted, created a Button subclass (in MXML) called GreenButton, set

RE: [flexcoders] Conditionally Change the Text Color on a Datagrid Row

2006-11-29 Thread Tracy Spratt
Here is another: http://www.mikenimer.com/index.cfm?mode=catcatid=B6F726D0-4E22-1671-576 5E6C3FE1D2862 Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sam Shrefler Sent: Wednesday, November 29, 2006 3:01 PM To:

Re: [flexcoders] Re: Hands-on charts

2006-11-29 Thread Tom Fitzpatrick
Ely - Do you mean ChartItemEvent? I can't find ChartMouseEvent documented. ChartItemEvent gives me the HitData and access to the item, but I seem to lose the mouse tracking in the process. - Tom Ely Greenfield wrote: That depends on what you're trying to do specifically. The

Re: [flexcoders] charting trial banner

2006-11-29 Thread Tom Sammons
Related question: I bought FB with charting, and developing using fb I don't get the banner. And I know that if you compile flex on the fly on CF you are supposed to get the banner. But what about the people who don't want to use FB and want to generate code from CF, and have bought charting?

[flexcoders] Change alpha properties when setting enabled property

2006-11-29 Thread Sam Shrefler
Could someone tell me how to modify the alpha settings when setting a component to enabled=false? Thanks! Sam

RE: [flexcoders] Different font height on Mac and Win.

2006-11-29 Thread Gordon Smith
What is the result on the Mac? Do you get the same result on Mac and Win if you embed the font? - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rozhkovalexey Sent: Wednesday, November 29, 2006 5:05 AM To:

[flexcoders] Re: need help about setup webservice in FDS

2006-11-29 Thread Jamie O
I have had an identical issue that I'm unable to resolve. Here are the 4 samples I've tried in my proxyConfig.xml file: destination id=DefaultHTTP properties dynamic-urlhttp://URLGOHERE/WS.asmx?WSDL/dynamic-url /properties /destination destination

RE: [flexcoders] Is it possible to upload an xml file from local filesystem into a variable

2006-11-29 Thread Iko Knyphausen
I have loaded some local XML files using the HTTPService. Limitation: you need to know the path of the file. It's like entering a local file URL into your browser. Maybe this is not supposed to work, or maybe this is not what you are trying to do...but I post it anyway...just in case.

RE: [flexcoders] Change alpha properties when setting enabled property

2006-11-29 Thread Andrew Trice
override public fuction set enabled(value:Boolean) : void { super.enabled = value; this.setStyle(alpha, ( value ? 1 : .5)); } Enjoy! -Andy _ Andrew Trice Cynergy Systems, Inc. http://www.cynergysystems.com Blog:

RE: [flexcoders] Flex crashing @ compilation time

2006-11-29 Thread Roger Gonzalez
That seems like a crazy amount of compilation time for 40 files. Something is wrong. BTW, have you tried creating some library projects and linking to them, instead of having just one source tree? However, you said that Flex is actually crashing during the compile.. is it? Or is it just slow?

[flexcoders] Re: totaling items in datagrid

2006-11-29 Thread nall_daniel
Got it. The CF/Flex wizard will generate an ArrayCollection variable to hold the data for a datagrid sub-form. It will also generate a function get_result() that gets all the data for the entire form. I placed a call to my grand total function as the last line in get_result() and voila! Now

RE: [flexcoders] Change alpha properties when setting enabled property

2006-11-29 Thread Andrew Trice
Sorry... let me elaborate more. The previous example would be used inside of the component that is being enabled/disabled. To do this outside of a component, you need to do it in actionscript: myComponent.enabled=fase; myComponent.setStyle(alpha, .5);

[flexcoders] Re: to form or not to form that is my question

2006-11-29 Thread bghoward3
that is my main issue as well layout seems to be a hassle please someone in the know add somthing here, my development is stalled until i have a clear understanding of why to use or not use thanks --- In flexcoders@yahoogroups.com, Ben Marchbanks [EMAIL PROTECTED] wrote: I was wondering the

Re: [flexcoders] Re: Styling in Flex is officially ridiculous

2006-11-29 Thread Michael Schmalle
Ben, This issue could only peeve you if it was actually an issue. The Button does not have a border. Thus, the border API does not apply to a Button. This is the reason they say upSkin, it's a skin. You could easily copy and paste the ButtonSkin class and put another style in the says

RE: [flexcoders] Problems with a DateField as an itemRenderer/editor

2006-11-29 Thread Louie Penaflor
Yes I have done that. On another note, I even checked out a sample in the docs about putting a datefield in a datagrid. I still couldn't get the datagridevent to work properly. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of leds

RE: [flexcoders] Problem with Flex ColdFusion

2006-11-29 Thread Philip Bedi
Hi Israel, You need to put the following in your root folder (I am assuming you have got jrun server Install). [C:\JRun4\]servers\cfusion\cfusion-ear\cfusion-war\ The thing in brackets {} can be replaced by the location on your computer. Hope this will help. Philip

RE: [flexcoders] Chart :Clipping segment from a line serie

2006-11-29 Thread Ely Greenfield
By default, series filter out datapoints not in the min/max range. If you set the filterData property to false, they'll render all points. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Claude Hussenet Sent: Wednesday,

  1   2   >