RE: [flexcoders] Need to save Data in a database

2009-05-13 Thread Tracy Spratt
If you are using .net, then the simplest route is to use HTTPService to communicate with an aspx page. You do *not* need to select a server platform in your Flex project setup. There are several examples on cflex.net, here is one, but search there on "asp.net" for several others: http://ww

RE: [flexcoders] Re: Buggy HorizontalList

2009-05-13 Thread Tracy Spratt
Ugh, I don't use Cairngorm, so I can't speak for what is "right", but I think it is very risky to update the model in such a roundabout fashion. I would directly update the item inside the renderer. Hopefully a cairngorm user will speak up on this. But change it anyway, and see if it fixes

Re: [flexcoders] Need to save Data in a database

2009-05-13 Thread Shabir Gilkar
Hi! Tracy! Basically i have a form in which i have defined the fields which is to receive the data from employees, During the project creation i don't have defined the server platform, but i do have completed the form creation, Do i need to create new project in which i need to first define the Se

Re: [flexcoders] Adding a child to a child...

2009-05-13 Thread Steve Mercer
var myHBox:HBox = new HBox(); tempVBox.addChild(myHBox); etc... On May 13, 2009, at 12:07 PM, Laurence MacNeill wrote: Let's say I want to add, in actionScript, a VBox to my Canvas. var tempVBox = new VBox(); tempVBox.id = "myVBox" this.addChildAt(tempVBox, 0); Ok, fine. That's all well a

[flexcoders] Validation on ItemRenderers in DataGrid

2009-05-13 Thread Shailesh Mangal
I need to validate all the item renders within a DataGris on certain triggers from within dataGrid as well as out of dataGrid. Validation should provide feedback by marking the border red and error message on hover. I am wondering if any has faced similar issues. -Shailesh

[flexcoders] Re: Application Idea

2009-05-13 Thread foobone9
geni.com is a nice flex/flash family tree app. --- In flexcoders@yahoogroups.com, Brad Bueche wrote: > > Create a Family Tree. > > I mean the visual for the tree. > > Branches Nodes Leaves would be either text (Mother/Father, or Family Name) > OR > Branches Nodes Leaves would be thumb nail imag

[flexcoders] What's wrong with this linechart?

2009-05-13 Thread Trefalgar Bain
I've got two charts, one is 99% mxml (the 1% is actionscript defining the datasource definition), the other is mostly actionscript. The mxml works, the actionscript does not. Does anyone have any idea what in the world I'm doing wrong? I'd appreciate any pointers, despite how much it could sting.

Re: [flexcoders] Application Idea

2009-05-13 Thread Brad Bueche
Create a Family Tree. I mean the visual for the tree. Branches Nodes Leaves would be either text (Mother/Father, or Family Name) OR Branches Nodes Leaves would be thumb nail images. Mouse/over or hover over a branch, node, tree would bring up a little window with more info about that particular

[flexcoders] Re: Buggy HorizontalList

2009-05-13 Thread nathanpdaniel
Yes - I am using a custom ItemRenderer. Also of note (as per amy's suggestion) while Q2 DOES represent what is happening, all my data is bound to a model (I believe). So, I am overriding the set data method/property already, and upon setting the data property, I'm updating my model which is up

[flexcoders] Re: Does ADG work with Gumbo?

2009-05-13 Thread markgoldin_2000
Ok then :) So my question is: How to get ADG working using SDK 4? --- In flexcoders@yahoogroups.com, Tom Chiverton wrote: > > On Wednesday 13 May 2009, markgoldin_2000 wrote: > > I've got more results but I am not sure if it's fine to ask Gumbo questions > > here. > > It's fine as far as I know,

[flexcoders] can we create different mxml apps in different folder in flex3

2009-05-13 Thread coder3
Hi All, looks like all the mxml apps need to be under src. i know that different components can be under different folder, but can we have different individual apps in different folders? for example, if i have 10 small apps, i want them to be in one flex project, but in different folder under /

[flexcoders] Re: Adding a child to a child...

2009-05-13 Thread foobone9
Either get the child (VBox) back from the canvas using getChildAt and call addChild on it, or add children to it before you add it to the canvas. --- In flexcoders@yahoogroups.com, Laurence MacNeill wrote: > > Let's say I want to add, in actionScript, a VBox to my Canvas. > > var tempVBox = new

[flexcoders] Adding a child to a child...

2009-05-13 Thread Laurence MacNeill
Let's say I want to add, in actionScript, a VBox to my Canvas. var tempVBox = new VBox(); tempVBox.id = "myVBox" this.addChildAt(tempVBox, 0); Ok, fine. That's all well and good. Now, how do I add children to the VBox I just created? Thanks, Laurence MacNeill Mableton, Georgia, USA

Re: [flexcoders] Application Idea

2009-05-13 Thread Mark Winterhalder
On Wed, May 13, 2009 at 1:00 PM, kanu kukreja wrote: > I'm looking for an idea, so that i can create a application on based > on that idea in flash or flex. I assume you want a real-world app to learn by, because it's easier to learn if you have a proper goal. Right? These days, Twitter apps are

[flexcoders] Render HTML in FLEX

2009-05-13 Thread jadhav_pradip
Hi All, I am facing one problem, i want to display some html contents in my flex application. I tried that using iframe but its not working (If u click out side that iframe, then it will hide iframe). I want to do this with out using (AIR). I searched this on internet but i didn't get any solutio

Re: [flexcoders] change default browser...

2009-05-13 Thread [p e r c e p t i c o n]
thanks much! On Wed, May 13, 2009 at 3:46 PM, Alan Klement wrote: > > > Preferences>General>Web Browser > > > > On 5/13/09 6:30 PM, "[p e r c e p t i c o n]" > wrote: > > > > > > > Hi all, > > How do I set firefox as my default browser..my system recognizes it, but > FB3 still launches i.e. >

Re: [flexcoders] change default browser...

2009-05-13 Thread Alan Klement
Preferences>General>Web Browser On 5/13/09 6:30 PM, "[p e r c e p t i c o n]" wrote: > > > > > > Hi all,  > > How do I set firefox as my default browser..my system recognizes it, but FB3 > still launches i.e. > > thx

[flexcoders] change default browser...

2009-05-13 Thread [p e r c e p t i c o n]
Hi all, How do I set firefox as my default browser..my system recognizes it, but FB3 still launches i.e. thx p

RE: [flexcoders] Re: 2 Questions abot TextField in ActionScript

2009-05-13 Thread Gordon Smith
1. Did you try setting TextField's 'alpha' property? In Player 10, I think it works with both device and embedded fonts. In Player 9, I think it only works with embedded fonts. 2. I'm not clear on what kind of halo you want. Around a text border? Around every character? Around certain words? Ha

[flexcoders] Re: Validating items in DataGrids

2009-05-13 Thread foobone9
I would just create a custom item renderer who examines its own data and if it finds something it doesn't like it draws a red bordering using the drawing API in updateDisplayList. --- In flexcoders@yahoogroups.com, nhid wrote: > > Hi, > > I am also working on this problem, does anyone has an

[flexcoders] Re: Application Idea

2009-05-13 Thread Marius-Remus Mate
It has already been done (more or less). It's called Lita -- http://www.dehats.com/drupal/?q=node/59 Deane Venske wrote: If you want a challenge... flexmyadmin The flex version of PHP MyAdmin

Re: [flexcoders] Re: Validating items in DataGrids

2009-05-13 Thread nhid
Hi, I am also working on this problem, does anyone has an idea how to draw the red border when validation failed on a field in the datagrid? Thanks for any help. Nhi On Fri, May 8, 2009 at 2:50 PM, Ravi Suda wrote: > > > John, > I am working on a similar requirement. I want to show the mandato

RE: [flexcoders] Re: Getting an error when using a tree as a component

2009-05-13 Thread Tracy Spratt
Which line is throwing the error? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of timgerr Sent: Wednesday, May 13, 2009 10:12 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re:

[flexcoders] Re: Do we get any notification when user dissconnects from LCDS

2009-05-13 Thread foobone9
Create an object that implements the FlexSessionListener interface. Then set your object to receive the callbacks: FlexContext.getFlexSession().addSessionDestroyedListener(your Object); --- In flexcoders@yahoogroups.com, "Dharmendra Chauhan" wrote: > > Thanks Jeffrey, > > I am using RTMT cha

[flexcoders] Custom Alert - When I add more than one, the only one I can close is the top.

2009-05-13 Thread tchredeemed
This is what my code looks like: --- private static var _alertUI:GHAlertUI = new GHAlertUI(); public static const CUSTOM_EVENT:String = "GHAlertEvent"; public function GHAlert(){ } pu

RE: [flexcoders] Re: using "as" breaks data binding?

2009-05-13 Thread Alex Harui
"as" should be avoided for binding expressions. Should work fine elsewhere. I haven't proven it, but I think in this test case when you change the properties you'll get collection events and the renderers get refreshed. I think there would be some other scenario where if the object isn't in a

[flexcoders] Re: Tracy's search tree solution question ...

2009-05-13 Thread Mic
treeSlsHrchy.selectedItems.push( xmllistDescendants[i]); puts nothing in the selectedItems array i.e. nodes are opened but nothing selected. Modified the original example with this and it behaves the same. So the extra xml I added replacing is doing something I do not understand. Would it be

[flexcoders] Re: Flash Speed test - RESULTS !

2009-05-13 Thread tom93438
Wow! The penchant for tangets here is staggering. @Tom Chiverton - there a few scenarios where someone would be wise to ask for a frame rate above 30 fps (but probably not none) - but that does not mean that information on how browsers react to Flash apps asking for frame rates >30 FPS is usel

[flexcoders] Re: Flash Speed test - RESULTS !

2009-05-13 Thread valdhor
frame rate and refresh rate are two different things. There is no point in having a frame rate higher than the refresh rate. With an 8ms response time (On some LCD Displays) you have a refresh rate of 125. A frame rate higher than that would not be able to be displayed. --- In flexcoders@yahoo

Re: [flexcoders] Tree does not show scrollbar after inserting items

2009-05-13 Thread Dave Kong
Thanks for the feedback guys! We are still on SDK 3.0 (that's what our project is currently based on and probably not going to change for this release in fear of other regression). But it's certainly good to know that this issue has been addressed in newer Flex. I will also give refresh collectio

Re: [flexcoders] Flash Speed test - RESULTS !

2009-05-13 Thread Paul Andrews
That's the standard refresh rate for a lot of LCD monitors.. - Original Message - From: Thibaud Van Vreckem To: flexcoders@yahoogroups.com Sent: Wednesday, May 13, 2009 6:31 PM Subject: Re: [flexcoders] Flash Speed test - RESULTS ! Why on earth would you have your monito

[flexcoders] Re: Do we get any notification when user dissconnects from LCDS

2009-05-13 Thread Dharmendra Chauhan
Thanks Jeffrey, I am using RTMT channel, which interface I need to implement in order to get notification or I have.I mean what are the ways to implement it. I need to close some open connections to the backend system when Flex Client goes down. Regards, Dharmendra --- In flexcoders@yahoo

RE: [flexcoders] Tree does not show scrollbar after inserting items

2009-05-13 Thread Yves Riel
Funny, the example doesn't work on the adobe server but if you copy the code and recompile it, it works and I get the scroll bar. Maybe it's an SDK issue; I'm using the official 3.2 SDK release. Also, if you are using an array collection as data provider, maybe you can force a refresh of the coll

Re: [flexcoders] Flash Speed test - RESULTS !

2009-05-13 Thread Thibaud Van Vreckem
Why on earth would you have your monitor refresh rate at 30hz ? On Wed, May 13, 2009 at 10:42 AM, Tom Chiverton < tom.chiver...@halliwells.com> wrote: > Why on earth would you need to generate more frames per second than the > monitor can display (i.e. around 30) ? > > . > > __,_.__ >

[flexcoders] Re: Tree does not show scrollbar after inserting items

2009-05-13 Thread valdhor
Well, I decided to give it a go. The example at the bottom of the page you mention exhibits the exact problem you describe. So, I downloaded the source, created a new project in Flex Builder and pasted it. Guess what? The newly compiled version does not exhibit the same behavior; The vertical

[flexcoders] Tree does not show scrollbar after inserting items

2009-05-13 Thread Dave Kong
After some googling, this seems to be an existing issue with Tree refreshes and I haven't been able to find a good workaround. The issue can be repro'ed at one of Adobe's quickstart demo page: http://www.adobe.com/devnet/flex/quickstart/working_with_tree/ Go to the last example, and expand all

Re: [flexcoders] Do we get any notification when user dissconnects from LCDS

2009-05-13 Thread Jeffrey Vroom
The FlexSession object dispatches session closed events. For RTMP sessions, these will be pretty much immediate. For HTTP sessions though, they are dispatched when the session expires. So for RTMP you get quick notification but for HTTP it will be delayed based on your session expiration interva

Re: [flexcoders] Re: loading status for DataGrid

2009-05-13 Thread Jeffrey Vroom
The player does not provide status events for a single NetConnection "call" so there's no easy way to get the status events unless you break the requests into smaller pieces. There are two reasons I can think of that paging would slow down sorting. One is if you do not have all of the pages loaded

RE: [flexcoders] focus Rect around validator

2009-05-13 Thread Gregor Kiddie
Look at setBorderColorForErrorString in UIComponent. There is a couple of convolutions the code code through as it needs to retain the previous border colour, etc. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, Lon

[flexcoders] focus Rect around validator

2009-05-13 Thread djhatrick
What's the default style where the red focus rect that puts the halo around bad validated form items, I am having to set that style manually because it won't set on it's own... If you can tell me that would be appreciated, not sure otmh where that style is applied, but looking for it.. thanks

RE: [flexcoders] Profiler telling lies?

2009-05-13 Thread Gregor Kiddie
Again, only just got to this... The "same action another two times" was from following the advice in here http://livedocs.adobe.com/flex/3/html/help.html?content=profiler_7.html# 207205 and of course I meant another 3 times ;) I did find the issue eventually, though it was painful. You we

Re: [flexcoders] Re: using "as" breaks data binding?

2009-05-13 Thread Pan Troglodytes
I'm not sure I fully understand what you mean, Alex. In my button click code, I modify the properties. Could you clarify that? Do you also mind jotting in a comment on the but reports I entered to just confirm that you were able to reproduce it in 4.0? Does this mean "as" should be avoided and

[flexcoders] Re: 2 Questions abot TextField in ActionScript

2009-05-13 Thread ACasualObserver
Thanks, Gordon. 1- I would like to text translucent not its background. 2- I use TextField to put a text on the stage. I would like to be able to add halo to the text. This text is not part of UI. It is used to annotate the drawing.

[flexcoders] Re: Getting an error when using a tree as a component

2009-05-13 Thread timgerr
OK, Here is some code, this is my tree Component: [START] http://www.adobe.com/2006/mxml"; layout="absolute" creationComplete="Init();"> [/START] Here is my code calling the tree component: [START] http://www.adobe.com/2006/mxml"; layout="absolu

Re: [flexcoders] ColdFusion typed object problem - but not the usual issues

2009-05-13 Thread Tom McNeer
On Tue, May 12, 2009 at 8:36 PM, Peter Farland wrote: > > > You don't have two types mapped to the same alias by any chance do you? > I did, briefly, in my attempts to make it work. When the first class would never be recognized, out of frustration I created a new one, mapped to the same alias.

Re: [flexcoders] FlowBox Nesting

2009-05-13 Thread Mike Oliver
Thanks Doug, So how much was that bet? I replaced the FlobBox with FlowContainer and while yes the height did calculate properly so you were correct therebut alas it doesn't solve the problem. The new code follows but I won't upload the resulting .swf BECAUSE IT HANGS THE BROWSER, both IE a

[flexcoders] Re: Does ADG work with Gumbo?

2009-05-13 Thread markgoldin_2000
Aha, now I know why I am getting fatter and fatter. It's the Gumbo :) --- In flexcoders@yahoogroups.com, "Gregor Kiddie" wrote: > > Unless by Gumbo, you mean the food... then you might start getting some > funny looks... > > > > Gregor Kiddie > Senior Developer > INPS > > Tel: 01382 56

Re: [flexcoders] Application Idea

2009-05-13 Thread grimmwerks
Hey you guys - go back to your folk singing; I think Mary is looking for y'all. :P On May 13, 2009, at 8:49 AM, Paul Andrews wrote: > Well, I'm not the OP - just someone willing to make your clients > dreams come > true and let you put tour feet up.. ;-) > > I have more than enough ideas,

[flexcoders] Re: Application Idea

2009-05-13 Thread Tim Hoff
I once had to create an application that had a light bulb button. On mouse over the light bulb turned on. Would that help? -TH --- In flexcoders@yahoogroups.com, kanu kukreja wrote: > > Hello, > > I'm looking for an idea, so that i can create a application on based > on that idea in flash or

RE: [flexcoders] Re: Does ADG work with Gumbo?

2009-05-13 Thread Gregor Kiddie
Unless by Gumbo, you mean the food... then you might start getting some funny looks... Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577 Registered in the UK Visit our Internet W

Re: [flexcoders] Re: Does ADG work with Gumbo?

2009-05-13 Thread Tom Chiverton
On Wednesday 13 May 2009, markgoldin_2000 wrote: > I've got more results but I am not sure if it's fine to ask Gumbo questions > here. It's fine as far as I know, same as AIR :-) -- Helping to professionally envisioneer open-source corporate communities as part of the IT team of the year, '09 a

Re: [flexcoders] Application Idea

2009-05-13 Thread Paul Andrews
- Original Message - From: "Peter Hall" To: Sent: Wednesday, May 13, 2009 1:21 PM Subject: Re: [flexcoders] Application Idea > So - suddenly - ideas are not payment enough?! Well, I'm not the OP - just someone willing to make your clients dreams come true and let you put tour feet up

[flexcoders] Re: Does ADG work with Gumbo?

2009-05-13 Thread markgoldin_2000
I've got more results but I am not sure if it's fine to ask Gumbo questions here. --- In flexcoders@yahoogroups.com, Tom Chiverton wrote: > > On Friday 08 May 2009, Charles Parcell wrote: > > Could it be a professional license thing. > > That applies to watermarking of the results, not compil

Re: [flexcoders] Application Idea

2009-05-13 Thread ATIF
Lol good shot :d - Original Message - From: Jules Suggate To: flexcoders@yahoogroups.com Sent: Wednesday, May 13, 2009 4:33 PM Subject: Re: [flexcoders] Application Idea Why not write an application in Flex that other people can use for writing Flex applications? Then y

Re: [flexcoders] Application Idea

2009-05-13 Thread Peter Hall
So - suddenly - ideas are not payment enough?! Peter >>I have a few specs for upcoming client projects. How soon do you think >> you can get them completed for me? >> >> Peter > > "Very soon now" once your wire to my bank account has completed... ;-) > > Paul

Re: [flexcoders] Application Idea

2009-05-13 Thread Paul Andrews
- Original Message - From: "Peter Hall" To: Sent: Wednesday, May 13, 2009 1:10 PM Subject: Re: [flexcoders] Application Idea >I have a few specs for upcoming client projects. How soon do you think > you can get them completed for me? > > Peter "Very soon now" once your wire to my ba

Re: [flexcoders] Application Idea

2009-05-13 Thread Peter Hall
I have a few specs for upcoming client projects. How soon do you think you can get them completed for me? Peter On Wed, May 13, 2009 at 12:00 PM, kanu kukreja wrote: > > > Hello, > > I'm looking for an idea, so that i can create a application on based > on that idea in flash or flex. > > Thanks

Re: [flexcoders] Application Idea

2009-05-13 Thread Omar Fouad
LOL :D On Wed, May 13, 2009 at 2:34 PM, Jules Suggate wrote: > > > Hahahaha :D > > > On Thu, May 14, 2009 at 00:14, ATIF wrote: > >> >> >> Hi, >>Make an application in flex that helps you in generating new ideas from >> predefined sets of ideas.Which can also help you in comming up with tot

Re: [flexcoders] Application Idea

2009-05-13 Thread Jules Suggate
Hahahaha :D On Thu, May 14, 2009 at 00:14, ATIF wrote: > > > Hi, >Make an application in flex that helps you in generating new ideas from > predefined sets of ideas.Which can also help you in comming up with totally > new ideas on the base of those predefined ideas. > > > - Original Mes

Re: [flexcoders] Application Idea

2009-05-13 Thread Jules Suggate
Why not write an application in Flex that other people can use for writing Flex applications? Then your users will create the applications for you. Crowd-sourcing! On Wed, May 13, 2009 at 23:00, kanu kukreja wrote: > > > Hello, > > I'm looking for an idea, so that i can create a application on

[flexcoders] Re: Collaborative project: realtime ActionScript WMA converter

2009-05-13 Thread tottenkamen
Yes, this should be possible. Indeed the Rockbox team earned a spot in the Google Summer of Code 2007 to update the FFMpeg code to their use. The product of this is available in the apps/codecs directory of their builds, which you can find here: http://build.rockbox.org/ More information on th

Re: [flexcoders] Application Idea

2009-05-13 Thread ATIF
Hi, Make an application in flex that helps you in generating new ideas from predefined sets of ideas.Which can also help you in comming up with totally new ideas on the base of those predefined ideas. - Original Message - From: kanu kukreja Sent: Wednesday, May 13, 2009 4:00 P

[flexcoders] Application Idea

2009-05-13 Thread kanu kukreja
Hello, I'm looking for an idea, so that i can create a application on based on that idea in flash or flex. Thanks, kanu

RE: [flexcoders] Re: [Flex Modules]

2009-05-13 Thread Gregor Kiddie
Yes, you can run modules downloaded from other servers in AIR as well as in the Flash Player. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577 Registered in the UK Visit ou

[flexcoders] Re: [Flex Modules]

2009-05-13 Thread thelordsince1984
--- In flexcoders@yahoogroups.com, "Gregor Kiddie" wrote: > > The scenario in AIR isn't quite the same due to the restriction on > running remote executable code, but there is a solution of sorts. > > Check out Ethan Malasky's blog for more details. > > http://weblogs.macromedia.com/emalasky/ >

RE: [flexcoders] [Flex Modules]

2009-05-13 Thread Gregor Kiddie
The scenario in AIR isn't quite the same due to the restriction on running remote executable code, but there is a solution of sorts. Check out Ethan Malasky's blog for more details. http://weblogs.macromedia.com/emalasky/ Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Regi

[flexcoders] [Flex Modules]

2009-05-13 Thread thelordsince1984
Hi, A problem i have a Flex Application that runs in Flas Player..This application is able to run modules downloaded from other servers? is the same scenario valid for air applications? Thanks a lot Best Regards

RE: [flexcoders] Are you using the Marshall Plan?

2009-05-13 Thread Gregor Kiddie
Sorry, just got around to this one. I went back to read the documentation on the plan (cos I haven't since my rants on it last year) and found a whole load of updated documentation. I think I'm much happier with the descriptions in the most recent set of documentation. http://blogs.adobe.com/

Re: [flexcoders] create a file in system using AIR

2009-05-13 Thread kanu kukreja
Thanks a lot Sam Its working :) On Mon, May 11, 2009 at 10:19 AM, Sam Lai wrote: > > > Whoops, that link had a bookmark to the wrong section. Try this: > > The second way involves setting the nativePath property of a File > instance to the specific file or directory: > > // Create a new file inst

Re: [flexcoders] Chart tooltip issue

2009-05-13 Thread Tom Chiverton
On Monday 11 May 2009, richmcgillicuddy wrote: > need to set in order to have the tooltip recognize it will not fit to the > right of the datapoint and display it to the left so it doesn't get cut Check the source for the default class to see if there is some logic to do it, and then confirm you

Re: [flexcoders] Does ADG work with Gumbo?

2009-05-13 Thread Tom Chiverton
On Friday 08 May 2009, Charles Parcell wrote: > Could it be a professional license thing. That applies to watermarking of the results, not compiling. -- Helping to heterogeneously envisioneer granular network open-source patterns as part of the IT team of the year, '09 and '08 Tom Chiverton

Re: [flexcoders] Flash Speed test - RESULTS !

2009-05-13 Thread Tom Chiverton
On Saturday 09 May 2009, tom s wrote: > 1) You can't get higher than 60 FPS on Mac when you request 1000 FPS Why on earth would you need to generate more frames per second than the monitor can display (i.e. around 30) ? And, as you observe, sensible platforms limit the max frame rate in the play

Re: [flexcoders] removing some labels on chart axis

2009-05-13 Thread thomas parquier
isn't the labelFunction used to build/format the text of labels ? I could empty the string, but how to select labels matching given positions (ie index, not coordinates) ? thomas --- http://www.web-attitude.fr/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net téléphone

[flexcoders] Re: Tracy's search tree solution question ...

2009-05-13 Thread Mic
Thanks Tracy, as always much appreciated. --- In flexcoders@yahoogroups.com, "Tracy Spratt" wrote: > > Perhaps you should set the selectedItems array instead. > > treeSlsHrchy.selectedItems.push( xmllistDescendants[i]); > > > > Tracy Spratt, > > Lariat Services, development services availab