[flexcoders] Run Swf File in flash player.

2006-08-24 Thread Kumar
I am using below code for running an swf file. mx:SWFLoader id=Load source=@Embed(source='c:/flash.swf') height=100 width=350/ And this opens the file in explorer can we do some thing to open this file directly in flash player. Can anybody suggest some solution.

Re: [flexcoders] Adobe, Help Memory Leaking !!

2006-08-24 Thread Tom Chiverton
On Wednesday 23 August 2006 22:09, Rich Tretola wrote: If I am running the app on a machine with less ram will the browser use less memory? Is that what you are saying? Firefox certainly attempts to set some internal pool sizes based on the O/S RAM size. -- Tom Chiverton Helping to

Re: [flexcoders] Re: Flex 2 and document encryption

2006-08-24 Thread Tom Chiverton
On Wednesday 23 August 2006 20:22, Wally Randall wrote: only encrypts the message, NOT a document uploaded.Are there any action script libraries for DES3 out there? http://www.meychi.com/archive/21.php -- Tom Chiverton Helping to simultaneously architect advanced metrics

[flexcoders] Display rendered HTML in Flex?

2006-08-24 Thread daniel_croona
Hi! What approach would you recommend me to use if I want to achieve rendering of html the way a web browser would render it (i.e. recording to w3c recommendations) We are using Flex to manage a template based webpage. The preview of this has to be 100% the way it will appear in a browser.

[flexcoders] auto scale display objects inside a canvas

2006-08-24 Thread Dan Rossi
Hi there, i am trying to work out how to auto scale display objects inside a canvas if the canvas size changes, ie i have a set of labels/form items inside a canvas component. This component is then inside my main app set to 100% when the main app resizes i was hoping to also have the

Re: [flexcoders] Adobe, Help Memory Leaking !!

2006-08-24 Thread Rich Tretola
False is the default setting for recycleChildren, but I have also added it and tried it both ways.RichOn 8/23/06, Joshua Garnett [EMAIL PROTECTED] wrote: Have you tried setting the recycleChildren attribute of the Repeater to false? I believe when you have recycleChildren set to true, even

RE: [flexcoders] Display rendered HTML in Flex?

2006-08-24 Thread Dirk Eismann
Hi, you may want to try this one: http://www.deitte.com/archives/2006/08/finally_updated.htm Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of daniel_croona Sent: Thursday, August 24, 2006 11:37 AM To: flexcoders@yahoogroups.com

Re: [flexcoders] Need help identifying which Event to listen for

2006-08-24 Thread Michael Schmalle
I would think you could try the show / hide events also.The ViewStack would be making the next child visible as it is changing the selectedChild.Peace, MikeOn 8/23/06, Jeremy Lu [EMAIL PROTECTED] wrote: When selection changes, you can access current selected

Re: [flexcoders] FDS, VOs, and ignoring client-side properties

2006-08-24 Thread Jim Laing
2006/8/23, Seth Hodgson [EMAIL PROTECTED]: Try tagging the properties that you don't want managed in your [Managed] AS class as [Transient]. This should prevent changes to them from being logged/committed. Hahaha. That does exactly what I want! Thanks, Seth!! Incidentally, is that in the

Re: Re: [flexcoders] Re: How to refresh a tree

2006-08-24 Thread Marcel Fahle
Hey Guys, my problem was, that the tree was reacting weird when scrolling around after adding data to its dataprovider (XMLListCollection) using setChildren. (When the user clicks a branch node, it's childnodes should be loaded from my streamingserver (=returns XML)) I found out, that the

[flexcoders] passing data jsp to mxml using flex 2

2006-08-24 Thread sas_dbest
I have jsp page i want ro pass data from that jsp page to an mxml file. how do i do that? If anybody can come up with a sniplet. thank you -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Tree item in datagrid ??

2006-08-24 Thread pirvulescu_adrian
Can anybody tell me if it's possible to have a tree component in a datagrid item ? Pirvulescu Adrian Romania -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo!

[flexcoders] Re: How to cast a WebService lastResult when CFC returnType=xml

2006-08-24 Thread Mike Collins
I did this with HTTPService with returning an xml as a string from a cfm. The HTTPService resultformat is object. A combo box would us it this way. mx:ComboBox width=140 toolTip=Product Filter id=productlist dataProvider={getSearchCombos.lastResult.searchcombos.product} / This example shows

[flexcoders] ListCollectionView.contains( )

2006-08-24 Thread Webdevotion
Hello,Can someone explain me the use ofListCollectionView.contains( )? I can't get it to work.var keyword:String = txtSearch.text; if( !keywords.contains( {label:keyword} )) { keywords.addItem( {label:keyword} ); }tnx ! __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] How to assign NetStream to VideoDisplay component?

2006-08-24 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] Embed an image for a Sprite

2006-08-24 Thread polestar11
Hi there How does one attach an image to a sprite class? I have tried the following example, but nothing gets displayed on the screen: package { import flash.display.Bitmap; import flash.display.Sprite; public class MySprite extends Sprite{

RE: [flexcoders] Extending a subclass of Proxy

2006-08-24 Thread Yaniv De Ridder
Hello Danny, To use namespace you should use this syntax use namespace instead of import So just try that: use namespace flash_proxy; //instead of import flash.utils.flash_proxy; Cheers, De Ridder Yaniv Flex Consultant (Rich Internet Applications)

RE: [flexcoders] Re: Choice of backend systems - which provides best functionality

2006-08-24 Thread Darren Houle
Franck, Makes sense to me. Do you (or does anyone) know of any open/standards based architecture for this SOAP token security? Any OOTB solutions out there, or do I need to redesign the wheel? Thanks! Darren From: Franck de Bruijn [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com

RE: [flexcoders] Re: How to cast a WebService lastResult when CFC returnType=xml

2006-08-24 Thread Darren Houle
Mike, Yes, I'm good with HTTPService, it was WebService that was causing me the grief, but I'm good now. Thanks, Darren From: Mike Collins [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to cast a WebService lastResult when

Re: [flexcoders] ListCollectionView.contains( )

2006-08-24 Thread Michael Schmalle
Hi,Unfortunately, I think I remember looking at the source of the ListCollectionView and it only check object(item) reference.So what you are doing will not work. You could easily subclass ListCollectionView and override contains to do what you want there. Just create your own implementation.

Re: [flexcoders] Extending a subclass of Proxy

2006-08-24 Thread Michael Schmalle
Hi,It should be;package {// you need the import AND use namespace// if you don't have the import, the compiler has no idea what flash_proxy is in the namespace callimport flash.utils.flash_proxy;use namespace flash_proxy; public class ProxyB extends ProxyA {flash_proxy override function

[flexcoders] using the repeater with image

2006-08-24 Thread Webdevotion
I'm trying to get the data out of a clicked image:I'm working with the adobe flickr classes.mx:Tilemx:Repeater id=rp dataProvider={ photos } mx:Button click= dump.text = 'url is: ' +event.target.getRepeaterItem().url//mx:Repeater /mx:TileAll I get is [object

Re: [flexcoders] mx:ToggleButtonBar / mx:Button

2006-08-24 Thread Michael Schmalle
Hi,You don't put components in a dataProvider. The ButtonBar reads from the model of a dataProvider which has for example a label property in the list of objects.You can also just specify an array of strings to be the label names. The ButtonBar will always use a Button for it's button. ;-)

[flexcoders] Re: ListCollectionView.contains( )

2006-08-24 Thread Geoffrey Williams
- Returns whether the view contains the specified object. Unlike the IViewCursor.findxxx methods, this search is succesful only if it finds an item that exactly matches the parameter. trace ({label:keyword} == {label:keyword}); // false You can sort the collection, create a view cursor and use

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

2006-08-24 Thread Tom Lee
Id like to hear the first story that changing webservices by AMF increased the user experience significantly and sealed a certain business proposition. I was developing a Flash front-end for an existing .Net application. The Flash app used web services, whereas the .Net app was

Re: [flexcoders] Re: How to refresh a tree

2006-08-24 Thread Marcel Fahle
Hey Guys, my problem was, that the tree was reacting weird when scrolling around after adding data to its dataprovider (XMLListCollection) using setChildren. (When the user clicks a branch node, it's childnodes should be loaded from my streamingserver (=returns XML)) I found out, that the

Re: [flexcoders] Re: ListCollectionView.contains( )

2006-08-24 Thread Webdevotion
Thanks guys for your input ! __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS

[flexcoders] Re: Webservice Destination with Basic Authentication

2006-08-24 Thread Tom Ruggles
Hi someguy, Based on the traffic that you sent it appears that your WS app server is not blocking access at this point - the error is occuring in your Axis web service rather than at the web container level. And this error is complaining that there is no auth header. Here's my series of

[flexcoders] Re: Change HorizontalList column width based on content

2006-08-24 Thread ssundke
Can someone please look into this? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group on the web, go to:

[flexcoders] 1.5 : components can't be cached ??

2006-08-24 Thread Antoine Malpel
Hi there, I use Flex 1.5 /Tomcat 5.5 and I noticed that in my {appRoot}/WEB-INF/flex/log/flex{x}.log there is thse messages : 03/07 15:37:15 INFO Cached Component Loader: component Contact cannot be cached. 03/07 15:37:15 INFO Cached Component Loader: component BasDePage cannot be cached.

Re: [flexcoders] Adobe, Help Memory Leaking !!

2006-08-24 Thread Rich Tretola
A little update with some additional testing.I am running the exact same application on 2 machines, one has 2 gigs of system ram and the other has 128 megs of ram. On the machine with the low ram, the app runs with a much smaller ram footprint. Does the flash player allocate more memory than

[flexcoders] Re: Choice of backend systems - which provides best functionality

2006-08-24 Thread Dave Wolf
Given our own license we will almost always look towards developing on a J2EE infrastructure running on Apache Tomcat using Apache AXIS SOAP web services. This platform provides unquestioned scalability and reliability. Flex integrates absolutely seamlessly into this environment inlcuding RPC,

[flexcoders] Re: Embed an image for a Sprite

2006-08-24 Thread polestar11
Ok, I managed to figure out what the problem was from a previous post - one cannot add a sprite directly to a container, one has to first add it to a UIComponent type. Anyone with more info / experience with this? Cheers Tracy --- In flexcoders@yahoogroups.com, polestar11 [EMAIL PROTECTED]

[flexcoders] Re: Choice of backend systems - which provides best functionality

2006-08-24 Thread Derek Adams
WS-Security is the standard spec for securing web service calls. Most web service stacks have some level of support for it. Among the things it offers are username/token style security and encryption of some/all of the SOAP envelope. There is an overview and a few good links here:

[flexcoders] Looking for simplest way to transform a MenuBar event: mouseOver=click

2006-08-24 Thread Darin Kohles
I'm trying to capture a mouseOver event and propogate it as if it were a click event to control menu opening without forcing the user to actually click. Perusing the MenuBar.as and Menu.as class files, I've seen candidate functions, but they are either set as private or I get a 1061 or 1195

[flexcoders] Re: using the repeater with image

2006-08-24 Thread Oscar
uhmmm ... try with event.currenTarget.getRepeaterItem(). --- In flexcoders@yahoogroups.com, Webdevotion [EMAIL PROTECTED] wrote: I'm trying to get the data out of a clicked image: I'm working with the adobe flickr classes. mx:Tile mx:Repeater id=rp dataProvider={ photos }

[flexcoders] changing state of all itemrenderer instances?

2006-08-24 Thread tddclare
I have a list using a custom MXML item renderer: mx:List id=personList itemRenderer=PersonRenderer dataProvider={people}/ I'd like the user to have a checkbox in the main application to decide if they want to see the people's pictures in the list or not. On change of the checkbox, I'd like to

[flexcoders] Re: Flex 2 Final : Error #1009, in RadioButton/get labelPlacement()

2006-08-24 Thread Jason
Has anyone found a workaround to the bug with RadioButton groups and repeater components described here? I have having this same problem. --jason --- In flexcoders@yahoogroups.com, Benoit Hediard [EMAIL PROTECTED] wrote: I've investigated this issue a little bit more. It looks like there

[flexcoders] Passing data from JSP to Flex

2006-08-24 Thread Anas Mughal
I am new to Flex. Could someone help me with the following question.We have a struts-based application that we are gradually porting over to Flex. Currently, the user authentication (login screen) is done via a JSP page. A new module of the application is wrriten in Flex.We would like

Re: [flexcoders] Don't bindings work both ways??

2006-08-24 Thread Nate Hardt
Bind your outgoing data to a model and submit that to the server:mx:Model id="infoModel" info text2{text1.text}/text1 text2{text2.text}/text2 info/mx:ModelSend it to the server via an HTTPService:mx:HTTPService id="saveAny" method="POST"

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

2006-08-24 Thread Ted Patrick
Frank, RPC IS LESS THAN 25% OF FLEX DATA SERVICES!!! Flex Data Services is so much more that RPC. This entire discussion is really FDS.RPC to WebServices. FDS contains 4 major parts: 1. Messaging - ASMessaging and JMSMessaging 2. Data Management - Data Synchronization and Distributed

RE: [flexcoders] Don't bindings work both ways??

2006-08-24 Thread Mike Anderson
Thanks for that informative post - I guess I shouldn't post such (not dumb) but simplistic questions - I know better than that :) Since Flex 2.0 has added such intuitive new features - one of those being the ability to directly find a Value within a Grid or List control, without having

Re: [flexcoders] Adobe, Help Memory Leaking !!

2006-08-24 Thread Rich Tretola
Thanks Ted,I have another question that is somewhat related. Is there a difference in ram usage between the following:OPTION A: mx:HBox width=500 mx:Spacer width=100%/ mx:Label text=Hello World / mx:Spacer width=100%/ /mx:HBox OPTION B: mx:Canvas width=500 mx:Label text=Hello World

[flexcoders] Re: Don't bindings work both ways??

2006-08-24 Thread Stefan Schmalhaus
--- In flexcoders@yahoogroups.com, Nate Hardt [EMAIL PROTECTED] wrote: Bind your outgoing data to a model and submit that to the server: In terms of Cairngorm, is it possible to cast mx:Model id=myModel to a VO in the ModelLocator? Something like this: selectedUser = new UserVO(); selectedUser

[flexcoders] Limiting decimal places

2006-08-24 Thread Jeremy Rottman
In my application, I am doing auto calculations of dollar amounts that are based on several forumlas. The problem that I am having is that the some times the dollar amounts are coming out as something like this. 1499.9993939393939. I am trying to figure out how to limit the decimal places to

[flexcoders] Need drag drop example

2006-08-24 Thread Martina Smith
Hi,I need an example for simple drag drop operation using only the displayObject in flex 2.0. Can anyone please share it with me, If you have already done?The examplecan be as simple as flash's startDrag() (starts dragging) stopDrag()(stops dragging).I have tried using flex 2

Re: [flexcoders] Re: using the repeater with image

2006-08-24 Thread Webdevotion
This did the trick:mx:Image source=mypicture.jpg click=loadBigPhoto(event.currentTarget.getRepeaterItem()) / __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] How to get the row index double-clicked in a datagrid (AS3)

2006-08-24 Thread mcmcbrianfarrell
As a noob to flex I am having some difficulty with what in most other environments seems fairly trivial. How to get the row index in a grid I double-click on. It would seem that I get a doubleclick event regardless of where in a grid I do it. For my purposes I need the rowindex for the actual

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

2006-08-24 Thread Claus Wahlers
On a high quality machine, WS can take 400ms, but on a slower machine it can take 3-10 seconds for a single call and the larger the data exchanged, the worse it gets. Not good. Aren't you exaggerating a bit here? Can you give a real world example of a SOAP XML that takes 400ms to

[flexcoders] Re: Is it possible to embed a html page in Flex application?

2006-08-24 Thread flexnewbie06
I just wanted to update this post, this is a link to embed an html page in Flex 2.0 (updated). And I tested it on my local machine. Works great! http://www.deitte.com/archives/2006/08/finally_updated.htm Jenn --- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote: Here is

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

2006-08-24 Thread tddclare
I have a few lists whose items I want to drag and drop to another component. I can roll my own and code the entire drag/drop operation, but I'm lazy. I looked at the list-based drag and drop features, which look cool: mx:List id=personList dragEnabled=true / mx:List id=eventList dragEnabled=true

[flexcoders] draggable rows in datagrid

2006-08-24 Thread Nate Hardt
Hello, I need to be able to drag rows as well as columns in a datagrid. I haven't seen anywhere that this is possible. My first question is, is there an easy way to do draggable rows? My plan, if no one else has built something like this, is to subclass the DataGrid control or DataGridBase

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

2006-08-24 Thread Tom Lee
I can vouch for that statement, from my own personal experience. If you're working with large amounts of data, the lag is quite unacceptable. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Claus Wahlers Sent: Thursday, August 24, 2006 1:00 PM

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

2006-08-24 Thread Ted Patrick
No I am not exaggerating. Run a Web Services call on my mothers old Dell and you can count the seconds. When AMF was first added to Flash Player 6, the primary reason was performance on slow machines. AMF was much faster then and it remains the case. XML parsing performance decays

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

2006-08-24 Thread Tom Lee
One key enterprise objection to using AMF is the lack of AMF clients for integration. Would non-flash clients for AMF and Messaging help? I can understand why it would be difficult to shell out $20K per proc for something that is solely for the Flash platform. That's almost as much as SQL

[flexcoders] Re: Limiting decimal places

2006-08-24 Thread Darin Kohles
Use a Currency Formatter: // import the class import mx.formatters.CurrencyFormatter; // in code create and instance and set the format (also include $|,|. selection) var cashFormatter:CurrencyFormatter = new CurrencyFormatter(); cashFormatter.precision=2; // apply the format to the raw and

[flexcoders] Re: Passing data from JSP to Flex

2006-08-24 Thread iviivi_us
I have posted the example before, take a look: http://groups.yahoo.com/group/flexcoders/message/42468 --- In flexcoders@yahoogroups.com, Anas Mughal [EMAIL PROTECTED] wrote: I am new to Flex. Could someone help me with the following question. We have a struts-based application that we

[flexcoders] Re: changing state of all itemrenderer instances?

2006-08-24 Thread Darin Kohles
Look into using the dataChange event in your renderer class. Basically this event fires whenever the dataProvider is changed on your list: this should include reapplying the same dataprovider that was previously assigned. I'd apply a change event function on your check box that basically

Re: [flexcoders] Re: Remote object help again..

2006-08-24 Thread Jeremy Rottman
Mark you advice worked like a charm. It now sees my destinations. And thanks to you jeff, that is a handy trick. On 8/23/06, Mark Piller [EMAIL PROTECTED] wrote: Hey Jeff, This is very helpful. I didn't know about the trace(ServerConfig.xml) trick. Would it

Re: [flexcoders] Don't bindings work both ways??

2006-08-24 Thread Nate Hardt
Ahh, I mistook your question as being from someone who was just getting started, like myself. Maybe with Cairngorn, RemoteObject or FDS you can do more what you are looking for. It looks like your server language will make the most difference on what is available. From here I gotta leave you to

[flexcoders] Flex DataGird CFC Query Call Help

2006-08-24 Thread David Smithers
Hello, I'm trying to populate a datagrid with data from a web service. I do not know what I'm doing wrong please help. Everything compiles but nothing is populated in the grid. Here's my CFC Code cfcomponent cffunction name=getData access=remote returntype=query cfquery name=ELogs

Re: [flexcoders] Don't bindings work both ways??

2006-08-24 Thread Michael Schmalle
Hi,I don't know if this helps or not but,I use the change event in the textinput to update the model.Then when you want to update to the server the model is current.mx:TextInput id=userName text={model.userName} change={model.userName = userName.text}/then you can submit the model with

[flexcoders] SecureAMF: SSL Handshake Prob

2006-08-24 Thread Stacy Young
Hi all, Anyone run into this when using AMF over SSL? ... 08/24 13:47:37 DEBUG Optimizing... 960ms 08/24 13:47:37 DEBUG Total time: 11864ms 08/24 13:47:38 DEBUG SWF Encoding... 420ms Aug 24, 2006 1:47:39 PM EDT Warning Security BEA-090476 Invalid/unknown SSL header was received from peer

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

2006-08-24 Thread Douglas Knudsen
shouldn't we qualify some of this with 'depends on what data you are moving'?? I'm finding that using a REST call to return XML can be WAY faster then using RemoteObject for a reporting tool. In this case I could care less about the magically uber kewl mapping of AS -- CFC/POJOs, eh? DKOn

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

2006-08-24 Thread ryanm
I am sure there are many smart people out there who will get WebServices to work well for them with Flex. It is a lot of hard work to make this work well and I have only seen one company do it really well. I do not doubt that others will make this work reliably but I question its use. It

Re: [flexcoders] Don't bindings work both ways??

2006-08-24 Thread Michael Schmalle
I think using HTTPService is the older model for doing things. No, you use it when you are not using FDS or do not have access to it or the money. ;-)Don't feel bad, you are not alone and everybody is not an enterprise either. See the ongoing 50 thread post on this in the last 3 days.Peace,

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

2006-08-24 Thread envidobi
Hi all, Anyone know how i could display HTML text in a datagrid column? Haven't seen any examples or tutorials on the subject. Thanks, David -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [Junk E-Mail - LOW] [flexcoders] Flex DataGird CFC Query Call Help

2006-08-24 Thread Shannon Hicks
In order to return a ColdFusion query object as an Array Collection, you have to be using a remote object (flexgateway in 7.0.2), not a web service. If you need to use web services, you have to turn that query into an array of structures before sending it back. Shan From:

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

2006-08-24 Thread hank williams
I have to agree with Ted regarding productivity.Of course I may just be revealing that I am not as smart as the rest of you, but when I was considering various means of connecting to my java server during the transition to Flex2, I explored Axis and Axis2 for web services. Figuring out how to

RE: [flexcoders] specifying a percentage width in script?

2006-08-24 Thread Yaniv De Ridder
Hello Doug, Try space.percentWidth=100% /yaniv From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Doug Arthur Sent: Thursday, August 24, 2006 7:06 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] specifying a percentage width in

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

2006-08-24 Thread Claus Wahlers
No I am not exaggerating. Run a Web Services call on my mothers old Dell and you can count the seconds. When AMF was first added to Flash Player 6, the primary reason was performance on slow machines. AMF was much faster then and it remains the case. XML parsing performance decays

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

2006-08-24 Thread Oscar
I would create an ItemRenderer and use either a Label or a Text tag, both have an htmlText property. No all the html tags are available tough. --- In flexcoders@yahoogroups.com, envidobi [EMAIL PROTECTED] wrote: Hi all, Anyone know how i could display HTML text in a datagrid column?

[flexcoders] Re: specifying a percentage width in script?

2006-08-24 Thread stevehousefl
Set the percentWidth or percentHeight property instead. Steve --- In flexcoders@yahoogroups.com, Doug Arthur [EMAIL PROTECTED] wrote: How can I specify spacer.width = 100%??? It throws an error because 100% is not an int. Thanks! -- Flexcoders Mailing List FAQ:

Re: [flexcoders] specifying a percentage width in script?

2006-08-24 Thread Michael Schmalle
Hi,UsemyComponent.percentWidth = 100;Peace, MikeOn 8/24/06, Doug Arthur [EMAIL PROTECTED] wrote: How can I specify spacer.width = 100%??? It throws an error because 100% is not an int. Thanks! -- What goes up, does come down.

Re: [flexcoders] specifying a percentage width in script?

2006-08-24 Thread Brian Dunphy
I think you may have to determine the width of the outer container and calculate the percentage (in pixels) the manual way.Thanks,BrianOn 8/24/06, Doug Arthur [EMAIL PROTECTED] wrote: How can I specify spacer.width = 100%??? It throws an error because 100% is

[flexcoders] Re: specifying a percentage width in script?

2006-08-24 Thread Darin Kohles
In ActionScript there is a property available that is not available in MXML, and it is. [drum roll] percentWidth !!! (and of course percentHeight) In some of the betas this was also available in MXML. --- In flexcoders@yahoogroups.com, Doug Arthur [EMAIL PROTECTED] wrote: How can I

Re: [flexcoders] specifying a percentage width in script?

2006-08-24 Thread Tom Ortega
I had this problem too, you'll be mad about the simple answer. =)percentWidthLOL.Enjoy!-Tom2On 8/24/06, Brian Dunphy [EMAIL PROTECTED] wrote: I think you may have to determine the width of the outer container and calculate the percentage (in pixels) the manual

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

2006-08-24 Thread Ted Patrick
Claus, The specific case here is using WebServices which is additive to using just XML. Ted From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Claus Wahlers Sent: Thursday, August 24, 2006 11:33 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Items Invisible in ComboBox

2006-08-24 Thread stevehousefl
I have a very standard combobox control: mx:ComboBox id=cbStatus dataProvider={statusesWithAll} labelField=sStatus change=filterChange()/mx:ComboBox When I click on it and it opens, some items are invisible. The space for them is there, but the text is missing. If I select an invisible item,

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

2006-08-24 Thread Ted Patrick
FDS Express == 1CPU FREE FDS Express == 1CPU FREE FDS Express == 1CPU FREE FDS Express == 1CPU FREE FDS Express == 1CPU FREE FDS Express == 1CPU FREE FDS Express == 1CPU FREE FDS Express == 1CPU FREE FDS Express == 1CPU FREE FDS Express == 1CPU FREE FDS Express == 1CPU FREE

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

2006-08-24 Thread Jack Caldwell
Ted: How many concurrent users can FDS Expresssupport? On the departmental version, if the 101st concurrent user tries to connect is there an error message or busy message or do they just wait a little longer to get the data? Thanks, Jack From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Flex 2 Final : Error #1009, in RadioButton/get labelPlacement()

2006-08-24 Thread Benoit Hediard
Hi Jason, Yes, I found one workaround to this issue. Use the repeatEnd event to execute a function that will assign the groupName to each one of your RadioButton. Use also this function to assign the selected button (because the bindings are a source of the problem). Benoit Hediard

[flexcoders] Launch Failed error

2006-08-24 Thread Ken Bromberger
Hi all, When I have two application files in a project, I cant get Flex to debug/launch the new one. The error I get is Launch Failed, File not found. It looks like Flex is not creating the HTML file for the swf. Any tips?? -Ken __._,_.___ -- Flexcoders Mailing

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

2006-08-24 Thread hank williams
FDS NOT FREE AFTER THE FIRST SERVER FDS NOT FREE AFTER THE FIRST SERVERFDS NOT FREE AFTER THE FIRST SERVER FDS NOT FREE AFTER THE FIRST SERVERFDS NOT FREE AFTER THE FIRST SERVER FDS NOT FREE AFTER THE FIRST SERVER FDS NOT FREE AFTER THE FIRST SERVER FDS NOT FREE AFTER THE FIRST

[flexcoders] ControlBar added in script display issues...

2006-08-24 Thread Doug Arthur
I'm creating a popup with a progress bar and a cancel button, I want to add a controlBar container, but it's not padding the width of the container properly, any help would be great. Below is the code:progressStatus = PopUpManager.createPopUp(Container(Application.application), TitleWindow,

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

2006-08-24 Thread Oscar
OK, Here is an example : ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script ![CDATA[ [Bindable] public var myArray:Array =

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

2006-08-24 Thread hank williams
Hate to jump in, because I see your question is targeted at ted, but I have to say one thing. The issue isnt how many users FDS Express can support but how many users your entire application can support per server. Because FDS is just a piece of your web application (WAR). So if you are doing

RE: [flexcoders] Can Flex Data Services Compile on the Fly?

2006-08-24 Thread Ted Patrick
Yes FDS contains a Web Tier Compiler. In any webapp with FDS enabled, simply drop an MXML file and call it from a URL like so: http://myserver/mywebapp/app.mxml This will be compiled on first call and will only be recompiled when the source MXML changes. Ted Patrick Flex

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

2006-08-24 Thread Dustin Mercer
Something I have done in the past is to create a hybrid solution. One of the biggest advantages of Web Services is of course its ability to be consumed by just about everything. That being said, Java can consume web services! I have found creating Web Service Facades that FDS connects

[flexcoders] Re: Problems interpolating a BarChart

2006-08-24 Thread trader230
--- In flexcoders@yahoogroups.com, ben.clinkinbeard [EMAIL PROTECTED] wrote: I have a BarChart that is displaying its data correctly. I also have a combobox that, upon its change event, calls a function that repopulates the BarChart's dataProvider. The BarChart updates its display as

Re: [flexcoders] Blitz XRay

2006-08-24 Thread John Grden
http://www.osflash.org/xray#connectors_8.11.2006Let mek now if you have any questionsJPGOn 8/24/06, Chad Callahan [EMAIL PROTECTED] wrote: I was looking at http://osflash.org/xray for the XRay connector for Flex2 but couldn't find any downloads or

[flexcoders] Can Flex Data Services Compile on the Fly?

2006-08-24 Thread this_is_louie
Hi, I'm new to flex and curious about the capabilities of it. From what I understand, Flex 1 was originally a server architecture where it would only compile server side. Now that flex 2 is out, can FDS still compile on the fly? If it can, can you point me in the right direction? Thanks

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

2006-08-24 Thread Evert | Collab
You are forgetting that if a request takes half the time to complete, it needs less cpu time and you can double the concurrent requests per server. Evert Dave Wolf wrote: I simply have to disagree here. We can demonstrate several in production applications which we have developed using SOAP

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

2006-08-24 Thread envidobi
Hi Oscar, Thanks a bunch for replying. I've had about 10 posts now and i've not gotten a single reply. Thanks for your time! :) I get what you're doing but if i'm getting data from a remote object how would i display it? Hers's what i have thus far (and you'll have to excuse my beginner skills

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

2006-08-24 Thread hank williams
I am not clear how what you are talking about relates to the problems that ted described. Regards Hank On 8/24/06, ryanm [EMAIL PROTECTED] wrote: I am sure there are many smart people out there who will get WebServices to work well for them with Flex. It is a lot of hard work to make this

[flexcoders] Blitz XRay

2006-08-24 Thread Chad Callahan
I was looking at http://osflash.org/xray for the XRay connector for Flex2 but couldnt find any downloads or links to it. If anyone knows where to download the connector for Flex2, please email me a link. Thanks CHAD CALLAHAN PROGRAMMER T8DESIGN.COM

Re: [flexcoders] Can Flex Data Services Compile on the Fly?

2006-08-24 Thread hank williams
Yes it can compile on the fly. When you install FDS and then create a new Flex application it will bring up a dialog box that asks if you want the app to be compiled on the fly. Regards, Hank On 8/24/06, this_is_louie [EMAIL PROTECTED] wrote: Hi, I'm new to flex and curious about the

[flexcoders] Re: Need drag drop example

2006-08-24 Thread gotgoose09
This link might help you. http://www.adobe.com/devnet/flex/quickstart/adding_drag_and_drop/ --- In flexcoders@yahoogroups.com, Martina Smith [EMAIL PROTECTED] wrote: Hi, I need an example for simple drag drop operation using only the displayObject in flex 2.0. Can anyone

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

2006-08-24 Thread Tom Lee
Several of these posts now have seemed to indicate environments where the Flex developer has the capability to manipulate the server side to their liking. Yes, you can squeeze a lot of performance out of any transport method if you can manipulate it as you see fit. I wonder if that scenario is

RE: [flexcoders] SecureAMF: SSL Handshake Prob

2006-08-24 Thread Stacy Young
p.s. my cert has been imported into the JVM From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stacy Young Sent: Thursday, August 24, 2006 1:58 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] SecureAMF: SSL Handshake Prob

  1   2   >