RE: [flexcoders] Slow Memory Leak with PopUpManager and TitleWindow

2007-08-31 Thread Alex Harui
Please explain further. Calling myPopUp.addEventListener will not keep the popup in memory. Instead the popup gets a reference to the object that will be called when the event is dispatched. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] Scroll Accordion Headers

2007-08-31 Thread Alex Harui
You probably don't even need to subclass scrollbar. If you subclass VBox you can listen for rollOver/mouseMove/rollOut on the scrollbar and implement your logic by simply setting verticalScrollPosition as you see fit. From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Changing text color of item renderer in datagrid

2007-08-31 Thread Alex Harui
That is correct. The styles are defined on DataGrid. Your subclass of TextInput is responsible for implementing it by changing the color style of the TextInput. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lhy90936 Sent:

RE: [flexcoders] Dynamic Security Disabling

2007-08-31 Thread Alex Harui
Or not even loading the module containing the view From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of boybles Sent: Thursday, August 30, 2007 5:46 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Dynamic Security Disabling What

RE: [flexcoders] ColorPicker going off Stage

2007-08-31 Thread Alex Harui
Please file a bug with a small test case. I would try getting the dropdown before it opens and attaching an added handler and calling validateNow() in the handler. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Aldo Bucchi Sent:

[flexcoders] Re: Menu driven application and Viewstacks

2007-08-31 Thread vikram
Hi, I think I did not mention my problem correctly. What I want is on show () event of a viewstack, I need to reset the entire view. That is first time when I get a particular view (after creationComplete), all the dropdowns will have selected index as 0, none of the radio buttons/checkboxes

[flexcoders] Re: Mac OSX: Memory Allocation Error ?

2007-08-31 Thread marcel.panse
ttt --- In flexcoders@yahoogroups.com, marcel.panse [EMAIL PROTECTED] wrote: We have a AIR application writting in flex3. I developed it on a windows pc and works fine. The application browses through images on the harddisk and loads a selection of images one by one into memory, resizes the

Re: [flexcoders] flexbuilder memory

2007-08-31 Thread Muzak
Get this Eclipse plugin to free up memory (automatic and forced GC): http://www.kyrsoft.com/opentools/stmemmon.html regards, Muzak - Original Message - From: Matt Chotin [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, August 31, 2007 6:04 AM Subject: RE: [flexcoders]

Re: [flexcoders] TypeError in ListBase.as when using setStyle() in custom TreeItemRenderer

2007-08-31 Thread bjorn -
Hi Alex, I found some examples that did it that way. At first I tried setting the style on the itemrenderer itself or otherways just affecting the node - but to no avail. This way works the way I excpect (the nodes get an icon based on their type) - *except* for the

[flexcoders] Re: Creating the SWF to resize automatically with the browser window?

2007-08-31 Thread Stephen Roy J. Tang
I'll try it out. Thanks :D --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: And in the mx:Application tag. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Thursday, August 30, 2007 10:29

Re: [flexcoders] Re: Debug version of new Flash Player

2007-08-31 Thread Tom Chiverton
On Thursday 30 Aug 2007, [EMAIL PROTECTED] wrote: we've moved out the final release to early 2008 as we've incorporated more work into AIR and decided to make the Flex 3 release itself open source and not wait until after the release. Wow, cool ! -- Tom Chiverton Helping to biannually

[flexcoders] Cairngorm - Architectural kinda question

2007-08-31 Thread Jus
Hi all, hope this is the right list to post this type of question.. I'm sure someone can help me out. I'm new to Flex and coming from a web/ajax background I'm struggling a bit with the 'statefulness' of flex, compared to the relatively 'statelessness' of your typical web page. Basically, I'm

Re: [flexcoders] Re: Filters on dynamic array collection.

2007-08-31 Thread Ralf Bokelberg
I'd say you add the items to your original collection, while you the create a new ListCollectionView with the filter to be displayed in the grid Cheers, Ralf. On 8/31/07, cbaray [EMAIL PROTECTED] wrote: Sorry - took me a while to get around to building a small example app. But thanks for

RE: [flexcoders] Custom scrolling background image for a Container

2007-08-31 Thread Charlie Skinner
Well I guess that would do the trick. Tho I was hoping that it would be possible to do this via the skinning API. The documentation kinda implies that it's been taken care of. And this will cause me a number of other issues due to how I've implemented the dynamic form building drag and drop

[flexcoders] Re: Filters on dynamic array collection.

2007-08-31 Thread cbaray
Sorry - took me a while to get around to building a small example app. But thanks for the LCV solution - works like I expected the ArrayCollection filter to work. So, this will filter the list after it gets to 5 items and then once it's filtered, the addItemAt calls no longer work. Thanks -

[flexcoders] Hi GUYS..

2007-08-31 Thread Bharath Graphics
Hi Guys, I am new to flex. Please share some articles on flex. Thanks - bharath

[flexcoders] Flex and Java [Remote Object] example

2007-08-31 Thread MEGHARAJ
Hi Friends, In my company taking xml response from servlet am able to draw different chart in mxml file. this file i put inside of the jsp page. This is working fine. But i need help regarding remote objects.Instead of using xml response from server i want to use list. In internet i saw

[flexcoders] Re: Changing text color of item renderer in datagrid

2007-08-31 Thread lhy90936
Hi, I've tried the textRollOverColor but that did not work. My itemrenderer still doesn't change colors when rollover. Regards, hy --- In flexcoders@yahoogroups.com, lhy90936 [EMAIL PROTECTED] wrote: Hi Alex, Thank you. What about the selection: textSelectedColor? When I checked the

[flexcoders] New Version of Flash Player Supports - MP4, MOV, 3GP and More

2007-08-31 Thread Bharath Graphics
Hi ALL, The latest version of flash player supports media formats like mov, mp4, 3GP and others. Audio formats. Please go to thru the below URL. http://www.kaourantin.net/2007/08/what-just-happened-to-video-on-web_20 .html Thanks - bharath

Re: [flexcoders] Techniques for rotating non-embedded fonts

2007-08-31 Thread Jon Bradley
Just for the archives. I'll reply to myself. :) On Aug 30, 2007, at 7:46 AM, Jon Bradley wrote: The trick I want to use is as follows: 1. Class MyLabel (extends Sprite) contains one reference to MyTextField class - an extension of UITextField. It also contains one Bitmap. MyLabel

Re: [flexcoders] Cairngorm - Architectural kinda question

2007-08-31 Thread Jon Bradley
On Aug 31, 2007, at 6:31 AM, Jus wrote: Quite straightforward, right? I want to use value objects - but I have some questions about how they should be used: 1) Can or should a VO contain references to or collections of other VOs? For example, a wine has a producer. I have a wineVO and a

Re: [flexcoders] TypeError in ListBase.as when using setStyle() in custom TreeItemRenderer

2007-08-31 Thread bjorn -
For your viewing pleasure, here's a simple testcase: http://www.juicability.com/treetest/ Source is also available there... Bjørn On 31/08/2007, bjorn - [EMAIL PROTECTED] wrote: Hi Alex, I found some examples that did it that way. At first I tried setting the style on the itemrenderer

[flexcoders] its possible convert (not split) String to Array ?

2007-08-31 Thread Marcio Napoli
Hey All, If i have one String that represents Array of Arrays (same sintax). Its possible convert in Array object? private var string: String = '[[{metadata:{fields: [{width:50,attrname:NME_NIVEL_FORM,fieldtype:string}, {width:4,attrname:ANO_FORM,fieldtype:string}]},rowdata:

[flexcoders] Re: Menu driven application and Viewstacks

2007-08-31 Thread ben.clinkinbeard
You could have each form/page held in a custom component (page1, page2, etc), and then have your tabnavigator's children just be empty canvases. Listen for the change event of the tabnav, and then have your handler look something like this: tabNavHandler(event:IndexChangedEvent):void {

[flexcoders] flex sending corrupt SOAP request

2007-08-31 Thread awilber
I've created a PHP5 SOAP webservice and am trying to call a method from flex. I get a fault from the Flex app that says faultString=HTTP request error faultCode=Server.Error.Request The SOAP request received by the server is as follows (which I think explains why the server responded with an

[flexcoders] Re: Componentes positioning

2007-08-31 Thread Daniel
God... That was so easy... Thanx a lot man... --- In flexcoders@yahoogroups.com, shaun [EMAIL PROTECTED] wrote: Daniel wrote: Hello... im kind of a noob in flex... I'm working on an application that have a tilelist with a bunch of items renderers in it. I'm trying to show a popup with

Re: [flexcoders] its possible convert (not split) String to Array ?

2007-08-31 Thread Paul deCoursey
JSON, what you need is a JSON parser. I believe there is one on google code... http://code.google.com/p/as3corelib/ Paul Marcio Napoli wrote: Hey All, If i have one String that represents Array of Arrays (same sintax). Its possible convert in Array object? private var

[flexcoders] How to use Image encoders?

2007-08-31 Thread Daniel
Hello people... I'm trying to take a snapshot of a DisplayObject and set a defined minimized size of that snapshot, but when I mess with it's size it becomes all blurry... Here it's how I take the snapshot: private function takeSnapshot(comp:DisplayObject):Image {

RE: [flexcoders] Hi GUYS..

2007-08-31 Thread Tracy Spratt
Also, please make your subject descriptive of your question/issue. Many of us read only posts whose subjects suggest that we might be able to answer. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bharath Graphics Sent: Friday,

[flexcoders] text in columns is not printed completely

2007-08-31 Thread rajanjainflex
Hi All I am printing the datagrid and everything is printing fine but the text in the columns are not printed completely.I am not able to see the complete text in the columns.I am creating the columns from the columns of the other datagrid. I have also assigned the width of the column but

[flexcoders] loadStyleDeclarations makes some elements disappear.

2007-08-31 Thread Jim Grinsfelder
Why do some of my visual elements (VBox-based) disappear when I call loadStyleDeclarations? They're not styled, so I expected them to remain unchanged. I wonder if mx:Canvas elements which did not have a backgroundColor have the color set by the style and then overwrite the stuff where they were

Re: [flexcoders] addChild to UITextField?

2007-08-31 Thread Tony Alves
Jon, Any way we can see the code on the way you did this? I have a need for it, but it is on the back burner for now. Any insight would be a world of help. Thanks for any insight, Tony Jon Bradley wrote: Thanks for all your help on this guys. I finally figured it all out. Jeez - took

[flexcoders] Flex Java Developers

2007-08-31 Thread Matt
I have been developing a project called jSeamless (http://www.jseamless.org) that is a UI abstraction for Java. The reference implementation of which utilizes Flex. This allows Flex applications to be developed in 100% Java code rather than writing Flex MXML, ActionScript, and then the Java

[flexcoders] Re: Hi GUYS..

2007-08-31 Thread Abyss Knight
Quietly Scheming http://www.quietlyscheming.com/blog/feed/ simple plans for world dominationflexcoders at Yahoo! Groups http://rss.groups.yahoo.com/group/flexcoders/rss Enterprise RIA Development with Macromedia Flexdougmccune.com http://dougmccune.com/blog/feed/ A blog

Re: [flexcoders] flexbuilder memory

2007-08-31 Thread Tony Alves
Muzak, That is the tip of the DAY ! I wish I would have asked this question 4 months ago. Regards, Tony Muzak wrote: Get this Eclipse plugin to free up memory (automatic and forced GC): http://www.kyrsoft.com/opentools/stmemmon.html http://www.kyrsoft.com/opentools/stmemmon.html regards,

Re: [flexcoders] Can You bubble Downward or dispatch events into other components?

2007-08-31 Thread Sherif Abdou
so is that a no? - Original Message From: Alex Harui [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, August 30, 2007 7:00:35 PM Subject: RE: [flexcoders] Can You bubble Downward or dispatch events into other components?

[flexcoders] Re: Printing in Mac

2007-08-31 Thread rajanjainflex
Hi Rashmi Thanks for the help. Rajan --- In flexcoders@yahoogroups.com, rashmi_nraj [EMAIL PROTECTED] wrote: Hi Raj Sorry for replying late Please find the code i have used to Print in Windows in the following link

[flexcoders] File not launchable?

2007-08-31 Thread grimmwerks
Clicking the main app.mxml of a project and I'm getting 'This file is not launchable' -- what up with that?

[flexcoders] AS3 Components?

2007-08-31 Thread Jesse Warden
Anyone know of any sets beyond this list: 1. Flex 2 SDK http://www.adobe.com/products/flex/downloads/ 2. Flash CS3 Componentshttp://livedocs.adobe.com/flash/9.0/main/Part2_Using_AS3_Components_1.html 3. Jumpeye http://www.jumpeyecomponents.com/ 4. AsWing http://www.aswing.org/ 5.

Re: [flexcoders] Where to learn intermediate/advanced Flex?

2007-08-31 Thread Jatin Nanda
Books wise: - - training from the source is not too bad - total training dvd. Personally though: - 1) Developers Guide (as Doug said) 2) Flex Quick Starts on adobe 3) blog.flexamples.com (i think that's the URL). This guy has some very very simple exp. Its amazing what you can learn. BTW - it

Re: [flexcoders] Where to learn intermediate/advanced Flex?

2007-08-31 Thread grimmwerks
I also think the Lynda vids are worthwhile.

[flexcoders] image embed and scaling question

2007-08-31 Thread grimmwerks
I've got an image that I want to have across the top - right now it's about 800x80; i'd like this to be pinned right/left and top with the height scaling to maintain the aspect ratio for the width -- I've been fiddling, but it doesn't work; any suggestions?

Re: [flexcoders] addChild to UITextField?

2007-08-31 Thread Jon Bradley
Tony, Check out my last post titled Techniques for rotating non-embedded fonts. I detailed a bit more of the solution and included parts of a setTransform method that breaks up the processes. My draw method for the text is pretty straightforward - draw the text field into a bitmap (but

RE: [flexcoders] File not launchable?

2007-08-31 Thread Tracy Spratt
Clicking it where? In Flex Builder? And intending to do what with it? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of grimmwerks Sent: Friday, August 31, 2007 12:37 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] File not

[flexcoders] Passing data between components

2007-08-31 Thread nextadvantage
Hi All; I am a front end designer and am having issues trying to get view stack ID's from one component into a link bar in another component. I have gone through many tutorials but need some help with this sample.. . I can't grasp how to get the data from the view stack id into the other

RE: [flexcoders] addChild to UITextField?

2007-08-31 Thread Ely Greenfield
For what it's worth, if you have a registered copy of the charting components, there's a class that does essentially what jon is describing: mx.charts.chartClasses.ChartLabel. It's what the charts use for axis titles. It uses native font rendering if the font is embedded or if the

RE: [flexcoders] Can You bubble Downward or dispatch events into other components?

2007-08-31 Thread Gordon Smith
Forget about event bubbing and event capture (which is basically downward bubbling) -- you don't need them for this. Any component can dispatch an event which any other component can listen for. You want your subsubcomponent to listen to an event dispatched by your application after the file has

[flexcoders] Re: ArrayElementType is broken, worthless or poorly documented (or perhaps all 3)

2007-08-31 Thread Evan Gifford
Hey Y'all, I'm a bit confused on this subject as well. I am working on a moderately complex app with FDS and a Java backend. I have resorted to Arrays and flags to update the view when data is changed but I'd love to switch back to ArrayCollections! :( Adobe examples of using

[flexcoders] Re: Want to export data to and Excel File

2007-08-31 Thread essuark
Thanks Steve, that was helpful. Gives me some ideas --- In flexcoders@yahoogroups.com, Stephen Allison [EMAIL PROTECTED] wrote: Hi, I think using a server side component to take data from Flex and return it in a format suitable for Excel is the best approach, but if that's not

[flexcoders] DateTimeAxis on BarChart needs tweeking

2007-08-31 Thread Mark
I have a bar chart that I'm using to display a start date and end date for each project in my XML. It works great but when I add minimum and maximum values to the DateTimeAxis the records that don't fall between that minimum and maximum values don't show. In other words – the projects start

[flexcoders] Skin sources?

2007-08-31 Thread candysmate
Can anyone please point me to sources for Flex skins? I've been googling and searching, but often the community has a secret stash :)

RE: [flexcoders] DateTimeAxis on BarChart needs tweeking

2007-08-31 Thread Ely Greenfield
By default, a chart will filter out any items that extend beyond the defined min/max ranges. If you set filterData=false on the series, it will render all items, regardless of how they fit in the ranges. It will still clip the data region of the chart, so they won't extend beyond the

Re: [flexcoders] AS3 Components?

2007-08-31 Thread greg h
teotigraphix.com http://www.teotigraphix.com/components/teoframework Related, see: http://tech.groups.yahoo.com/group/flexcomponents/message/1797

RE: [flexcoders] image embed and scaling question

2007-08-31 Thread Alex Harui
What's not working, the pinning or the sizing? What does your code look like? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of grimmwerks Sent: Friday, August 31, 2007 10:09 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] image

[flexcoders] Re: DateTimeAxis on BarChart needs tweeking

2007-08-31 Thread Mark
Thanks Ely, This was exactly what I needed and much easier than writing an itemRenderer :) And I'll be taking your advice and filter the others out. Mark --- In flexcoders@yahoogroups.com, Ely Greenfield [EMAIL PROTECTED] wrote: By default, a chart will filter out any

RE: [flexcoders] loadStyleDeclarations makes some elements disappear.

2007-08-31 Thread Alex Harui
Very few visual components do not draw some aspect of their visuals from styles. Some of these are based on their class inheritance. If you don't copy some of those into the styledecl you load, you can get bad results. From: flexcoders@yahoogroups.com

RE: [flexcoders] text in columns is not printed completely

2007-08-31 Thread Alex Harui
That snippet of code looks fine. Does the PDG look ok on screen? Are all columns clipping or just some? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rajanjainflex Sent: Friday, August 31, 2007 8:01 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] How to use Image encoders?

2007-08-31 Thread Alex Harui
Any bitmap not displayed at its natural size will blur as pixels get smoothed to fit into the new area. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Sent: Friday, August 31, 2007 6:17 AM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] AS3 Components?

2007-08-31 Thread greg h
flexlib.net now redirecting to: http://code.google.com/p/flexlib/ and also now including: Flex Scheduling Framework http://labs.adobe.com/wiki/index.php/Flex_Scheduling_Framework

RE: [flexcoders] Re: Changing text color of item renderer in datagrid

2007-08-31 Thread Alex Harui
That's right, you have to subclass TextInput to implement those color styles. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lhy90936 Sent: Thursday, August 30, 2007 7:10 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re:

RE: [flexcoders] Re: Help

2007-08-31 Thread Alex Harui
I finally found time to look into this. I would like you to file a bug with your test case and send me the bug number. I'm not sure we can actually fix this given the way XML change notification works, but we might be able to make it a little better. The issue is that the collection is

[flexcoders] Re: text in columns is not printed completely

2007-08-31 Thread rajanjainflex
Hi Alex PDG looks good. Some columns which have larger text are cliped. Rajan --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: That snippet of code looks fine. Does the PDG look ok on screen? Are all columns clipping or just some?

[flexcoders] Re: How to use Image encoders?

2007-08-31 Thread diehlryan
Try enabling smoothing on the bitmap. This should make the image look a little nicer when scaled down. From your example: ... var snap:Image = new Image(); Bitmap bitmap = new Bitmap(bd); bitmap.smoothing = true; snap.source = bitmap; snap.percentHeight = 20; snap.percentWidth = 20; return

RE: [flexcoders] loadStyleDeclarations makes some elements disappear.

2007-08-31 Thread Jim Grinsfelder
Alex, Thank you. Are there any guidelines or examples for non-trivial applications and style-sheets? Jim _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Friday, August 31, 2007 1:47 PM To: flexcoders@yahoogroups.com Subject: RE:

[flexcoders] Adding Checkboxes to Datagrid with multiple selection

2007-08-31 Thread not_a_coop
I'm attemping to add checkboxes to a datagrid with multiple selection and drag and drop enabled. The users don't like having to ctrl and shift click to select multiple rows and want the grid to look similar to GMail's message grid. I've got some event handlers for the checkboxes that go through

Re: [flexcoders] AS3 Components?

2007-08-31 Thread Michael Schmalle
Doug, How can you use 'Flex 2 SDK http://www.adobe.com/products/flex/downloads/' in Flash CS3 ? Peace, Mike On 8/31/07, Doug McCune [EMAIL PROTECTED] wrote: FlexLib is Flex-framework dependent, I think Jesse was asking about AS3, non-Flex libraries (ie you can use them in Flash projects).

[flexcoders] Re: Problem with HTTPService ResultEvent.RESULT not firing

2007-08-31 Thread williamkusumo
Okay, I haven't found a solution yet, but after some debugging, turns out everything boils down to the Content-type that the webservice is returning. The webservice is returning text/plain result, not XML (I did my own test, if the service returns text/xml, everything works as it should). I tried

Re: [flexcoders] AS3 Components?

2007-08-31 Thread Doug McCune
FlexLib is Flex-framework dependent, I think Jesse was asking about AS3, non-Flex libraries (ie you can use them in Flash projects). Doug On 8/31/07, greg h [EMAIL PROTECTED] wrote: flexlib.net now redirecting to: http://code.google.com/p/flexlib/ and also now including: Flex

[flexcoders] Re: DateTimeAxis on BarChart needs tweeking

2007-08-31 Thread Mark
One more question regarding this bar chart... Even with a few different filters it could still end up being 20 - 30 bars. Is there a way to get the chart to scroll vertically if it gets that large? It seems to just resize on my tests. Thanks

[flexcoders] Re: Problem with HTTPService ResultEvent.RESULT not firing

2007-08-31 Thread williamkusumo
Yes, found it! Somewhere along my ResultEvent callback function, I have a conversion to XML that is failing. Damn, gotta learn to put try catch in everything... --- In flexcoders@yahoogroups.com, williamkusumo [EMAIL PROTECTED] wrote: Okay, I haven't found a solution yet, but after some

Re: [flexcoders] AS3 Components?

2007-08-31 Thread Doug McCune
touche On 8/31/07, Michael Schmalle [EMAIL PROTECTED] wrote: Doug, How can you use 'Flex 2 SDKhttp://www.adobe.com/products/flex/downloads/' in Flash CS3 ? Peace, Mike On 8/31/07, Doug McCune [EMAIL PROTECTED] wrote: FlexLib is Flex-framework dependent, I think Jesse was asking

RE: [flexcoders] Re: Problem with HTTPService ResultEvent.RESULT not firing

2007-08-31 Thread Tracy Spratt
First, I think you are you using the term webservice generically, and not in its specific Flex WebService - SOAP protocol sense, right? And to be sure I understand your situation, your http service is returning an empty string, and the result event firing behavior is different for different

RE: [flexcoders] Skin sources?

2007-08-31 Thread Brian Holmes
you couldn't have looked to hard http://www.scalenine.com/ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of candysmate Sent: Friday, August 31, 2007 12:26 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Skin sources? Can

RE: [flexcoders] Flex Java Developers

2007-08-31 Thread Dimitrios Gianninas
Personally I wouldn't use it since I know Flex well. However there are some developers out there who are pure Java coder developing server-side code and dont really care to build web apps. But with this it opens up the possibilities. Good stuff. Dimitrios Gianninas Developer Optimal Payments

Re: [flexcoders] Where to learn intermediate/advanced Flex?

2007-08-31 Thread greg h
Hi Kyle, Excellent replies from all so far. And obviously there is no substitute for doing what you are already doing ... practice, practice, practice ... build, build, build. Who knows, maybe one day you will be able to explain to Matt Chotin http://weblogs.macromedia.com/mchotin/ things about

[flexcoders] Re: Skin sources?

2007-08-31 Thread candysmate
--- In flexcoders@yahoogroups.com, Brian Holmes [EMAIL PROTECTED] wrote: you couldn't have looked to hard http://www.scalenine.com/ I didn't say that I not found any, just wanted to know what was out there. Skinning can be a real pain, so I

[flexcoders] Does anyone know what the cause of this problem is

2007-08-31 Thread Sherif Abdou
Data binding will not be able to detect assignments to _accountID. Data binding will not be able to detect assignments to _accountID. SalesBuilder/managersWebServiceManager.mxmlline 100 I neither have an _accoundID property nor does my application go up to 100. it goes to 50

[flexcoders] Re: Slow Memory Leak with PopUpManager and TitleWindow

2007-08-31 Thread thegiffman
Right - the listener would have to be added to the stage, with a callback on the pop up. The point is that, even without such a listener, things eventually grow (albeit slowly). Another interesting (and possibly related) case is when you add a weak reference to track if something still exists.

[flexcoders] ObjectTranslator

2007-08-31 Thread Richard Rodseth
Has anyone done the work to enhance Darron Schall's ObjectTranslator class to work recursively, as he describes in the source code? In the absence of that, I was think of adding static factory methods to my VO objects, as follows: static public function newInstanceFromJSON(json : String) :

RE: [flexcoders] loadStyleDeclarations makes some elements disappear.

2007-08-31 Thread Alex Harui
Not sure, but I'd copy defaults.css and work from there. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jim Grinsfelder Sent: Friday, August 31, 2007 12:26 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders]

RE: [flexcoders] Re: Flex 3 with Multiples Axis (Visual Error) BUG?

2007-08-31 Thread Sunil Bannur
You will have to remove from renderer from the verticalAxisRenderers array and re-assign the value to verticalAxisRenderers Something like verticalAxisRenderers = verticalAxisRenderers.splice(index,1), this will make the chart to re-render without the unwanted vertical Axis. Thanks

[flexcoders] Re: How to get the previously selected item in ComboBox on change?

2007-08-31 Thread williamkusumo
Hmm, completely bummed with this...I tried calling e.preventDefault(); e.stopImmediatePropagation(); e.stopPropagation(); on click event and it won't cancel the default actions. Seems like there's no other way but to extend ComboBox and override the way it does changeHandler? Thanks! --- In

[flexcoders] Re: Skin sources?

2007-08-31 Thread scalenine
Also check out: http://fleksray.org/Flex_skin.html http://www.fillcolors.com http://bkflex.blogspot.com/ - Bhavin has some skins on there. Also, you can do a search on Adobe Exchange in the Flex section: http://www.adobe.com/cfusion/exchange/ Hope that helps. Juan scalenine.com degrafa.com

RE: [flexcoders] Re: How to get the previously selected item in ComboBox on change?

2007-08-31 Thread Alex Harui
It doesn't use click, it uses mouseDown/Up. If you get the change event from the dropdown in capture phase, you might see the old value in CB. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of williamkusumo Sent: Friday, August 31, 2007

[flexcoders] Custom components as headerRender?

2007-08-31 Thread Stephen Roy J. Tang
Hi there, I've been trying to make a custom header renderer for an accordion...basically, what I want is to have the accordion label + an additional button on the accordion header Initially I tried something like: mx:Accordion mx:headerRenderer mx:Component mx:Canvas mx:Label

[flexcoders] Re: ObjectTranslator

2007-08-31 Thread ben.clinkinbeard
ObjectTranslator is a great class but you probably wouldn't want to use it recursively. Since it uses describeType() behind the scenes it can suffer from some serious performance issues if applied to large data sets. I ran into that very issue a while back and the recommended approach from Adobe

[flexcoders] Charts: LabeledRenderer across a BarSet

2007-08-31 Thread barry.beattie
can an itemRenderer work across a whole BarSet? I'm using Ely's ChartSampler app to try and come up with a bar chart where the values are labels inside each bar. it's adapting a couple of ideas in the ChartSampler. however, I'm tripping over some fundamental itemRenderer issues. I'm turning

[flexcoders] macosx key command: switching source/design?

2007-08-31 Thread grimmwerks
Thought it was option+esc, but it's not flipping; just seems I'm clicking the buttons over and over, so

Re: [flexcoders] ObjectTranslator

2007-08-31 Thread shaun
Richard Rodseth wrote: Has anyone done the work to enhance Darron Schall's ObjectTranslator class to work recursively, as he describes in the source code? In the absence of that, I was think of adding static factory methods to my VO objects, as follows: static public function

[flexcoders] Right Click View-Source with mxmlc compiler?

2007-08-31 Thread chuyler1
I know you can do this with Flex Builder but I was curious if there was a quick way to do it with just the Flex SDK. Thanks, ~ Chris

[flexcoders] Re: Changing text color of item renderer in datagrid

2007-08-31 Thread lhy90936
Hi Alex, Can you explain how can I subclass the TextInput to implement the textRolloverColor textSelectedColor? Does it mean that I need to implements the ListBase class since it has these 2 styles declaration? Thank you very much for your help. Regards, hy --- In

[flexcoders] Re: Changing text color of item renderer in datagrid

2007-08-31 Thread lhy90936
Hi Alex, Can you explain how can I subclass the TextInput to implement the textRolloverColor textSelectedColor? Does it mean that I need to implements the ListBase class since it has these 2 styles declaration? Thank you very much for your help. Regards, hy --- In

[flexcoders] Re: Flex Java Developers

2007-08-31 Thread barry.beattie
How are customisations handled? I mean, I'm hung up on needing to do special things with labels on bar charts at the moment. In a seamless case not only do I have to worry if Flex can do it but also if the abstracted Java code will allow this? or is it a case of what you don't know you won't