RE: [flexcoders] Flex 1.5, AxisRenderer labelRotation

2006-03-15 Thread Ely Greenfield
Sorry Jason. Short of copying the code into its own class and modifying it, there's no way to request the axis renderer orient titles the other way. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Graham, JasonSent: Tuesday, March 14, 2006 8:01 PMTo:

RE: [flexcoders] FAST Framework and Cairngorm

2006-03-15 Thread Steven Webster
Hey there, Nope, no issues with using them together at all...I know that many of the Adobe Consulting team are using both frameworks in their projects. One is an architectural framework, the other is an application framework, and they can quite happily co-operate. Best, Steven -- Steven

[flexcoders] Re: Error when i try to get information from a dataservice to populate my datagr

2006-03-15 Thread mbordallo
Thank you very much Matt.I have resolved the problem. It was more simple as it seem.The identity property idusuario I defined in the dataservice (flex-data-service.xml) was empty when I call my java code, so when I get the dataservice result it says :Error: Item requested at index 0 was null

Re: [flexcoders] Flex2 :: ObjectProxy subclass :: Interfacing concrete accessors

2006-03-15 Thread Michael Schmalle
right now. Are you trying to imply something? Or you just being funny. ;-) You can't talk like that and not have someone take you seriously that loves php :-) If I wrote the sentence it would say; Yes, FDS is not meant for PHP. haha but you say 'right now', ok! Peace, Mike On 3/15/06, Matt

Re: [flexcoders] Flex2 flash_proxy/Proxy getProperty and Binding

2006-03-15 Thread Michael Schmalle
Well, I was just in this classroom the other day. If I get your question correctly.. Add; use namespace flash_proxy; right under the import flash.util.flash_proxy. If you got this code from an example, it was missing the use statement. I missed this also!, Once the use is in there it works

[flexcoders] Flip and mirror a bitmap in Flex

2006-03-15 Thread Richard Schutten
Hi there, Are there standard flip and mirror routines that can be applied in Flex 2 for bitmaps? Greetings, Richard -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

AW: [flexcoders] Flex2 flash_proxy/Proxy getProperty and Binding

2006-03-15 Thread Harald Dehn
Hi, you have to use namespace as well. Here is an example of a SortedList I use in testproject. You can enumerate the ListKeys with for in and the Items with for each in. Harald package Helper {   import flash.util.Proxy;   import flash.util.flash_proxy;  

[flexcoders] [ann] 20th March Sydney Developers study group meeting

2006-03-15 Thread Chris Velevitch
On Monday 20th March is the next meeting of the study group we will be studying FlexUnit 2, the unit testing framework for Flex 2. Please read the articles prior to the meeting (see http://www.flashdev.org.au/program). At the meeting, the moderator will lead discussion and with questions about the

RE: [flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app

2006-03-15 Thread dos dedos
I've seen many AJAX examples of drag and drop. Is drag and drop planned for Flex in the future (beyond 8.5) or is their some kind of fundamental reason not to have it? I have a feeling it can be done already but not it should be made easier. Drag and drop is a common feature of rich user

Re: [flexcoders] Flex2 :: 3rd party Components :: blog/site(future)

2006-03-15 Thread dos dedos
coolI think there is also a big need for Actionscript libraries ... with examples :)I think 3rd party UI components and Actionscript libraries will go hand in hand to enable more rapid development. :)Michael Schmalle [EMAIL PROTECTED] wrote:Hello list, Since I ask more questions than

Re: [flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app

2006-03-15 Thread JesterXL
David I know for a fact Zinc mProjector allow you to drag and drop files to projectors (EXE's that wrap SWF's) so this could work for Flex 1.5 SWF's; only a matter of time till 2 is supported. This is not in a browser, however. Dos Flex 1.5 and Flex 2 both have built-in drag and drop

Re: [flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app

2006-03-15 Thread dos dedos
As far as I can tell there are two ways to do Flex/Browser-to-desktop interfacing:1. " You need to serve a crossdomain.xml file over HTTP from the local server. This will allow a web based application to interoperate with a desktop basedserver. This is essential to get this to work. Basically

Re: [flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app

2006-03-15 Thread JesterXL
Aye, you could do that. I'm talking specifically about clicking on a file on your desktop, and dragging over top of a Flex interface, dropping it there, and having Flex respond to it. - Original Message - From: dos dedos To: flexcoders@yahoogroups.com Sent: Wednesday, March 15,

Re: [flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app

2006-03-15 Thread dos dedos
Yes :) but once you can open/read files on the desktop you can show them inside a Flex UI and then drag and drop them from their to some other place within the UI.JesterXL [EMAIL PROTECTED] wrote: Aye, you could do that. I'm talking specifically about clicking on a file on your desktop,

[flexcoders] Re: rowIndex columnIndex while rendering in Flex 2.0

2006-03-15 Thread t_msreddy
Manish What if I have two textboxes in the cellRenderer HBox label={weekHoursActual.text} TextInput id=weekHoursActual text={...} / TextInput id=weekHoursForecast text={...} / /HBox what will the editorProperty be? Also can you tell me how to get the rowIndex and columnIndex. My

RE: [flexcoders] [Flex 1.5] Update ColumnData with new data

2006-03-15 Thread Jonathan Miranda
Your easiest bet for this is to have a cellRenderer send an event out when you leave the cell and update the dataprovider accordingly in a function which will update the datagrid. If youre unlucky like me, I had to have selectable=false and it was giving me a headache trying to figure

[flexcoders] Re: Flex2 flash_proxy/Proxy getProperty and Binding

2006-03-15 Thread Renaun Erickson
Mike, Thanks for your idea, I wrote this code myself to try and pin down a problem I am having. I can't get dynamic properties to bind. I tried the use namespace flash_proxy in the SomeClass.as and it didn't help. The SomeClass.mxml has a textarea that I am trying to bind the instance of

Re: [flexcoders] Re: Flex2 flash_proxy/Proxy getProperty and Binding

2006-03-15 Thread Michael Schmalle
That is what I thought, a bit more going on then just use namespace. I was trying to look at the bindings but, honsetly I havn't tried that. :) Peace, MikeOn 3/15/06, Renaun Erickson [EMAIL PROTECTED] wrote: Mike, Thanks for your idea, I wrote this code myself to try and pin down a

Re: [flexcoders] Flex2 :: 3rd party Components :: blog/site(future)

2006-03-15 Thread Michael Schmalle
I like your sense of humor, very sutle ;-) Peace, MikeOn 3/15/06, dos dedos [EMAIL PROTECTED] wrote: coolI think there is also a big need for Actionscript libraries ... with examples :)I think 3rd party UI components and Actionscript libraries will go hand in hand to enable more rapid

[flexcoders] Re: [Flex 1.5] Update ColumnData with new data

2006-03-15 Thread t_msreddy
In flex 1.5 you will have to do that on "change" event in cellRenderer: MyCellRenderer.mxml mx:HBox mx:Script ![CDATA[ function updateDP() { //loop through the dataProvider for DataGrid and setValues. parentDocument.MyDataGrid.executeBinding(); //this may not be required, this will

[flexcoders] Re: Flip and mirror a bitmap in Flex

2006-03-15 Thread grae_hall
Dearest Richard, There's a demo of run time reflection of flex components by Trey Long located here http://humanwasteland.com/reflectdemo/ReflectFilterDemo.html it's a good example of how to implement the bitmap, bitmapdata, and matrix classes in Flex 2.0 It's a bit technical - but you can

[flexcoders] XML DataModels, e4x, XMLList, and binding issues ? [Flex 2.0 b1]

2006-03-15 Thread sourcecoderia
Are we going to be able to properly bind to e4x and xml data? In the beta 1 I keep getting errors: warning: unable to bind to property 'data' on class 'Object' (class is not an IEventDispatcher) Or warning: unable to bind to property 'status' on class 'XML' (class is not an

RE: [flexcoders] Flex2 :: ObjectProxy subclass :: Interfacing concrete accessors

2006-03-15 Thread Matt Chotin
You never know what Product Management could decide is important ;-) But I would say that you should not use my words to get your hopes up in any way. No PHP and FDS for version 2 for sure. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael

Re: [flexcoders] Flex2 :: ObjectProxy subclass :: Interfacing concrete accessors

2006-03-15 Thread Michael Schmalle
Oh I know Matt, Just allittle humor, there is no hopes here. I can do quite a bit already just using what I have availible to me :) And from my humor there was No inference that it 'might' happen in version 2. On 3/15/06, Matt Chotin [EMAIL PROTECTED] wrote: You never know

[flexcoders] Re: Flip and mirror a bitmap in Flex

2006-03-15 Thread Richie Rich
Hi Here is a example of what your looking for with sample code I believe. http://humanwasteland.com/reflectdemo/ReflectFilterDemo.html Have Fun, Rich --- In flexcoders@yahoogroups.com, Richard Schutten [EMAIL PROTECTED] wrote: Hi there, Are there standard flip and mirror routines that

RE: [flexcoders] Re: WSDLResponse not resolvable

2006-03-15 Thread Peter Farland
If you could send me the WSDL I could take a look. It might be a problem with non-qualified versus qualified wrapped document literal web services. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan MirandaSent: Monday, March 13, 2006 6:41 PMTo:

[flexcoders] Populating a tree

2006-03-15 Thread Jeremy Rottman
Does anyone know of, or have an exmample on how I can populate a tree with a returned query from a cfc. Everything I have tried so far has turned out to not work. any help with this would be greatly appreciated. -- Flexcoders Mailing List FAQ:

[flexcoders] Web Service Call - Flex 2 (Complex Type with Args)

2006-03-15 Thread Richie Rich
Hello,I am trying to send aWebService Operation to a WSDL with a Complex Type with 4 nodes (children) and one of the nodes have 2 additional args that need to be passed. Here is the MXML Code i am currently using:?xml version="1.0" encoding="utf-8"?mx:Application

Re: [flexcoders] Flex2 :: 3rd party Components :: blog/site(future)

2006-03-15 Thread dos dedos
re: humorSide effects are uncommon but may include lower abdominal pain and remote inculcation... about AS libraries:I satted this many times but here it goes again: I need to figure out how to enable communication between in-browser Flex UI and a Python/Twisted server running on the end-user's

[flexcoders] Flash vunerability

2006-03-15 Thread Jonathan Miranda
Anyone know if this affects Flash player 8.5 beta? http://www.macromedia.com/devnet/security/security_zone/apsb06-03.html _ Jonathan Miranda Flexible Master of the Web Try not to become a man of success, but a man of value. - Albert Einstein

RE: [flexcoders] Re: WSDLResponse not resolvable

2006-03-15 Thread Peter Farland
This looks like a Flex 2 bug with the schema elementFormDefault="qualified" attribute not being honored for each element defined in the types section. I believe a work around for now is to manually add form="qualified" attributes to the relevant element tags for each type definition. I've

Re: [flexcoders] Flash vunerability

2006-03-15 Thread John Dowdell
Jonathan Miranda wrote: Anyone know if this affects Flash player 8.5 beta? http://www.macromedia.com/devnet/security/security_zone/apsb06-03.html Beta already has file-locking built in. The release yesterday covered 8.0 and 7.0 generations (for those on older OS), and the various

Re: SPAM-MED: [flexcoders] Flash vunerability

2006-03-15 Thread Ryan Stewart
 Hey Jonathan, I'm pretty sure it's fixed in the new beta player. Someone feel free to correct me if I'm wrong.-Ryan From: Jonathan Miranda[mailto:[EMAIL PROTECTED]Sent: Wednesday, March 15, 2006 6:59 PM -08:00To: flexcoders@yahoogroups.comSubject: SPAM-MED: [flexcoders] Flash

[flexcoders] Cairngorm Framework with Flex 2.0

2006-03-15 Thread Venu Vasireddy
Hi , Anybody using Cairngorm Framework with Flex 2.0? In perticular with FES data services? Thanks Venu Architect -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

[flexcoders] RE: Cairngorm Framework with Flex 2.0

2006-03-15 Thread Brian O'Connor
Sure, what is the question? - Brian O'Connor AdobeConsulting Email: [EMAIL PROTECTED] Office: 617-219-2205 Mobile: 617-306-3713 / \ 888/ \888 88/ / \88 8/ /8\ \8 / /888\ \ \8\ From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] RE: Cairngorm Framework with Flex 2.0

2006-03-15 Thread Venu Vasireddy
Hi Brian, Is this still a relevant useful frame work - with Flex 2.0 ? Does FES 2.0 has any inbuilt or recommended framework ? What is the current status of Cairngorm Framework? -Venu From: flexcoders@yahoogroups.com on behalf of Brian O'Connor Sent: Wed

RE: [flexcoders] RE: Cairngorm Framework with Flex 2.0

2006-03-15 Thread Brian O'Connor
It is very much still a relevant and useful framework. You dont necessarily need to use Cairngorm with FES but I have on a few occasions. You should consider Cairngorm and FES 2 different animals. Cairngorm is a good framework for application development and FES is a great framework for

RE: [flexcoders] RE: Cairngorm Framework with Flex 2.0

2006-03-15 Thread Venu Vasireddy
I assume Cairngorm framework is designed having FLEX RPC protocols in mind - in perticular Remote object- how to syncvalue objects on client and server. If we use FLEX 2.0 Dataservices, how does this Framework helps? Perhaps newer version of Cairngorm may better address this -

RE: [flexcoders] Flex 2 graph axis label question

2006-03-15 Thread Matt Horn
Remove the labels altogether and leave only a title (Response time 24hr) Since you are setting showLabels=false and that's not working, I guess it is a bug. only add labels for every hour. You can use a DateTimeAxis rather than a CategoryAxis and set dataUnits to hours. HTH, Matthew J.

RE: [flexcoders] Flex 1.5: Passing selected data to a popup

2006-03-15 Thread RAMOS CARDONA JESUS SALVADOR
This does not work wither. Is this the best way to do this? Is there another way? What are the best practices for accomplishing this? -Mensaje original- De: Matt Chotin [mailto:[EMAIL PROTECTED] Enviado el: Miércoles, 15 de Marzo de 2006 12:54 a.m. Para:

[flexcoders] Re: Cairngorm Framework with Flex 2.0

2006-03-15 Thread Renaun Erickson
The framework can be used for UI organization as well as the Data Services. Its a big assumption stating its designed for RPC protocols. Its actually designed for overall application design, the Command pattern used by Cairngorm specifically compliments/facilitates RPC, internal application

RE: [flexcoders] RE: Cairngorm Framework with Flex 2.0

2006-03-15 Thread Brian O'Connor
Try these articles. I think they will help http://www.richinternetapps.com/archives/cat_design_patterns.html http://www.macromedia.com/devnet/flex/articles/cairngorm_pt2.html http://www.macromedia.com/devnet/flex/articles/cairngorm_pt5.html -

[flexcoders] Re: Flex 2 graph axis label question

2006-03-15 Thread christopherjdunn
After playing with it some more, i found the showlabels=false was working, but with the graph so small, the markers for the verical lines made it look like it was trying to render the labels. At this point i'm not going to worry about the hour marks, but thank you for the help. Chris --- In

RE: [flexcoders] Flex 1.5: Passing selected data to a popup

2006-03-15 Thread RAMOS CARDONA JESUS SALVADOR
Allow me to correct myself. This does work, but both dataItem variables (the one being sent in the initObj in the createPopUp method, and the reference received by the component being popped-up) must be declared and trated as Object. Typing them as any other type will not work; cannot

RE: [flexcoders] Re: Cairngorm Framework with Flex 2.0

2006-03-15 Thread Venu Vasireddy
Thanks Renaun. Concetually this must be true. But DataServices has has some cool features like DS binding with DataGrid - my concern is how to fit such fecilities into framework . From: flexcoders@yahoogroups.com on behalf of Renaun Erickson Sent: Wed

RE: [flexcoders] Re: WSDLResponse not resolvable

2006-03-15 Thread Peter Farland
Actually, sorry, this is not the case. Your issue is a Flex 2 Beta 1 bug that should be fixed for Beta 2. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Peter FarlandSent: Wednesday, March 15, 2006 2:08 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders]

Re: [flexcoders] Re: Cairngorm Framework with Flex 2.0

2006-03-15 Thread Joshua Garnett
According to a post at, http://www.richinternetapps.com/archives/cat_cairngorm.html, they still haven't decided how FES and Cairngorm will work together. I'm sure as we near an actual release of Flex 2, we'll see an update to Cairngorm 2. We're hugely excited about enterprise data services, and

[flexcoders] Re: Cairngorm Framework with Flex 2.0

2006-03-15 Thread Renaun Erickson
Josh's post is worth a read, Steven Webster mentioned a couple of times how excited he is for FES. There is some room to give and take on how to implement Cairngorm. One case is that you can encapsulate all the FES DS and DataGrid functionality in its own ViewHelper and use Commands to make

[flexcoders] Re: Flex 1.5: Passing selected data to a popup

2006-03-15 Thread Doug Lowder
Are you waiting until after the init() function has completed in CambioPasswordForm? I believe this is when the variables are assigned their passed-in values, so if you are accessing them before that they will be undefined. Doug --- In flexcoders@yahoogroups.com, RAMOS CARDONA JESUS SALVADOR

[flexcoders] Re: Populating a tree

2006-03-15 Thread Doug Lowder
If your cfc is returning an Array, or if you need to do some processing on the results first, you can create the tree programmatically by looping through the results and calling: myTree.addTreeNode(someNodeName, someDataObject); - Doug --- In flexcoders@yahoogroups.com, Jeremy Rottman

RE: [flexcoders] Re: Cairngorm Framework with Flex 2.0

2006-03-15 Thread Steven Webster
Title: [flexcoders] Re: Cairngorm Framework with Flex 2.0 Hi guys, Sorry to jump on this thread late, but good to see my (recent) colleague Brian O'Connor has responsed already I know Brian has been working a great deal with Cairngorm and FES lately, so definitely listen to what he

[flexcoders] Problem with DateChooser selectedDate - flex 2

2006-03-15 Thread pasflex
If the selectedDate of a DateChooser is set to a date that is created using new Date() with no arguments (or any similar constructor to get the current date/time), the selectedDate is not highlighted on the DateChooser when showToday is false. Interestingly, it works if the date created using

RE: [flexcoders] Re: Capture events a la the underlying transparent window from PopUpManager

2006-03-15 Thread Tony Pujals
Great suggestion, Ill definitely give it a shot on my end much appreciated, thanks! tony pujals| senior engineer | Yahoo! SiteBuilder Express p. 408.349.6284 |e. tonyp * yahoo-inc dot com| y!id tonypujals From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] identity tree level when on click ?

2006-03-15 Thread Belinda Nambooze
After drilling down with the engineer, came up with this hack: TreeListData(IDropInListItemRenderer(tree.listItems[event.rowIndex][0]). listData).depth; Make sure you import mx.controls.treeClasses as well as mx.controls.listClasses; We're currently working on creating or exposing API's that

RE: [flexcoders] Flex 2 Style Explorer (beta)

2006-03-15 Thread Tony Pujals
Title: Flex 2 Style Explorer (beta) I agree, very, very nice. And it would be even nicer if the source code were available as part of the download. Maybe if enough people post their comments on the download page to indicate interest..? -Tony tony pujals| senior engineer |

[flexcoders] Configuring RemoteObject destinations (Flex 2)

2006-03-15 Thread Jason Y. Kwong
This came up cause I was configuring my Flex 2 app to communicate with ColdFusion, but I suppose it applies to RemoteObject in general. In order to tell your app the location of a web service destination, we're told to add something like this to the compiler command line:

RE: [flexcoders] Configuring RemoteObject destinations (Flex 2)

2006-03-15 Thread Peter Farland
If you use {server.name} in place of the IP address or host server name then it will be replaced at runtime with that used to load the SWF. Note that if you load a SWF from the file system using the standalone player then it will be interpreted as localhost. As for the port token,

RE: [flexcoders] Configuring RemoteObject destinations (Flex 2)

2006-03-15 Thread Peter Farland
Additionally, you could configure several channels for a destination and rely on channel failover so that it will look for one then the other... From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jason Y. KwongSent: Wednesday, March 15, 2006 7:41 PMTo:

[flexcoders] Muliple flex apps on tomcat

2006-03-15 Thread Jeff Krueger
All, I am trying to run basically the same web app as two instances on the same server. So I have the same warsbutwith different web.xml for config and different db connections. But only one of the apps will start, and when the other web is hit for the first time I get a out of memory error

[flexcoders] Muliple flex apps on tomcat

2006-03-15 Thread Jeff Krueger
All, I am trying to run basically the same web app as two instances on the same server. So I have the same warsbutwith different web.xml for config and different db connections. But only one of the apps will start, and when the other web is hit for the first time I get a out of memory error

Re: [flexcoders] Flex 2 Style Explorer (beta)

2006-03-15 Thread Peter Baird
Title: Re: [flexcoders] Flex 2 Style Explorer (beta) Dont you worry. Im implementing view source into the beta 2 version that will be released on the heels of Flex 2 beta 2. -Peter On 3/15/06 6:48 PM, Tony Pujals [EMAIL PROTECTED] wrote: I agree, very, very nice. And it would be even

[flexcoders] Re: Web Service Call - Flex 2 (Complex Type with Args)

2006-03-15 Thread Richie Rich
Any body want to take a look at this please. --- In flexcoders@yahoogroups.com, Richie Rich [EMAIL PROTECTED] wrote: Hello, I am trying to send aWebService Operation to a WSDL with a Complex Type with 4 nodes (children) and one of the nodes have 2 additional args that need to be passed.

[flexcoders] Flex Builder 2 Beta - Wrong Flash Player Version?

2006-03-15 Thread Jordan Snyder
I searched the list and didn't come up with anything helpful. I'm using Flex Builder 2 Beta, full-on install with the Flex framework, and I installed player 8.5 along with it. I've been using it for a while now, but last night I went to build a project, and suddenly I got an error telling me

[flexcoders] Multiple flex apps on one tomcat server out of memory

2006-03-15 Thread Jeff Krueger
All, I am trying to run basically the same web app as two instances on the same server. So I have the same warsbutwith different web.xml for config and different db connections. But only one of the apps will start, and when the other web is hit for the first time I get a out of memory error

[flexcoders] Re: Muliple flex apps on tomcat

2006-03-15 Thread Dave Wolf
You can run many web apps that serve SWF content. However, I would seriously avoid the JIT compilation in favor of pre-compiling your SWF files. That SWF compiler leaks pretty heavily in 1.5. In nay case, you should be able to do what you are trying here. I am curious why you want to run

Re: [flexcoders] Muliple flex apps on tomcat

2006-03-15 Thread Clint Modien
I've seen tomcat handle some pretty monstrous flex apps and I've used it daily for like 2 years now. It should in theory run all way up too that 1.5 GB of ram you have allocated and them some. (swap space... asuming your on windows of course.) Watch your ram usage while it's compiling. Is it

[flexcoders] Re: Muliple flex apps on tomcat

2006-03-15 Thread Dave Wolf
Clint, Do you do JIT compiling? I do agree. Tomcat is *the* workhorse Flex server... -- Dave Wolf Cynergy Systems, Inc. Macromedia Flex Alliance Partner http://www.cynergysystems.com Email: [EMAIL PROTECTED] Office: 866-CYNERGY --- In flexcoders@yahoogroups.com, Clint Modien [EMAIL

Re: [flexcoders] Re: Muliple flex apps on tomcat

2006-03-15 Thread Clint Modien
Yep... daily... I use it for dev and running test harnesses... but it's a combination of both JIT and precompiling with ant and fastmxmlc.And your right... it leaks like a sieve.. gotta bounce it once a day (that's right i can spell sieve.. *thank you google!* lol). On 3/15/06, Dave Wolf

[flexcoders] Re: Muliple flex apps on tomcat

2006-03-15 Thread Dave Wolf
Yep pretty much our deal here too. We couldn't do fastmxmlc though, so we stick with old standby. We have some pretty kickin ANT scripts that build the whole deal, including Tomcat. -- Dave Wolf Cynergy Systems, Inc. Macromedia Flex Alliance Partner http://www.cynergysystems.com Email:

Re: [flexcoders] Flex Builder 2 Beta - Wrong Flash Player Version?

2006-03-15 Thread dos dedos
I ran into this a coupel of weeks ago...Here's a recount of what happened:I installed Flex 2 without the Flash Player 8.5 for IE (I use Firefox)But when I launched IE with Flexstore.html it started downloading the player *.cab file then went blank .. The same thing happened when I tried to

[flexcoders] Re: Multiple flex apps on one tomcat server out of memory

2006-03-15 Thread Renaun Erickson
What version JVM are you using. I use JRockit with Tomcat for my best results on the servers (regular Java apps). No need to set XMS and XMX settings on JRockit as the default settings group the heap size for you (there are pros and cons for this, but you wont get OutOfMemory very easily). I

Re: [flexcoders] Re: rowIndex columnIndex while rendering in Flex 2.0

2006-03-15 Thread Manish Jethani
On 3/15/06, t_msreddy [EMAIL PROTECTED] wrote: What if I have two textboxes in the cellRenderer HBox label={weekHoursActual.text} TextInput id=weekHoursActual text={...} / TextInput id=weekHoursForecast text={...} / /HBox what will the editorProperty be? If my understanding is correct