[flexcoders] Re: WebORB or AMFPHP for big Application

2007-04-12 Thread Stefan Schmalhaus
--- In [EMAIL PROTECTED], Mark Piller [EMAIL PROTECTED] wrote: That said, it means all the features one would find in our .NET edition are going to be available in WebORB for PHP Can you already give us a rough timeline when the professional PHP edition of WebORB will be available? Stefan

Re: [flexcoders] Calling Webservice from disk to http

2007-04-12 Thread Ben
Tnx guys, that did the trick. So when going online, this won't be a problem if the swf is loaded of the same domain right? If it happens to be loaded from another domain, the solution is to add a crossdomain.xml to the webservive server? Tnx, Ben 11 Apr 2007 16:22:27 -0700, Muzak [EMAIL

Re: [flexcoders] swap Children?

2007-04-12 Thread Matt Wicks
Brilliant, thanks Gordon - not only a fix but also an explanation which is great much appreciated Matt On 12 Apr 2007, at 01:28, Gordon Smith wrote: You say your container is a DisplayObjectContainer. Is it also a Flex Container such as Canvas or VBox? If so, there is a bug with using

[flexcoders] custom datagrid item render not seeing changes made by custom datagrid item editor

2007-04-12 Thread shaun etherton
Hi, I'm having some trouble with a datagrid item editor and renderer. I think I must have missed something obvious. I have a datagrid with editable cells which are bound to Number-like properties of an object. I want to display these values using the CurrencyFormatter. I want to edit these as

RE: [flexcoders] mx_internal_uid Problem in Add Data

2007-04-12 Thread Alex Harui
If they are truly the same data, you should prevent them from being added twice. If they are clones/copies, then you can always delete the uid before copying it. However if you use strongly-typed classes instead of dynamic objects you shouldn't have this problem provided you clone them using

RE: [flexcoders] custom datagrid item render not seeing changes made by custom datagrid item editor

2007-04-12 Thread Alex Harui
are you dispatchng events when the dataprovider item changes or calling itemUpdated on the collection? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of shaun etherton Sent: Thursday, April 12, 2007 12:40 AM To: [EMAIL PROTECTED] Subject:

Re: [flexcoders] mx_internal_uid Problem in Add Data

2007-04-12 Thread Ju Aedis
Alex: Thanks, I edited the code : private function addFromTopDG():void { var obj:Object = ObjectUtil.copy(fromDG.selectedItem); obj.mx_internal_uid = UIDUtil.createUID(); (toDG.dataProvider as ArrayCollection).addItem(obj); obj = null; } this way can change the uid, you said I can

[flexcoders] Charts with dynamic series

2007-04-12 Thread Ryan
Hi All, I've been pulling my hair out trying to work out how to do this, sure it's pretty easy but I'm finding myself confused :-/ What I'm trying to do is create a line chart with a dynamic number of series. An example of the chart would be a line chart showing Sales per Month. I'd like to

Re: [flexcoders] Calling Webservice from disk to http

2007-04-12 Thread Muzak
That is correct ;-) regards, Muzak - Original Message - From: Ben [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 12, 2007 9:23 AM Subject: Re: [flexcoders] Calling Webservice from disk to http Tnx guys, that did the trick. So when going online, this won't be a problem

[flexcoders] Re: Granite Data Services 0.2.0 is out

2007-04-12 Thread fwolff999
Hi Akhil, Nothing like that... What do you mean exactly by metrics: benchmark, features comparison ? Regards, Franck. --- In [EMAIL PROTECTED], akhilbhaskar [EMAIL PROTECTED] wrote: Franck- This is pretty exciting! Do you happen to have any metrics for GDS vs. LCDS? Thanks -Akhil

Re: [flexcoders] Charts with dynamic series

2007-04-12 Thread Tom Chiverton
On Thursday 12 Apr 2007, Ryan wrote: ChartData [ArrayCollection] - series [ArrayCollection] - 0 [Array] (array of numbers, for the first year) - 1 [Array] (array of numbers, for the second year) - ..etc..etc.. - axis [ArrayCollection] - 0 [Array] (array of strings,

Re: [flexcoders] AS3 and MXML best practices

2007-04-12 Thread Tom Chiverton
On Thursday 12 Apr 2007, billbejeck wrote: I am new to Flex 2 and come from a java/web development background. What is considered best practice for separating behavior and presentation logic with respect to AS3 classes, AS3 scripts and MXML files? Cairngorm provides a good MVC approach and is

Re: [flexcoders] Charts with dynamic series

2007-04-12 Thread Ryan Barrett
On 12 Apr 2007 02:44:56 -0700, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 12 Apr 2007, Ryan wrote: ChartData [ArrayCollection] - series [ArrayCollection] - 0 [Array] (array of numbers, for the first year) - 1 [Array] (array of numbers, for the second year) -

[flexcoders] FW: Data Binding to Item in ArrayCollection

2007-04-12 Thread Dimitrios Gianninas
Forwarding... Dimitrios Gianninas Developer Optimal Payments Inc. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of davepelz Sent: Wednesday, April 11, 2007 11:43 AM To: [EMAIL PROTECTED] Subject: Re: Data Binding to Item in ArrayCollection Hey, Just

Re: [flexcoders] Charts with dynamic series

2007-04-12 Thread Tom Chiverton
On Thursday 12 Apr 2007, Ryan Barrett wrote: chartData.series contains a collection of series, so just mapping that doesn't help. Is that not what you want (one graph line for each series in chartData.series) ? -- Tom Chiverton Helping to dramatically supply mission-critical bandwidth on:

[flexcoders] DownloadProgressBar

2007-04-12 Thread Gautam
Hi, I am not able to change the background color of the DownloadProgressBar which I am using as my custom preloader. I am keeping MINIMUM_DISPLAY_TIME to 10 secs so that you can see in detail that the background color remains grey... I also need to change the progress bar's borderColor,

Re: [flexcoders] Re: Flex 1.5 Question

2007-04-12 Thread Jatin Nanda
Hi Doug, Alex, Thx for your emails. Got it to work, I just changed my cell renderer from extending UIComponent to extending VBox. Thanks for the hint :-) Cheers, J On 11 Apr 2007 17:59:53 -0700, Doug Lowder [EMAIL PROTECTED] wrote: Ah, sorry, I missed the fact that it was for a single

[flexcoders] Re: Granite Data Services 0.2.0 is out

2007-04-12 Thread fwolff999
Hi, I have also weird results with ejb3 demo, but it seems ok with pojo. I beleive this is (mainly?) caused by the systematic use of externalizers in ejb3 demo (service capture can't know about field names in IExternalizable objects since the class description is not serialized)... Regards,

[flexcoders] Versioning swf files for bug reporting

2007-04-12 Thread simonjpalmer
Does anyone have a good practice for holding version numbers in a flex swf file for display to the user and magically incrementing them as part of the build process? What I am looking for is suggestions about automatic incrementing of a piece of a version number, say major.minor.build, where the

[flexcoders] Re: Removing compiler problem markers?

2007-04-12 Thread simonjpalmer
Hate to be the one to suggest it, but does it persst if you close and re-start Eclipse? I find that I get a high degree of instability in Eclipse if I switch between the Flex Builder perspective (especially in design mode) and a Java perspective such as the debugger or J2EE. I often get permgen

[flexcoders] swf player file name

2007-04-12 Thread simonjpalmer
anyone know what the swf player file name is that forms the file association on Windows?

Re: [flexcoders] Re: Removing compiler problem markers?

2007-04-12 Thread Tom Chiverton
On Thursday 12 Apr 2007, simonjpalmer wrote: I often get permgen errors and abnormal termination which leave the Eclipse project locked and require a re-boot to free. Occasionally I Of your whole box ? That shouldn't be needed - just make sure all the Eclipse process' have gone, and remove

Re: [flexcoders] Versioning swf files for bug reporting

2007-04-12 Thread Tom Chiverton
On Thursday 12 Apr 2007, simonjpalmer wrote: Does anyone have a good practice for holding version numbers in a flex swf file for display to the user and magically incrementing them as part of the build process? We had ColdFusion generate the HTML wrapper page. It looked up the SVN revision

Re: [flexcoders] DownloadProgressBar

2007-04-12 Thread Angus Johnson
Hi Gautam, You're going to have to write your own draw methods. Look at the createChildren() and drawProgressBar() methods of DownloadProgressBar as a guide. The styling is hardcoded into those methods. You could copy and paste, override and customise with your own styling. hth Angus On 12

Re: [flexcoders] swf player file name

2007-04-12 Thread Muzak
You mean the executable that is used to display swf files when you open them? If so, it depends on which editor you installed last. You can check file type associations by going to: Control Panel -- Folder Options -- select the File Types tab, then look for the swf file type, select it and click

Re: [flexcoders] Re: Resize Component

2007-04-12 Thread Raphael R. Franco
Tanks Uber. Its tips had been very good. I solved the problem using: mx:Resize id=expand widthTo=300 heightTo=250 widthFrom=10 heightFrom=10/ mx:Image id=img source={dgProdutos.selectedItem.imagem} x=10 y=10 resizeEffect=expand/ Best Regards Raphael

[flexcoders] FDS example

2007-04-12 Thread Robs
Hi all, Does anyone have a good example of a FDS application with proper deployment instructions? I've just started with it am finding some things a bit confusing. PLease help ! Regards, Robi.

[flexcoders] Creating af filebrowser...

2007-04-12 Thread Morten Madsen
Hi Group! I need help! I am very new to flex, but know a little Flash and PHP. I need for create at Flex application that will contain a file browser and file uploader (I already have the uploading part done) But need alittle help with the file/directory browser. I want to create something

RE: [flexcoders] Time to start over: XML/dbentry pointstreethumbnailsmain image

2007-04-12 Thread Tracy Spratt
Shawn, I don't think starting over is necessarily the best approach. All apps are layers and pieces, and you can really only work on one thing at a time. So take your pick, and start with the UI first and work back towards the data, or start at the data and work up to the UI. I personally

[flexcoders] image manipulations data binding

2007-04-12 Thread Shyam
Hi, My app provides for some image manipulations and the I need to be able to do the following sequence of operations: 1) Rotate an image by 90 deg. 2) Rotate the image in step 1, by another 90 deg. 4) Save the image. However, I cant seem to be able to chain the effects together, so

[flexcoders] user configuration file

2007-04-12 Thread lruinelli
Hello! I'm developing an application which need some configuration parameter to run correctly. E.g. the url of servlet used change frequently (the application is in develop!)...and I have to update every time all the MXML file and recompile the application:-( ...in desktop win application for

Re: [flexcoders] timers and hibernating a pc/mac

2007-04-12 Thread Troy Gilbert
Who's throwing the exception? Are you getting a Flash Player error, a browser crash... what are you getting on the Mac, for example? Is it different under different browsers? Troy. On 11 Apr 2007 05:58:41 -0700, Johannes Nel [EMAIL PROTECTED] wrote: Hi All when i have a timer running and

[flexcoders] Bubble Charts (size of the bubble)

2007-04-12 Thread gaurav1146
Hi, I have created a chart which consists of LineSeries and bubble series something like mx:CartesianChart mx:Seriesmx:LineSeries../mx:BubbleSeries //mx:Series /mx:CartesianChart The sizes of the bubble initially displayed proportionately based on the radiusField in the

[flexcoders] Re: as3 - accepting a callback function name as input parameter to a function

2007-04-12 Thread vijay95052
yep - I just figured it and was going to post the workaround - and I see your post - love the prompt response, though. My workaround was: var fn:Function = call.callbck; fn.call(this); but you gave me 2 better ways of doing it... thank you so much regards Vijay --- In [EMAIL PROTECTED],

[flexcoders] Referencing methods in dynamically loaded swfs

2007-04-12 Thread gerardjamesmcbreen
I'm using the swfloader to load swfs which are named in an xml file: mx:SWFLoader source={results.result[r.currentIndex].src} id=myLoader creationComplete=initNestedAppProps(event) alpha=0.7 / All loads fine except I can't reference the loaded swfs via: public function

[flexcoders] Short-circuiting logical operators in AS3?

2007-04-12 Thread jandersen1978
I'm fairly new to AS3 coming from a javascript background. I noticed that I get an error when running the if statement below because dataProvider[i].data doesn't exist. if ( true || val == dataProvider[i].data) { selectedIndex = i; return; } In javascript the double OR

[flexcoders] Creating a filebrowser...

2007-04-12 Thread madsenmorten
Hi Group! I need help! I am very new to flex, but know a little Flash and PHP. I need for create at Flex application that will contain a file browser and file uploader (I already have the uploading part done) But need alittle help with the file/directory browser. I want to create something much

[flexcoders] Re: FDS example

2007-04-12 Thread meteatamel
Let us know what's confusing so we can help. -Mete --- In [EMAIL PROTECTED], Robs [EMAIL PROTECTED] wrote: Hi all, Does anyone have a good example of a FDS application with proper deployment instructions? I've just started with it am finding some things a bit confusing. PLease help

[flexcoders] Re: Bubble Charts (size of the bubble)

2007-04-12 Thread simonjpalmer
do you have the same set of bubbles visible after your slider magnification as before? The default bubbleseries sizes the bubbles *that are displayed* relative to one another based on the radius field (the series has a display list that it uses for sizing). If you add or remove bubbles the

[flexcoders] Re: Removing compiler problem markers?

2007-04-12 Thread simonjpalmer
thanks Tom, been wondering how I could do that without resorting to such a Dickensian measure as a reboot. Incidentally out of frustration I decided to get rid of some Eclipse plug-ins and one in particular seems to have altered my startup times and (so far) stability. Not wishing to point

[flexcoders] Re: FDS example

2007-04-12 Thread simonjpalmer
Don't have an example which is neatly wrapped up, but do have a successful fds deployment. What have you so far tried? Have you been to Conraet's blog and followed any of teh samples there? It is a good primer. http://www.coenraets.org/blog/ --- In [EMAIL PROTECTED], Robs [EMAIL PROTECTED]

[flexcoders] Re: user configuration file

2007-04-12 Thread simonjpalmer
check out flex sharedobject --- In [EMAIL PROTECTED], lruinelli [EMAIL PROTECTED] wrote: Hello! I'm developing an application which need some configuration parameter to run correctly. E.g. the url of servlet used change frequently (the application is in develop!)...and I have to update

[flexcoders] Re: swf player file name

2007-04-12 Thread simonjpalmer
yes, exactly! thanks very much. It was the flashplayer.exe that I was really looking for. --- In [EMAIL PROTECTED], Muzak [EMAIL PROTECTED] wrote: You mean the executable that is used to display swf files when you open them? If so, it depends on which editor you installed last. You can

Re: [flexcoders] Re: FDS example

2007-04-12 Thread Carlos Rovira
Start here: http://coenraets.org/blog/2007/01/flex-test-drive-server-for-java-developers-tomcat-based/ 12 Apr 2007 06:15:51 -0700, meteatamel [EMAIL PROTECTED]: Let us know what's confusing so we can help. -Mete --- In [EMAIL PROTECTED] flexcoders%40yahoogroups.com, Robs [EMAIL

[flexcoders] Re: Bubble Charts (size of the bubble)

2007-04-12 Thread gaurav1146
What you say seems fine that the size of bubbles should change based on the data set that is displayed. But the problem is that the size of all the bubbles that are on display after the slide do not change. Lets say if initially 6 bubbles were displayed on the chart and after the slide motion only

[flexcoders] Re: Versioning swf files for bug reporting

2007-04-12 Thread bhaq1972
Is there anything flexbuilder could generate and place into the html wrapper --- In [EMAIL PROTECTED], Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 12 Apr 2007, simonjpalmer wrote: Does anyone have a good practice for holding version numbers in a flex swf file for display to

[flexcoders] Re: Bubble Charts (size of the bubble)

2007-04-12 Thread simonjpalmer
I think it would be illuminating for you to set a breakpoint in the updateTransform method of the BubbleSeries class and check out what flex is doing with renderData.filteredCache. This is what it uses to compute the bubble sizes. You are right, there is no min bubble size, and the basic

[flexcoders] Re: Problems using SSL

2007-04-12 Thread Paul Strange
I had the same problem. Needed to insure the client was not caching the response so data would be current. Pragma is an HTTP/1.0 header spec. If your server is HTTP/1.1, you can drop the Pragma header and change the Cache-Control to no-store which was meant for backup caching, but works

[flexcoders] TabNavigator focus issues

2007-04-12 Thread freefallsv
I'm having the following issue. I have a layout of data seperated into 4 tabs. The first three hold different sections of data for the same product. All product data is recieved from the CFC and stored as an ArrayCollection. The fourth tab contains a TileList that is populated from that

[flexcoders] Re: Versioning swf files for bug reporting

2007-04-12 Thread simonjpalmer
wouldn't that be nice! Got anything in mind? I'd settle for an ANT task run from Eclipse which updated an XMl file or something. I was hoping that someone may have stepped in with an example to save me having to go and learn ANT. Nothing forthcoming... yet... --- In [EMAIL PROTECTED],

[flexcoders] Consulting Recommendations

2007-04-12 Thread Brian Holmes
I was wondering if anybody has had any good or bad experiences with flex consultants. We need to bring one in to my company for training and I was hoping to get some recommendations from ya'll. Thanks b. *** The information in this e-mail is confidential and intended solely for the

[flexcoders] Re: Coercion failed ArrayCollection with Objects inside Object AMFPHP 1.9

2007-04-12 Thread nxzone
My ArrayCollection class ?php class ArrayCollection extends ArrayObject { var $_explicitType = flex.messaging.io.ArrayCollection; //http://weierophinney.net/matthew/archives/131-Overloading-arrays-in-PHP-5.2.0.html public function __construct($config = array()) {

[flexcoders] Manipulating Captivate Flash Videos

2007-04-12 Thread gotjosh819i
Has anyone succesfully brought in a captivate SWF movie and manipulated it play(), stop(), etc... in Flex 2? I looked into it, but couldnt find any info on what commands a captivate SWF movie can take (currently exports in Flash 8 and lower). The only thing I can think of that might work is

[flexcoders] Is it possible to resize a Cursor dynamically?

2007-04-12 Thread Rick Schmitty
If I had a custom cursor, say a swf object, is it possible to size that object or do you have to embed each size you'd like to have? For example, say you had a drawing app with a brush stroke, and you wanted the cursor to reflect the size of the brush (which the user can adjust via slider bar)

[flexcoders] Re: Problems using SSL

2007-04-12 Thread iko_knyphausen
Thanks a lot. I will try it out and report back... --- In [EMAIL PROTECTED], Paul Strange [EMAIL PROTECTED] wrote: I had the same problem. Needed to insure the client was not caching the response so data would be current. Pragma is an HTTP/1.0 header spec. If your server is HTTP/1.1, you

[flexcoders] Re: Problems using SSL

2007-04-12 Thread Doug Lowder
Ran into the same problem here. The root issue is a bug in some versions of IE. You can apply an MS patch at all clients (likely not a feasible solution), or set the cache-control header to max-age=0, must-revalidate. That header seems to work across all browsers, with or without SSL. ---

[flexcoders] denying GETs on .NET WSDL web service file...

2007-04-12 Thread scott_flex
Has anyone, as part of their web service security, attempted to deny the verb get on their web services but still be able to call them in their actionscript code? Ionly only have one client (flex app) that will call my web services, and part of the security, as I have done in the past, is

RE: [flexcoders] mx_internal_uid Problem in Add Data

2007-04-12 Thread Alex Harui
You could also have done private function addFromTopDG():void { var obj:Object = ObjectUtil.copy(fromDG.selectedItem); delete obj.mx_internal_uid; (toDG.dataProvider as ArrayCollection).addItem(obj); obj = null; } We would auto-generate it for you.

RE: [flexcoders] TabNavigator focus issues

2007-04-12 Thread Alex Harui
Tabs that haven't been looked at don't have their children created yet for performance reasons. I think many folks use a pull-down strategy. You keep a central notion of what the current item is and each view widget binds to it. From: [EMAIL PROTECTED]

RE: [flexcoders] Short-circuiting logical operators in AS3?

2007-04-12 Thread Alex Harui
I know it works for From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of jandersen1978 Sent: Wednesday, April 11, 2007 8:58 PM To: [EMAIL PROTECTED] Subject: [flexcoders] Short-circuiting logical operators in AS3? I'm fairly new to AS3 coming from

RE: [flexcoders] Re: Flex 1.5 Question

2007-04-12 Thread Alex Harui
OK. FWIW, you could go back to UIComponent and use beginFill, moveTo/lineTo/endFill to draw the background yourself. It will be slightly faster and smaller than using VBox. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jatin Nanda Sent:

RE: [flexcoders] Referencing methods in dynamically loaded swfs

2007-04-12 Thread Alex Harui
content is valid until the complete event. creationComplete is too soon. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of gerardjamesmcbreen Sent: Thursday, April 12, 2007 5:03 AM To: [EMAIL PROTECTED] Subject: [flexcoders] Referencing methods in

[flexcoders] Pie chart number format issue

2007-04-12 Thread iko_knyphausen
Hi, it seems that the pie chart (and possibly other chart types) interprets 3,123.45 as 3.12345. Could be a locale issue - if so how do I force it? Thanks

Re: [flexcoders] Short-circuiting logical operators in AS3?

2007-04-12 Thread Troy Gilbert
Yeah, it definitely works for , I depend on it all the time. Not sure if I've specifically tried it with || though... Troy. On 12 Apr 2007 09:43:36 -0700, Alex Harui [EMAIL PROTECTED] wrote: I know it works for -- *From:* [EMAIL PROTECTED] [mailto:[EMAIL

Re: [flexcoders] denying GETs on .NET WSDL web service file...

2007-04-12 Thread Tom Chiverton
On Thursday 12 Apr 2007, scott_flex wrote: and part of the security, as I have done in the past, is deny any GETs on the WSDL file so someone can't easily determine all the methods exposed. I will be calling these services via SSL as well. They can determine that by watching the network

[flexcoders] Re: Tilelist in Flex 2 - what to use instead of getItemAt()?

2007-04-12 Thread erinwyher
Thanks for the suggestion. My new error is: value is not a function. This comes up on this new line: IList(myTiles.dataProvider).getItemAt(1).testFunction(); -Erin --- In [EMAIL PROTECTED], craig.drabik [EMAIL PROTECTED] wrote: Try using an ArrayCollection for your data provider instead of a

[flexcoders] Serialize Custom object and deserialize

2007-04-12 Thread nxzone
It possible to serialize a custom object (with custom objects inside), save it to a text file, load the file and create objects? class ModelLocator{ public var linksTypes:ArrayCollection= new ArrayCollection([ new LinkType(1,Cause), new

Re: [flexcoders] FDS example

2007-04-12 Thread James Ward
I have 3 or 4 with ant builds on sourceforge under the flexapps project. You will have to check them out of cvs. I think flexpaint and census are good ones that use fds. -James - Original Message - From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED]

[flexcoders] Re: denying GETs on .NET WSDL web service file...

2007-04-12 Thread scott_flex
I'll have to confirm what you can and cannot see by watching traffic when connected via SSL, i know the actual data is encrypted, which is all in the soap body, so I would assume the actuall method call is encrypted as well. I'll confirm... You definately see all off the soap message if not

RE: [flexcoders] Re: Tilelist in Flex 2 - what to use instead of getItemAt()?

2007-04-12 Thread Alex Harui
Erin, It looks like your array: var arrTest:Array = [1,2,3,4]; just contains numbers. IList(myTiles.dataProvider).getItemAt(1) should return 2; 2 is just a number so you it doesn't have a testFunction Did you intend to pass 2 into testFunction? That would be:

[flexcoders] Re: Localizing formatters without mx.resources

2007-04-12 Thread Chris Luebcke
My new best friend! :) Thanks again, Chris --- In [EMAIL PROTECTED], Gordon Smith [EMAIL PROTECTED] wrote: Adobe agrees enough that they're planning on adding runtime resource loading, I think in Flex 3 Yes, this will be in the next release. I'm the one implementing it. : ) - Gordon

[flexcoders] Re: user configuration file

2007-04-12 Thread Tony Obermeit
For the flex application, the configuration of which URLs to access etc can come from a single, server side configuration. That can be done however you need to with your server side language. To pass these configuration values in to your swf file, you need to dynamically generate the

[flexcoders] Bubble charts with only one bubble

2007-04-12 Thread simonjpalmer
Has anyone experienced the problem of a bubble chart with a single bubble not showing that bubble? If I add a second bubble the pair appear, if I remove one of them they both disappear. I have been inspecting the contents of the renderData on the BubbleSeries. When there is a single data

[flexcoders] Re: Flex Config File DTDs or Schemas

2007-04-12 Thread neilac3333
Well, that's the thing. I would love to provide an error message for you. And I had been getting quite a few error messages pertaining to not having this config file or that one until I finally had 6 config files in my build. Then, I got no errors at deployment. I was relieved, but then when

RE: [flexcoders] Short-circuiting logical operators in AS3?

2007-04-12 Thread Gordon Smith
I tried || and it short-circuits for me. Please post a complete miniapp with a case that doesn't work. - Gordon From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Troy Gilbert Sent: Thursday, April 12, 2007 9:49 AM To: [EMAIL PROTECTED] Subject: Re:

Re: [flexcoders] Calling Webservice from disk to http

2007-04-12 Thread Ben
Great, all clear ;) 12 Apr 2007 02:32:13 -0700, Muzak [EMAIL PROTECTED]: That is correct ;-) regards, Muzak - Original Message - From: Ben [EMAIL PROTECTED] bensmeets%40gmail.com To: [EMAIL PROTECTED] flexcoders%40yahoogroups.com Sent: Thursday, April 12, 2007 9:23 AM Subject: Re:

[flexcoders] Default Decoder could not decode result?

2007-04-12 Thread tommyhaych
Hi all, I'm having some major trouble with FLEX at the moment, even more so since it's for university! Anyway: Basically, what I'm doing is using this XML: http://ws.audioscrobbler.com/1.0/user/tommyhaych/topartists.xml and displaying the top 10 artists in a repeater. Each artist is represented

RE: [flexcoders] Default Decoder could not decode result?

2007-04-12 Thread Peter Farland
Have you tried using an HTTP sniffer to capture the traffic of the request and response when submitting to the php URL? Perhaps you're getting back an HTML-formatted error page instead of XML? Do you really need the result of the post to the PHP page decoded into AS3 objects? If not, try changing

[flexcoders] Tree component that doesn't display all nodes?

2007-04-12 Thread hosey hosey
The datasource is cb title=hello noshow title=dontshowanything/ cb title=there/ /cb I would like the tree to display -hello -there not -hello - -there Any ideas? Thanks Hosey

Re: [flexcoders] Re: user configuration file

2007-04-12 Thread Muzak
Look into FlashVars http://livedocs.adobe.com/flex/2/docs/1001.html http://livedocs.adobe.com/flex/2/docs/1005.html http://ray.camdenfamily.com/index.cfm/2006/12/11/FlashVars-in-Flex http://yakovfain.javadevelopersjournal.com/passing_parameters_to_flex_that_works.htm regards, Muzak

[flexcoders] Re: Time to start over: XML/dbentry pointstreethumbnailsmain image

2007-04-12 Thread shawn.gibson
Thanks Tom and Tracy. Sorry for the delayed response. My server is actually not even running...and SuperMicro just said to RMA it. Blah. I definitely want to do this, in the bigger scheme, myself, and I think it would be a useless endeavour to be asking you guys to build this for me...there's no

[flexcoders] Re: Tree component that doesn't display all nodes?

2007-04-12 Thread hosey hosey
The main issue being I want live data changes; such that if the xml changes a label the tree changes its label (this works on default tree component). There will be 400 nodes with 40 unwanted to be displayed nodes. On 4/12/07, hosey hosey [EMAIL PROTECTED] wrote: The datasource is cb

Re: [flexcoders] Re: Tree component that doesn't display all nodes?

2007-04-12 Thread dorkie dork from dorktown
if you use e4x format and regexp with your xml object then you can filter to show whatever data you want. i am not familiar with them enough to give you an example. note, you can also use regexp with xml. On 12 Apr 2007 15:30:51 -0700, hosey hosey [EMAIL PROTECTED] wrote: The main issue

[flexcoders] Re: Problems using SSL

2007-04-12 Thread iko_knyphausen
First of all, thanks much to everyone for helping out. You saved me a lot of head-ache. I ended up with the latest suggestion from Doug Response.CacheControl = max-age=0, must-revalidate (this is ASP/VBscript) This seems to do the trick ... -Iko --- In [EMAIL PROTECTED], Doug Lowder

RE: [flexcoders] FDS example

2007-04-12 Thread David Mendels
Start with the 30 minute test drive by Christophe http://coenraets.org/blog/2007/01/flex-test-drive-server-for-java-devel opers-tomcat-based/ : http://coenraets.org/blog/2007/01/flex-test-drive-server-for-java-develo pers-tomcat-based/ -David From: [EMAIL

[flexcoders] Re: Default Decoder could not decode result?

2007-04-12 Thread tommyhaych
Ooo you helped! The php address made me realise something - I wasn't running this on my localhost. It's adding something to the database!!! Just a cheeky question now - am I going the right direction with that checkbox array? I think i've just pasted random things in there hoping it would

[flexcoders] Flex with Rails

2007-04-12 Thread James McMahon
Hi flexcoders. Wanted to let you know we finally launched our site - Wisdomology.com - which uses Flex in combination with Ruby on Rails and Ajax (check out the eCards to see an example). We're very proud of it, and also want to thank you all for all the help you've given through your posts - we

[flexcoders] What does Unload swf mean technically?

2007-04-12 Thread arcencie1978
Hi guys~ I have some question about the message saying unload swf blah blah blah shown in the console panel. My question is what does it mean actually? Does it mean that the swf has been actually garbage-collected? Or simply does it mean that it has not been garbage-collected yet somehow been

Re: [flexcoders] Re: Tree component that doesn't display all nodes?

2007-04-12 Thread hosey hosey
Thanks, I dont believe that can work. If the data is xml cb title=hello noshow notitle=dontshowanything/ cb title=there/ /cb /xml and I set the datasource=data.cb then the tree appears with hello and all of the following tags. if I set the datasource =data..cb then I get an

RE: [flexcoders] What does Unload swf mean technically?

2007-04-12 Thread Alex Harui
It means the SWF has been garbage-collected. Just because an event listener hasn't been removed doesn't mean that something can't be GC'd. Suppose I have the following mx:Application . creationComplete=doSomething() When this gets loaded by a SWFLoader, the SWFLoader has a

[flexcoders] Odd behavior when calling DataService.getItem for multiple items.

2007-04-12 Thread parkerwhirlow
I'm using the same DataService repeatedly in my Cairngorm delegates, and calling getItem() as needed to get items. I'm using the call token to add a responder, and the strange thing is that in the result method of the responder, the event.result property is the SAME instance each time with the

Re: [flexcoders] custom datagrid item render not seeing changes made by custom datagrid item editor

2007-04-12 Thread shaun etherton
Hi Alex, Alex Harui wrote: are you dispatchng events when the dataprovider item changes or calling itemUpdated on the collection? No, I am not dispatching any events. I assumed the grid renderer would notice the value had changed. I guess I need to dispatch an event for this to occur. But I

RE: [flexcoders] custom datagrid item render not seeing changes made by custom datagrid item editor

2007-04-12 Thread Alex Harui
Yeah, the DG should kick the events but only when changing rows. Going from column to column in the same row does not kick an event (there's a performance reason behind it). Label shouldn't be different from DGIR, just heavier. Most of what you want to do you can do with DGIR. I really

[flexcoders] New flex forum for flex developers (German)

2007-04-12 Thread der07elfer
Today we have launched a new forum for Flex- and Apollodevelopers. Everybody is welcome. Discuss and have fun! :) www.flexhilfe.de

[flexcoders] Re: Bubble Charts (size of the bubble)

2007-04-12 Thread gaurav1146
Please mail me the overloaded bubble series class. My email address is gaurav1146 at yahoo.com TIA Gaurav --- In [EMAIL PROTECTED], simonjpalmer [EMAIL PROTECTED] wrote: I think it would be illuminating for you to set a breakpoint in the updateTransform method of the BubbleSeries class and

RE: [flexcoders] Odd behavior when calling DataService.getItem for multiple items.

2007-04-12 Thread Jeff Vroom
For the AS class, try implementing a toString():String method which returns a unique identity from the composite id object. Data management uses this to build a key to store the items in the cache. Jeff From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

[flexcoders] Re: Flex Config File DTDs or Schemas

2007-04-12 Thread meteatamel
In your flex installation, look for WEB-INF/flex/resources/config folder. There should be some sample configuration files (services-config.xml, remoting-service.xml, etc.) with all the explanations you need. -Mete --- In [EMAIL PROTECTED], neilac [EMAIL PROTECTED] wrote: Well, that's the

Re: [flexcoders] Re: Tree component that doesn't display all nodes?

2007-04-12 Thread dorkie dork from dorktown
i see. what i would do is use a lazy loading mechanism. so you only display the top level branches. when the user opens a branch then you lazy load the child nodes. when the user opens the branch then you can get the node they opened and filter the node they opened of all the noshow nodes. // in