[flexcoders] Make label of LegendItem selectable

2009-07-10 Thread rleuthold
Hi, I try to make the text of the LegendItem label selectable, unfortunately with no luck. I thought this approach woud do the trick: 1.) Extend LegendItem 2.) override the set label and get label methods 3.) override the createChildren method In the createChildren() method I try to add a

[flexcoders] Upgrade only ASDoc.

2008-11-10 Thread rleuthold
Hi, Does anybody know if it's possible to upgrade to a newer version of ASDoc without having to upgrade the whole sdk ? It would love to use the new mxml asdoc feature but my app is not Gumbo ready at all. Thank's rico

[flexcoders] Re: TabNavigator - have to click twice on tab to display page

2008-09-27 Thread rleuthold
Maybe the issue is related to this bug - http://bugs.adobe.com/jira/browse/SDK-15974 _rico --- In flexcoders@yahoogroups.com, donald_d_hook [EMAIL PROTECTED] wrote: Tracy - thanks - thats what I have started to do... I appreciate the feedback from you and everyone else - thanks! --- In

[flexcoders] Re: FlexBuilder debugging kills ITunes

2008-09-21 Thread rleuthold
Is your mac starting to feel slower at the same time the iTunes begin to act shaky ? Do you debug with Firefox ? If so, check with Activity Monitor if your CPU is running at max ... If that is the case, try to do a fresh install of Firefox. With fresh I mean move the profiles and

[flexcoders] OS X: Flex Builder / Firefox 3 Debug Session Maxes Out CPU

2008-09-19 Thread rleuthold
Hi, When I debug my application with Flex Builder 3 and Firefox 3.0.1 (under OS X 10.5.5) and run into a breakpoint, where I want, for example, check some variables, the CPU is eaten up by the WindowServer process. This does not happen with Safari. Does anybody notice the same and found a

[flexcoders] Re: Java or C# from Flex

2008-09-19 Thread rleuthold
If you want to use Java in an AIR Application maybe this http://www.merapiproject.net/ is of interest. _rico --- In flexcoders@yahoogroups.com, zoltan [EMAIL PROTECTED] wrote: Hi, If you are using .NET you can try FluorineFx too Zoli www.fluorinefx.com _ From:

[flexcoders] Cursor Error: Bookmark no longer valid.

2008-09-10 Thread rleuthold
Hi, I'm using a ComboBox with an ArrayCollection as dataProvider. This ArrayCollection is the source of an AdvancedDataGrid GroupingCollection. If the users clicks on an item in the ComboBox,the ArrayCollection gets filtered: private function filterNodesInGrid():void { // assign

[flexcoders] Re: Resize from left to right

2008-08-16 Thread rleuthold
Hi Laurent, Thank's for the reply. After a long search in the archiv i found the solution. You can do the move and resize in parallel (don't remember the correct syntax): mx:Parallel id=shrinkToRight ... mx:Move xFrom={target.x} xTo={target.x + (target.width -20)} duration=500 /

[flexcoders] Slider with logarithmic scale

2008-08-04 Thread rleuthold
Hi, Has anybody created a slider class with a logarithmic scale ? Thank's _rico

[flexcoders] DataGrid horizontal ScrollBar not shown properly

2008-07-30 Thread rleuthold
Hi, I'm having a very wide DataGrid ( approx 4000px ). I'm setting the scroll policies to on. But the horizontal scroll bar is not shown properly. It doesn't show the right end and arrow of the scroll bar, so the user is never able to see the columns all to the right in the grid. It

[flexcoders] Re: TabNaviigator tabBar index doesn't update on selectedIndex change

2008-07-21 Thread rleuthold
Hi Jeff, Have you found a solution to this, cause I'm having exactly the same problem, and didn't found a way to solve it. _rico --- In flexcoders@yahoogroups.com, Battershall, Jeff [EMAIL PROTECTED] wrote: I'm using Flex 3 Beta 3. I have a TabNavigator component where the children are

[flexcoders] Irregular Polygon Area

2008-05-21 Thread rleuthold
Hi, Does somebody know of a class which calculates the area of an irregular polygon ? Thank's _rico

[flexcoders] Re: DateChooser setting displayedMonth, displayedYear does nothing

2008-05-19 Thread rleuthold
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rleuthold Sent: Sunday, May 18, 2008 8:10 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: DateChooser setting displayedMonth, displayedYear does nothing Hi Alex, thanks for the reply. I made a simple test case

[flexcoders] Re: DateChooser setting displayedMonth, displayedYear does nothing

2008-05-18 Thread rleuthold
has two elements with valid values? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rleuthold Sent: Saturday, May 17, 2008 6:05 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DateChooser setting displayedMonth

[flexcoders] DateChooser setting displayedMonth, displayedYear does nothing

2008-05-17 Thread rleuthold
Hi, I have a DateChooser in a popUp window. If I set the displayedMonth and displayedYear properties on that DateChooser (after creating the popup), nothing happens. The display is still on the month and year previously selected/displayed. Does anybody have an idea ? code (parent comp):

[flexcoders] pieChart (callout) labels not redrawn on drill down

2008-04-24 Thread rleuthold
Hi, I'm having a pieChart double click enabled, to get a drill down for the selected pieChart item. This drill down is displayed aside of the original chart. The problem is, that the labels for the original chart disappear (or do not get redrawn) when the original chart gets double clicked

[flexcoders] PieChart Legend customize label text in legend

2008-04-20 Thread rleuthold
Hi, I'd like to have legend label texts for a PieChart in the form of - PieSeries.nameField + sometext . Sounds simple but I couldn't find a way to accomplish. Can anybody point my to the right direction ? thanks_rico

[flexcoders] Flex SuperTabBar skin not updated when selecting tab programmatically

2008-04-07 Thread rleuthold
I'm using several SuperTabNavigators (They 're awesome !) from flexlib (Thanxs for flexlib ! ) but I have one problem (not able to solve it since weeks). After loading the contents for the SuperTabNavigator I'd like to select the first tab - superTabNav.selectedChild or

[flexcoders] SuperTabNavigator SuperTabBar skin not updated

2008-02-25 Thread rleuthold
Hi, I try to select a tab in a SuperTabNavigator after a data download is complete. There's no problem to select the tab, but the skin of the tab is not updated. Does anybody know how to refresh the SuperTabBar so the skin updates ? Thank's _rico

[flexcoders] DataGrid initial sort broken in latest FlexBuilder Beta SDK 3.0.0

2008-01-13 Thread rleuthold
Hi, Since I'm using the lastest FlexBuilder Beta with SDK 3.0.0, I have a problem with the initial sort of a dataGrid . The underlying ArrayCollection is in the desired sort order when the dataGrid is added. But the displayed dataGrid is in coomplete disorder. Versions of my Application

[flexcoders] Dual Slider component with date objects

2008-01-07 Thread rleuthold
Hi, I try to build a dual Slider component (based on flexlib HSlider) to filter an ArrayCollection (displayed in a data grid) with dates but can't figure out how to do it. The main problem is, that it is only possible to set Numbers as min/max values. Every idea is welcome. Thank's _rico

[flexcoders] AsDoc and libraries problem

2007-12-06 Thread rleuthold
Hi, I want to run asdoc (from command line) for my project, but always getting an error cause of the flexlib components I'm using (Error: Could not resolve flexlib:SuperTabNavigator to a component implementation). Does somebody have an idea how to exclude the flexlib components when running

[flexcoders] Force skin state

2007-11-20 Thread rleuthold
Hi, Is there a way to force a component to have a specific skin state (e.g. 'd like to set a tab of a tab navigator to the upSkin state). thanks_rico

[flexcoders] Flex Builder 3 Performance Profiling not working os x 10.4.10

2007-11-13 Thread rleuthold
Hi, I've tried to do a performance profiling of my App, following the Instructions on the Adobe Labs Page http://labs.adobe.com/wiki/index.php/Flex_3:Feature_Introductions:_Performance_and_Mem ory_Profiling (I quit Firefox before starting as well), but the Performance Profile Panel is always

[flexcoders] Component instances and Global events

2007-10-30 Thread rleuthold
Hi, I'm having an issue with the overall design of an application. My app consists of some kind of main Components (data browser comp , fil upload comp, chart browser, etc.) which are used in a SuperTab Navigator (flexlib). Multiple instances of these main components can be opened closed.

[flexcoders] new Date(unixTimeStamp) doesn't work (Flex 3)

2007-10-23 Thread rleuthold
Hi, If I understood the API for Date right, it should be possible to pass a unix time stamp (as a number and as the one and only argument) to the constructor and then have a normal date object. I try this: testDate:Date = new Date(1180166923); trace(testDate) // output: Wed Jan 14 16:49:26

[flexcoders] g.drawRoundRectComplex() opper left corner never round

2007-10-15 Thread rleuthold
Hi, I use g.drawRoundRectComplex(0,0,w,h,2,2,2,2) to skin my buttons. When I look at the graphical output, all the corners are round with a radius of two except the upper left one which is drawn with a corner radius of 0. Anybody has an explanation for that ? I'm using the Flex 3 Beta 2 SDK.

[flexcoders] DataGrid multi column sort - where is the sort arrow ?

2007-10-15 Thread rleuthold
sort. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rleuthold Sent: Monday, October 01, 2007 4:03 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid ArrayCollection numerical sort on multiple columns Hi

[flexcoders] Re: flexbuilder3beta2 - custom preloader issue/bug

2007-10-05 Thread rleuthold
I have a custom preloader problem too, and I'm really stuck. My preloader class is getting an xml used all around the application, so that I assign the xml to a Variable in the application file (Application.application). Hope somebody has information about that. --- In

[flexcoders] DataGrid ArrayCollection numerical sort on multiple columns

2007-10-01 Thread rleuthold
Hi there, I know, there are tons of posts in the archive about numeric sort with Data Grids and an Array Collection as Data Provider. But I couldn't find an answer to my problem in any of them. I'm atttaching a numerical sort to the Data Provider as described in the help (with sortFields

[flexcoders] sequential remote calls

2007-09-24 Thread rleuthold
Hi there, I want to have sequential RPC's. More precisly, I'd like to build DataGrids and get the data for each one from a database. My only problem is, that I have to wait for the RPC result to assign the data for the grid. How do I wait for the result handler ? Or better, how do I initiate

[flexcoders] Add methods to RemoteObjects with ActionScript

2007-09-18 Thread rleuthold
Hi there, Does somebody know how to create and add methods to RemoteObjects in ActionScript ? In mxml i do it like this. mx:method name=getData result=getDataHandler(event) fault=faultHandler(event) / ... must be possible to do it in AS ... I couldn't find something in the doc's ... With