[flexcoders] horizontalGap not working.

2006-10-23 Thread KP
Hi All, I am creating one hdividedBox in action script and I want to use horizontalGap property so that thichness of the line which divides two component in hdividedBox becomes thin. var hDivide:HDividedBox=new HDividedBox(); hDivide.percentHeight=100;

RE: [flexcoders] Anyone ever built a RSS scrolling component for Flex 2?

2006-10-23 Thread KP
Well I had also working on this type of application but below URL looks great. I also tried using auto scroll, I used verticalScrollPosition.But it doesnt look so promising can someone suggest me how the below example is implementing autoscroll. Thanks Kumar From:

Re: [flexcoders] Re: Value Object inside Value Object?

2006-10-23 Thread Thomas Rühl -akitogo-
you're welcome :D Dan wrote: Oh, thanks. It is really that simple. Dan --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com, Thomas R?t;[EMAIL PROTECTED] wrote: Hi, yeah, sure... why not...? In your first VO: public var aString : String; public

[flexcoders] When is Flash Lite Player 2 launching for Nokia N93

2006-10-23 Thread omkarjoe
Hi, Can anyone plz tell me when is adobe planning to launch it's latest flash lite player 2/2.1 for Nokia N93??? Currently it's not available in the online store. N93 comes default with Flash Lite Player 1.1 but I need Flash Lite 2.0 atleast. Also I would like to know when is adobe planning

[flexcoders] truncateToFit does not work when percentWidth is defined for Label

2006-10-23 Thread Sergey Kovalyov
Hi All! I have a container and Label instance inside it. Unfortunately, truncateToFit does not work if Label instance width is set in percent. Please, take a look at the example below: ?xml version=1.0? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; width=100%

[flexcoders] Flex Data Services painfully slow?

2006-10-23 Thread ryanharlin
I'm getting into developing a flex application with Flex Data Management Services using Coldfusion CFCs to talk to the backend. All's going well enough, except for one problem. When I test from outside the internal network... ie. hit the server from home over a regular broadband connection...

[flexcoders] closing a popupButtonMenu

2006-10-23 Thread boy_trike
I have an event on MouseOver to OPEN my popup menu. I want it to close when the user MOUSES OUT of the drop down menu. The mouseout event of the menu works when the user leave the BUTTON not the menu. What is the solution please? thanks bruce -- Flexcoders Mailing List FAQ:

Re: [flexcoders] 16 x 16 icon menu?

2006-10-23 Thread Paul Hastings
On 10/21/06, Douglas Knudsen [EMAIL PROTECTED] wrote: what about the Menu example here http://examples.adobe.com/flex2/inproduct/sdk/explorer/explorer.html ?? Make the button be your default icon and switch its source on user choice. duh ;-) thanks, that set me on the right path. just had

Re: [flexcoders] Security Sandbox and SWF Loader

2006-10-23 Thread John Kirby
Title: quote The crossdomain.xml file needs to be on the server providing the rss feed. I have have a similar application. What I did is have the flex app fetch the rss feed and using local connection pass the data to the yahoo map ( I do some data manipulation). I use a proxy

Re: [flexcoders] truncateToFit does not work when percentWidth is defined for Label

2006-10-23 Thread Michael Schmalle
Hi,Add this; (minWidth)mx:Label width=100% minWidth=100 text=Peace, MikeOn 10/23/06, Sergey Kovalyov [EMAIL PROTECTED] wrote: Hi All! I have a container and Label instance inside it. Unfortunately, truncateToFit does not work if Label instance width is

[flexcoders] Re: Custom Cell Renderer for Rows of a DataGrid

2006-10-23 Thread Derrick Grigg
I do not believe there is any way to have variable row renderers. You could use a datagrid with one column and make that a complex itemrenderer that could toggle the 'row' based on some data value. That would likely be your best option. Derrick -- Derrick Grigg [EMAIL

RE: [flexcoders] truncateToFit does not work when percentWidth is defined for Label

2006-10-23 Thread Nick Watson
Make the label width the width of the box like this mx:Box width=25% id=myBox mx:Label width={myBox.width} --N From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sergey Kovalyov Sent: 23 October 2006 14:50 To: flexcoders@yahoogroups.com

[flexcoders] One data set, multiple DataGrids/views- best approach?

2006-10-23 Thread ben.clinkinbeard
In an upcoming project I will need to provide multiple views of the same data, most likely in the form of an XMLListCollection, in multiple DataGrids. The scenario is that I will have a large master set of data, but depending on which screen you are on you will only see the appropriate parts of

[flexcoders] Flex 2 Tree disbale nodes

2006-10-23 Thread maikelsibbald
There was a way in FLex 1.5 to disable some nodes. But I guess I'm the only one in the world that wants to disable a node in Flex 2. But the 1.5-way does NOT work anymore... function disableNode(node:Number){ nav.rows[node]._alpha = 20; nav.rows[node].enabled = false;

[flexcoders] Re: Lines in text area component

2006-10-23 Thread Branko
Here is my code: import flash.geom.Rectangle; var caretIndex:int = textArea.getTextField().caretIndex; var Boundaries:Rectangle = new Rectangle; var tField:TextField = textArea.getTextField(); Boundaries = tField.getCharBoundaries(caretIndex); but I'm getting error cause Boundaries in

Re: [flexcoders] horizontalGap not working.

2006-10-23 Thread Adam Royle
Hi Kumar, horizontalGap is a style, not a property. hDivide.setStyle("horizontalGap",8); Cheers, Adam - Original Message - From: KP To: flexcoders@yahoogroups.com Sent: Monday, October 23, 2006 6:29 PM Subject: [flexcoders] horizontalGap not working.

[flexcoders] Flex Deployment Best Practices

2006-10-23 Thread John Kirby
Title: quote I'm about to deploy my first Flex application. I have tried to modularize my components as much as possible. What I'm looking for is some best practices on when/why you create RSLs, SWFs, etc to "break up" your application so it runs efficiently. I know there are some

[flexcoders] Typecast a generic Object into a VO

2006-10-23 Thread mdoberenz
I'm pretty sure this is possible, but I can't get it to work. I'm wanting to typecast a generic object that gets returned by a WebService call into a VO, but I'm having some issues. Say I have a VO of the following: public class TestVO{ [Bindable] public var i_test:int; [Bindable]

Re: [flexcoders] truncateToFit does not work when percentWidth is defined for Label

2006-10-23 Thread Sergey Kovalyov
It works! Thank you, Michael. Event setting minWidth to 0 works. I used this trick with minHeight in other cases, but could not imagine it would work here also. :) On 10/23/06, Michael Schmalle [EMAIL PROTECTED] wrote: Hi,Add this; (minWidth)mx:Label width=100% minWidth=100 text=Peace,

RE: [flexcoders] Re: array of arrays and XML

2006-10-23 Thread Tracy Spratt
Use for..in loop. See the examples: http://livedocs.macromedia.com/flex/2/langref/XMLList.html Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of jnewport Sent: Friday, October 20, 2006 4:56 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Looping through a DataGrid, in order to get Grand Total from 1 specific Column?

2006-10-23 Thread Tracy Spratt
You need to use the dataProvider. The DataGrid control re-uses the visual elements when you scroll, so all of the total cells dont really exist all of the time. Folks see this regularly when they use a checkbox renderer in a datagrid and fail to have it set and be set from the

[flexcoders] Can I dock anything to the BOTTOM of the screen

2006-10-23 Thread boy_trike
I have an application bar docked to the top of the screen. Is there any way to dock anything to the BOTTOM of the screen? Thanks Bruce -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] One data set, multiple DataGrids/views- best approach?

2006-10-23 Thread Tracy Spratt
Could you use e4x xml as the master data, then use the node selection sepressions to return the xml or XMLList you want, and put that data subset into an XMLListCollection to take advantage of the cllection API? Tracy From: flexcoders@yahoogroups.com

Re: [flexcoders] Re: Creating JarJam button Effect.

2006-10-23 Thread Jeremy Rottman
I got one final question that really does not pertain to a problem of more then how to do something. I need to pass a filename through the function I'm running of createWindow(). When that function is run I need it to take that argument and do an addChild(filename) after the title window is

RE: [flexcoders] Can I dock anything to the BOTTOM of the screen

2006-10-23 Thread Mike Anderson
Yeah I know - I wanted to do the same thing - Flex seems to be locked into a Top Down approach when it comes to layouts... With that said, to get my Application Bar to stick at the bottom, I set the Bottom setting to like 5 or 10, and then give it the appropriate height setting to accommodate

Re: [flexcoders] Re: array of arrays and XML

2006-10-23 Thread Douglas Knudsen
Curious, why convert to ArrayCollection at all? you can pass XML direct to a chart. Any Class supporting the dataProvider attribute can except any Collection. DKOn 10/23/06, Tracy Spratt [EMAIL PROTECTED] wrote: Use for..in loop. See the examples:

[flexcoders] Re: One data set, multiple DataGrids/views- best approach?

2006-10-23 Thread ben.clinkinbeard
Thats actually a really good idea Tracy, thanks. Not sure why it didn't occur to me :) That approach still leaves me with my biggest question though, which is how to handle updates to the data. My app is basically a document generation workflow, so the user will be moving (possibly large) sets of

[flexcoders] Flex Charting and showDataEffect rearrangeData - Bug?

2006-10-23 Thread Sönke Rohde
Hi, I have got a PlotChart and the showEffect rearrangeData works as expected, when I define all within my main application mxml. When I put the Plotchart in a custom mxml and include this in my main application mxml all looks fine except the effect does not show up anymore. Is this a known

[flexcoders] textArea cursor position

2006-10-23 Thread Branko
How can you get the current position of the blinking cursor in a text area and is there a way to set this position programmatically? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] Typecast a generic Object into a VO

2006-10-23 Thread Darron J. Schall
This Article in the CFDJ should be of help to you: http://it.sys-con.com/read/264726_1.htm http://it.sys-con.com/read/264726_2.htm As an aside, I'll be checking in some code to the Adobe Labs SVN this week to handle this in a slightly more generic fashion. -d mdoberenz wrote: I'm pretty

RE: [flexcoders] Typecast a generic Object into a VO

2006-10-23 Thread Peter Farland
Nope, an instance must actually be of a particular type in order to coerce it to that type. Try adding metadata to your class: [RemoteClass(alias="TestVO")] public class TestVO { } The MXML compiler will generate the correct code to register an alias for the TestVO class as "TestVO" and

[flexcoders] XML XML XML

2006-10-23 Thread Fabio Barreiro
Im getting messed up with XML J My HTTPService returns this XML myService.lastResult = itens categoria nome=categoria 1 itemitem 1/item itemitem 2/item itemitem 3/item /categoria categoria nome=categoria 2 itemitem 1/item /categoria categoria nome= categoria

[flexcoders] Webservice with a lougout method

2006-10-23 Thread sylvain_emma
Hello, I'm trying to use a web service that has a logout method, but it throw an error at run time. It seems to be because the web service has a method called logout that is reserved to the AbstractService class normally. The web service isn't mine so i can't change the method name, how can i do

[flexcoders] Efficient way to bing data to many text fields using cairngorm framework

2006-10-23 Thread Sam Shrefler
I'm trying to use the Cairngorm framework, more specifically the ModelLocator updating the view. There is a part of my application where 10 codes are asked for, So i have mx:TextInput id=code1/mx:TextInput id=code2/.mx:TextInput id=code10/ I'm trying to figure out an efficient wayto

RE: [flexcoders] Webservice with a lougout method

2006-10-23 Thread Peter Farland
Unfortunately this is a known issue and will be fixed in the next updater. Pete From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sylvain_emmaSent: Monday, October 23, 2006 5:35 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Webservice with a lougout

[flexcoders] HistoryManager causing intermittent security errors

2006-10-23 Thread Paul Spitzer
I'm getting intermittent security errors the moment my application starts loading. Error #2044: Unhandled SecurityErrorEvent:. text=Error #2047: Security sandbox violation: LocalConnection.send: evolve cannot access http://evolve/admin/Administrator.swf. I'm pretty convinced that it is caused

[flexcoders] External addChild.target = ??

2006-10-23 Thread Jeremy Rottman
Right now I'm working on a project that currently is creating dynamic states from a function and one of the arguments that is being passed to this state needs to be the filename of the child I want to add to the state. The following is the function I have so far. private function

[flexcoders] External addChild.target = ??

2006-10-23 Thread Jeremy Rottman
Right now I'm working on a project that currently is creating dynamic states from a function and one of the arguments that is being passed to this state needs to be the filename of the child I want to add to the state. The following is the function I have so far. private function

[flexcoders] Setting STYLES for individual cells/rows of a TREE?

2006-10-23 Thread Steve Kellogg @ Project SOC
Hello, When using a tree, Id like to be able to convey extra information for each through the use of LABEL COLOR, LABEL BOLD, LABEL ITALIC, etc. Can anyone here point me to documentation or examples of how to do this? Thanks in advance, Steve Steve Kellogg Peak8

[flexcoders] Reset Radio Button Group

2006-10-23 Thread Sam Shrefler
I've found the following reference: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=c4e4be2f selectedRadio won't compile in Flex Builder 2. Any idea how to do this in Flex 2? Thanks! Sam __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] Am I missing something about ContextMenu?

2006-10-23 Thread Pan Troglodytes
The help says:In Flex, only top-level components in the application can have context menus. For example, if a DataGrid control is a child of a TabNavigator or VBox container, the DataGrid control cannot have its own context menu.I thought this was rather crappy and almost believed it. But on

[flexcoders] netstream onPlayStatus

2006-10-23 Thread Jesús Iglesias
Hi, I have a netstream which plays a video from FlashComm. I need detect when playback finish, soy I think I could use onPlayStatus event. The proble is I don't know how to use it. Does anybody know something? Thanks, Jesus __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] TextField causes other graphics to bounce off

2006-10-23 Thread Paul Hastings
i'm adding TextFields at various user chosen points on an image, works fine. the app also requires other graphics (lines, etc.) to be drawn on the image as well. the trouble is that once a TextField takes up a spot on the image, any graphics drawn over the text bounces off it (it looks like the

[flexcoders] Re: XML XML XML

2006-10-23 Thread tobiaspatton
Here's a little application that traverses the XML and output the categories and items: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute initialize=OnInit() mx:Script ![CDATA[ private function OnInit() : void

Re: [flexcoders] Am I missing something about ContextMenu?

2006-10-23 Thread Michael Schmalle
Ironically,I just wrote some classes that do this and I had noticed the same thing.I have a title bar in a window(my custom components) and I get the titlebar context menu.who knows. I have yet to put one in the window. Peace, MikeOn 10/23/06, Pan Troglodytes [EMAIL PROTECTED] wrote:

RE: [flexcoders] Flex Deployment Best Practices

2006-10-23 Thread David Mendels
Title: quote Hello, Roger's blog might be helpful: http://blogs.adobe.com/rgonzalez/flex/ -David From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John KirbySent: Monday, October 23, 2006 7:58 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Flex Deployment

Re: [flexcoders] Flex Deployment Best Practices

2006-10-23 Thread hank williams
I have been glancing at Roger's blog, for the last month or two, but the one thing I am not clear on is whether the work that he is doing reduces the all or nothing nature of the actual flex framework? I am very clear on how to modularize my own code, but if the flex framework's dependecies are

Re: [flexcoders] Questions about RTMP ports and channel definitions

2006-10-23 Thread Douglas McCarroll
Hi Stacy (and all), That makes perfect sense. But am I correct in guessing that code like this... uri=http://{server.name}:{server.port}/{context.root}/messagebroker/amfpolling ...indicates that our webApp is using the same port for AMF as other webApps? (I assume that server.port is defined

RE: [flexcoders] Questions about RTMP ports and channel definitions

2006-10-23 Thread Dustin Mercer
The server port in this context is actually the HTTP port of your server. The Flex Java architecture picks this up from the web server and binds it to that uri. The reason there is not a problem with that particular port is because it's the standard HTTP port. All web apps can share that

RE: [flexcoders] Flex Deployment Best Practices

2006-10-23 Thread Matt Chotin
The modules will help reduce your app and can be used to help reduce break the framework up as well so that only pieces that are needed will be in modules that youre using. We will have improved support + docs for that in the next release. We are also working on some

RE: [flexcoders] Questions about RTMP ports and channel definitions

2006-10-23 Thread Peter Farland
HTTP based channels endpoints share the same port for the reasons already discussed. If they are also in the same web application then they'll also share the same web application. In fact, they may also share the same servlet too. The thing that typically distinguishes the endpoint is the path

RE: [flexcoders] Flex Data Services painfully slow?

2006-10-23 Thread Matt Chotin
Is there a proxy server involved somehow maybe? There is no licensing throttling or anything like that. It just sounds like youre having routing problems or something similar? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ryanharlin Sent: Monday,

[flexcoders] Re: Reset Radio Button Group

2006-10-23 Thread Tim Hoff
Hi Sam, It looks like that method was depreciated. You can use the following function to reset the RadioButtons: public function resetRadioButtons():void{ var n:int = myRadioButtonGroup.numRadioButtons; for (var i:int = 0; i n; i++) { myRadioButtonGroup.getRadioButtonAt(i).selected = false; }}

Re: [flexcoders] Flex Deployment Best Practices

2006-10-23 Thread hank williams
My situation is not a huge app, but I think probably fits in a fairly mainstream situation.I have several sections that a user could access. I am most concerned about the access to my homepage which is going to get hit a lot. I really would like to have a homepage that was 200k rather than

Re: [flexcoders] Flex Deployment Best Practices

2006-10-23 Thread Carlos Rovira
Hi Matt,I'm very pleased to see Roger's module manager classes coming into the next updater of the flex framework. That's a very needed feature...maybe the number one for me and many others. Can't wait to get my hands dirty with the new stuff. Hope you could tell us something about when we

[flexcoders] Application load focus known issue?

2006-10-23 Thread Gareth Edwards
Is it just me? or does this seem like a severe limitation of using Flex to build applications. Comment from: http://www.adobe.com/devnet/flex/quickstart/validating_data/ // Set the focus on the first field so // user does not have to mouse over to it. // Note that the user still has to click

Re: [flexcoders] Flex Data Services painfully slow?

2006-10-23 Thread Paul Andrews
I can't really say about FDS being slow, but on other systems where we've had painful network transfers, it's often been followed back to a DNS routing problem. Paul - Original Message - From: Matt Chotin To: flexcoders@yahoogroups.com Sent: Monday, October 23,

Re: [flexcoders] Questions about RTMP ports and channel definitions

2006-10-23 Thread Douglas McCarroll
I'm getting a little clearer. Thanks Dustin and Stacy! On a practical level this boils down to a simple practical question: Do I need to worry about configuring HTTP and AMF ports when I have several webApps on the same server, like I must with RTMP? I'm pretty sure that the answer is no, but

RE: [flexcoders] Re: Looping through a DataGrid, in order to get Grand Total from 1 specific Column?

2006-10-23 Thread Gordon Smith
A DataGrid only creates enough rows to fill out its height. For example, if you have 1000 items in your dataProvider and the height of the DataGrid only allows you to see 10 of them, then it only creates 10 rows and it recycles them with new data as you scroll. This is how it can

RE: [flexcoders] horizontalGap not working.

2006-10-23 Thread Gordon Smith
horizontalGap is a style like backgroundColor, rather than a normal property like percentWidth, so you'd do hDivide.setstyle(horizontalGap, 8); - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of KP Sent: Monday, October 23, 2006 1:30 AM

RE: [flexcoders] Re: Lines in text area component

2006-10-23 Thread Gordon Smith
I'm getting error cause Boundaries in this case is Null object Sorry, Branko, but a little code snippet like this isn't enough to diagnose the problem. What's the text you're putting into the TextArea? What are you doing to trigger this code? You should post code for a minimal but

[flexcoders] HibernateTools?

2006-10-23 Thread Douglas McCarroll
Hi All, Has anyone on this list gotten HibernateTools (http://www.hibernate.org/255.html) to work in Eclipse? In specific, have you successfully reverse-engineered DBs to create Hibernate mapping files Java code? Any tips? TIA! Douglas -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Looping through a DataGrid, in order to get Grand Total from 1 specific Column?

2006-10-23 Thread Tim Hoff
As usual, thanks for the clarification Gordon. :) -TH___ Tim HoffCynergy Systems, Inchttp://www.CynergySystems.comOffice: 1.866.CYNERGY--- In flexcoders@yahoogroups.com, "Gordon Smith" [EMAIL PROTECTED] wrote: A DataGrid only creates enough rows to fill out its

RE: [flexcoders] Re: Looping through a DataGrid, in order to get Grand Total from 1 specific Column?

2006-10-23 Thread Mike Anderson
I agree - this was a very good clarification of how the DataGrid works - The Grid is simply a "representation of the Data" -dressing it upwiththe styles that we give it - but we can't treat the Grid as a Living Entity as it pertains to the Data. It's scary how much you forget when you

[flexcoders] Re: Flex Data Services painfully slow?

2006-10-23 Thread ryanharlin
How could I diagnose and identify routing and/or DNS problems? My setup is pretty basic. I'm coding at home the requests come into my router which is set up to forward port 8700 to the MacBook which is running Windows and hosts the DB, Coldfusion, and FDS. There's no DNS I'm running and I

[flexcoders] ATTN: Adobe Re: Does FDS project have to compile on the server?

2006-10-23 Thread Steven Toth
Has anyone from Adobe weighed in on this? I'm able to duplicate the problem. I have a two projects that use the Data Management Service over RTMP. One is compiled locally and does not work (same error as below). The other is compiled on the server with the same paramters/configuration and

[flexcoders] Custom DataGridColumn Component?

2006-10-23 Thread iko_knyphausen
I am trying to make a custom DataGridColumn that would take a few more attributes/properties than the standard DataGridColumn. The purpose would be to pass it a second dataProvider that would be used to populate an itemEditor, which in turn would be implemented as an inline Component in the

RE: [flexcoders] Custom DataGridColumn Component?

2006-10-23 Thread Gordon Smith
I think it should be possible to write an MXML component based on mx:DataGridColumn, although I've never tried it. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of iko_knyphausen Sent: Monday, October 23, 2006 6:27 PM To:

RE: [flexcoders] Custom DataGridColumn Component?

2006-10-23 Thread Iko Knyphausen
Yes, you are right, it almost works ;-) ...still fighting with scope and passing data some of the data.. I did not try DataGridColumn as a base at first, because its not offered in the custom component wizard as a based on component. Ill post it when I am done... Thanks - Iko

RE: [flexcoders] ATTN: Adobe Re: Does FDS project have to compile on the server?

2006-10-23 Thread Peter Farland
The error below indicates that RTMPChannel failed during connect. Can you list the command line to mxmlc that you're running, and more importantly the channel-definition for the RTMPChannel that is referenced by the data management service destination? Also, what URL are you using to load

RE: [flexcoders] Custom DataGridColumn Component?

2006-10-23 Thread Iko Knyphausen
Ok, here we go. Its a little bit of a trial and error fiddle, but this custom DataGridColum will actually accept an additional DataProvider, call an inline itemEditor, select the current datagrid cell value in the combobox upon creation, and return any desired data after a combobox

Re: [flexcoders] Flex Deployment Best Practices

2006-10-23 Thread Carlos Rovira
Hank,Both issues are important. Flex is a product born for enterprise applications (for intranets, extranets,etc...).It can be used for normal website as well, but maybe Adobe created it in the beggining to reach the big enterprise. Big apps is the normal basis in this kind of projects and