RE: [flexcoders] Quick question about Mixins and internal class scope

2008-09-01 Thread Alex Harui
Interesting, what name did you use for the look up? How was the class set up? It doesn't surprise me though. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh McDonald Sent: Sunday, August 31, 2008 10:43 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]

Re: [flexcoders] Quick question about Mixins and internal class scope

2008-09-01 Thread Josh McDonald
package pkg { public class Class1 { private var ref:Class2; } } package pkg { [Mixin] internal class Class2 { public static function init(foo:*) : void { trace(Class2.init called with foo = + foo); } } } There's a ref to

Re: [flexcoders] Quick question about Mixins and internal class scope

2008-09-01 Thread Josh McDonald
I was actually hoping the compiler would either generate a public alias to put into info()[mixins]; or leave that class out of the list entirely, maybe with a warning... Might file a bug some time :) -Josh On Mon, Sep 1, 2008 at 4:10 PM, Josh McDonald [EMAIL PROTECTED] wrote: package pkg {

RE: [flexcoders] Quick question about Mixins and internal class scope

2008-09-01 Thread Alex Harui
The compiler isn't that smart. Did you ever call getQualifiedClassName() on the internal class to see what its name might be? Could be decorated some way, but then I think you should have gotten an exception. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh

[flexcoders] Re: download many files at a time

2008-09-01 Thread dialogtmp
I deeply appreciated your help. Because I learn about flex just few month, I don't really userstand your source code. value:DownloadRequest , this line I don't know when I call the function downloadNow I should give what for this parameter. Can you explain for me? thanks :) --- In

Re: [flexcoders] BindingUtils, How to detect null values when the data type is Number???

2008-09-01 Thread Ralf Bokelberg
bindSetter? Cheers, Ralf. On Mon, Sep 1, 2008 at 6:32 AM, Josh McDonald [EMAIL PROTECTED] wrote: Numbers can't be null, and you might need to use your own watcher function if you'd like to return NaN rather than 0 when the text is empty. -Josh On Mon, Sep 1, 2008 at 2:08 PM, jitendra jain

[flexcoders] OutOfMemoryError when compiling my app with Ant

2008-09-01 Thread Sebastien ARBOGAST
I'm having a hard time compiling my application using Flex 3 Ant tasks. When I compile it in Flex Builder, using the default compiler, everything works fine. But when I try to build it from the command line (which I need to do on my continuous integration server) using the attached ant build file,

Re: [flexcoders] Flexstore license?

2008-09-01 Thread Michael Schmalle
I think your comment below is level headed and good, and here's where I stop. You know how many times you said your going to stop? Robert, your alone and you know it. You just don't see the signs man, you don't see the petition to get you banned from this list that is going around. The users on

[flexcoders] I don't understand AdvancedDataGrid grouping method ...

2008-09-01 Thread dev_oue
I have troubles understanding how to use the grouping feature of an advancedDatagrid. How do you group on field1 BUT display field2 as the label of the group ? When I put : var grpField:GroupingField = new GroupingField; grpField.name = field1; // group on field1 grpField.groupingFunction =

[flexcoders] Re: SuperTabNavigator any idea howto blink tab

2008-09-01 Thread Gus
Hi, There is a method called getTabAt(index:int) that returns the tab as a Button. you just have to add the effect to that button and you are ready to go... HTH gus I m developing web-messenger with flex , everything going very smooth for users chat widnow I have used super tab bar navigator ,

[flexcoders] Communication between custom preloader and the application

2008-09-01 Thread João
Hello, I have created a custom application preloader as described here: http://www.onflex.org/ted/2006/07/flex-2-preloaders-swf-png-gif-examples.php I need my preloader to communicate with the application, by dispatching an event or calling a method on the appliaction where it resides, but I'm

[flexcoders] Re: Communication between custom preloader and the application

2008-09-01 Thread maximecowez
Hi João, the mx.core.Application class has a static getter 'application', so once your application is initialized you can simply reference your application using Application.application from within tour preloader class. like this: addEventListener(FlexEvent.INIT_COMPLETE, initCompleteHandler);

[flexcoders] DataGrid columnWidth at runtime

2008-09-01 Thread Manu Dhanda
Hii, Can anyone help me to get a solution for the above written problem. I have a datagrid with 8 columns. And I want to increase it's column width on the mouse click of that cell (and decrease the other column widths in the same proportion). First column I want to keep constant (of width 20).

Re: [flexcoders] Re: SuperTabNavigator any idea howto blink tab

2008-09-01 Thread Sajid Hussain
Thanks man , but any suggestion which effect i shud apply to make it blink :D - Original Message From: Gus [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, September 1, 2008 6:56:40 PM Subject: [flexcoders] Re: SuperTabNavigator any idea howto blink tab Hi, There is a

Re: [flexcoders] Flexstore license?

2008-09-01 Thread Robert Thompson
You are among a group. I have received some e-mails discussing the nature of bullies on the list. If there is any reason I don't stop it's because it's wrong to let a message like this go without answering. Your words are aggressive, not mine. I've not harassed you, you are harassing

[flexcoders] Having multiple measures in the OLAPCube

2008-09-01 Thread thakkar_mithun2000
Hello, How we can dynamically add multiple measures in the OLAPCube? I am presently able to add multiple Dimensions to the OLAPCube but not multiple measures. Although I got few examples where hardcoded measures are added like following - mx:OLAPSchema mx:OLAPCube mx:OLAPDimension

[flexcoders] Event not bubbling as expected

2008-09-01 Thread guillaumeracine
I made a custom event called TreeDataLoadedEvent. In my Application.mxml, i add a listener to this event in the creationComplete phase. The TreeDataLoadedEvent is dispatched by a custom class named ModelLocator that extends EventDispatcher. The ModelLocator class is instanced in Application.mxml.

[flexcoders] Re: Want to build a SWF on the fly when someone requests it

2008-09-01 Thread kuntamayu
Hi... I am working on a project like Flex Flip Book , so in that project as a end product from my application, I need to give an swf file to end user so he / she can use that swf file directly without any modification. --- In flexcoders@yahoogroups.com, Toby Ashley [EMAIL PROTECTED] wrote:

Re: [flexcoders] Communication between custom preloader and the application

2008-09-01 Thread Pedro Sena
Hi João, Why are you trying to do this? Just for curiosity... Regards On Mon, Sep 1, 2008 at 9:33 AM, João [EMAIL PROTECTED] wrote: Hello, I have created a custom application preloader as described here: http://www.onflex.org/ted/2006/07/flex-2-preloaders-swf-png-gif-examples.php I

Re: [flexcoders] Flexstore license?

2008-09-01 Thread Michael Schmalle
No, I don't think you have the capacity to understand what harassment is. If there is any reason I don't stop it's because it's wrong to let a message like this go without answering. No, you just hijack threads and change titles. Your words are aggressive, damn right they are A secret

[flexcoders] Why this does not work?

2008-09-01 Thread markgoldin_2000
I have a class based on DataGrid: package CustomComponents { import mx.collections.*; import mx.controls.DataGrid; import mx.controls.dataGridClasses.*; import mx.events.DataGridEvent; import mx.utils.ObjectUtil; public class sortableDataGrid extends

[flexcoders] Custom event not dispatching as expected

2008-09-01 Thread guillaumeracine
I did a sample app to test a custom event. I have a class named ModelLocator that extends EventDispatcher. This class dispatch an event of type TreeDataLoadedEvent. The main application listen to it but it seems that it never catch the TreeDataLoadedEvent object that is dispatched. Is it because

[flexcoders] Re: Question about Best Practices for Applications with many views using Cairngorm

2008-09-01 Thread j301c
I agree that states are probably a much better option than viewstacks because they are more dynamic. I probably will consider doing this as I move along for this reason. I guess I was just wondering if there was a better way than using constants in the modellocator to bind what state, or

Re: [flexcoders] OutOfMemoryError when compiling my app with Ant

2008-09-01 Thread Mondain
If this was a java project build you would simply increase the memoryMaximumSize option for the javac task, but in your case I see that you have allocated a maximum memory amount via a jvmarg to the mxmlc task. I'm not sure if this works the same way but I can see any application needing 2mb to

Re: [flexcoders] Re: Question about Best Practices for Applications with many views using Cairngorm

2008-09-01 Thread Paul Andrews
- Original Message - From: j301c [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, September 01, 2008 6:56 PM Subject: [flexcoders] Re: Question about Best Practices for Applications with many views using Cairngorm I agree that states are probably a much better option than

Re: [flexcoders] Re: Want to build a SWF on the fly when someone requests it

2008-09-01 Thread Daniel Freiman
You're going to have to dynamically write the source code and run the command-line compiler on it. Building the code can be very specific to the project so I can't help you there, but the docs on the compiler are here: http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_14.html -

Re: [flexcoders] OutOfMemoryError when compiling my app with Ant

2008-09-01 Thread Mondain
I meant 2gb :) On Mon, Sep 1, 2008 at 11:11 AM, Mondain [EMAIL PROTECTED] wrote: If this was a java project build you would simply increase the memoryMaximumSize option for the javac task, but in your case I see that you have allocated a maximum memory amount via a jvmarg to the mxmlc task.

Re: [flexcoders] Re: SuperTabNavigator any idea howto blink tab

2008-09-01 Thread Sherif Abdou
You can try using the Fade Effect which should give u the effect you want or you can use this http://www.onflex.org/BlinkTag/ http://VadexFX.com http://Sherifabdou.com - Original Message - From: Sajid Hussain To: flexcoders@yahoogroups.com Sent: Monday, September 01, 2008

Re: [flexcoders] Flexstore license?

2008-09-01 Thread Robert Thompson
Mike...if you'd just stop posting personal message against me this would all leave this group less cluttered. To answer your statement. Harassment is someone telling someone else to F___ off which Josh said to me for simply informing others about FDT Enterprise 3.0 which has several dozen

Re: [flexcoders] Flexstore license?

2008-09-01 Thread Michael Schmalle
No Robert I won't. You talk over people and most are passive and let you spew. I would LOVE to see you get me off this list. A petition, can you not see the irony? There is no petition man, it's in your head. I have never seen someone say FO on this list. Maybe you should ask yourself why Josh

Re: [flexcoders] Re: Want to build a SWF on the fly when someone requests it

2008-09-01 Thread Paul Andrews
- Original Message - From: kuntamayu [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, September 01, 2008 2:51 PM Subject: [flexcoders] Re: Want to build a SWF on the fly when someone requests it Hi... I am working on a project like Flex Flip Book , so in that project

[flexcoders] Options on ActionScript 3.0 Editing in FLEX

2008-09-01 Thread Robert Thompson
Just as a note on ActionScript 3.0 Editing in FLEX. Papervision3D just posted news of their contest, endorsed FDT Enterprise Edition as their preferred ActionScript Editor. From Papervision3D.org, quote, 2nd Place- VectorVision - Winner of FDT Enterprise Edition (our preferred

Re: [flexcoders] Options on ActionScript 3.0 Editing in FLEX

2008-09-01 Thread Paul Andrews
Robert loads of people already know about FDT, many people here and on flashcoders use it. Nobody here wants anyone acting like some public service announcer here on the forums. It's highly patronising to list. It'all going to end in tears. - Original Message - From: Robert

[flexcoders] Re: Custom event not dispatching as expected

2008-09-01 Thread ben.clinkinbeard
this.addEventListener means you're listening on the application, not on modelLocator. Unless the event bubbles, this will not work. Either make the event bubble or listen on modelLocator. HTH, Ben --- In flexcoders@yahoogroups.com, guillaumeracine [EMAIL PROTECTED] wrote: I did a sample app

Re: [flexcoders] Options on ActionScript 3.0 Editing in FLEX

2008-09-01 Thread Robert Thompson
Well, not everyone, I just discovered it through JumpEye components last week through an announcement by them. I'm not psychic either, nor am I a diplomate repainting someone's well intended post by painting them as a public service announcer. It's a great tool, I'm sorry if you know

Re: [flexcoders] Options on ActionScript 3.0 Editing in FLEX

2008-09-01 Thread Robert Thompson
By the way, the Enterprise version, which I'm still in a 30 day evaluation of, was just released in March (and again I just discovered it, and you somehow know most people on the list use it, I've done some searches on the group and see no evidence of that lofty claim). How is it you are

Re: [flexcoders] Options on ActionScript 3.0 Editing in FLEX

2008-09-01 Thread Paul Andrews
- Original Message - From: Robert Thompson To: flexcoders@yahoogroups.com Sent: Monday, September 01, 2008 9:37 PM Subject: Re: [flexcoders] Options on ActionScript 3.0 Editing in FLEX snip Nothing is as clear as the message of Josh to tell me to F off. Yet you ignore that.

RE: [flexcoders] Options on ActionScript 3.0 Editing in FLEX

2008-09-01 Thread Randy Martin
OK. I've been reading this thread with some interest. After all, everyone needs a little humor in their daily life. J I'm amazed that we, as human beings, still let words anger us so much. So what if someone tells you to FO? Sticks and stones may break your bones, but words. If you lived in New

Re: [flexcoders] OutOfMemoryError when compiling my app with Ant

2008-09-01 Thread ivo
You might also need to set the Ant memory options http://www.mail-archive.com/flexcoders@yahoogroups.com/msg83489.html - Ivo - Original Message From: Mondain [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, September 1, 2008 11:11:29 AM Subject: Re: [flexcoders]

Re: [flexcoders] Re: What is Flexcoders?

2008-09-01 Thread Guy Morton
Of course, having said that, we do need to draw the line somewhere. eg if you were to have a situation where one list member was: * going on and on about the same topic excessively despite the annoyance that this was causing many other list members * padding replies with unrelated rants

Re: [flexcoders] Options on ActionScript 3.0 Editing in FLEX

2008-09-01 Thread Robert Thompson
Thanks Randy. I never had an issue with Josh and didn't know who he was until he said fo. The problem is that I've had several posts that he's responded to negatively. I've asked him to get off my back. He said, No I won't then the fo. The reason the fo is significant is that it's not

Re: [flexcoders] Re: What is Flexcoders?

2008-09-01 Thread Robert Thompson
I think those posts have ended, at least by me. I said very clearly in one post to that I would make an effort to stay focused on [flexcoders] which is why i've been using that name when referring to something. my last post was on FDT Enterprise - that's all. and then the ball came

[flexcoders] Re: Problems installing the Flex Component Kit for Flash CS3

2008-09-01 Thread florian.salihovic
Thanx for the input. But it was just a simple click: i had to activate the extensions. Best regards from Germany --- In flexcoders@yahoogroups.com, Alan [EMAIL PROTECTED] wrote: I donno off the top of my head. Perhaps this helps. I've done it with PS and it wasn't tough.

[flexcoders] Trying to set the height of sliderthumbclass based on the height of a VBox ...

2008-09-01 Thread Jo Morano
For my horizontal slider, I want a long vertical line as the thumb. I was able to do that fine using a SliderThumbClass where I assigned a small vertical line image and then set the height to 250 and used thumboffset appropriately to make it go below the slider. Now however, I want this height to

[flexcoders] Re: SuperTabNavigator any idea howto blink tab

2008-09-01 Thread Gus
you could also use the glow or dissolve effect to also change the color setting the color property --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: You can try using the Fade Effect which should give u the effect you want or you can use this

[flexcoders] respect

2008-09-01 Thread Amrish Badal
Hello Everyone, Please try respect one another like you would like to be threated because most of us readers dont want to be part of interpersonal liking and disliking of others. This is a professional groups and we should keep it that way... end of story and everyone, good luck coding!

Re: [flexcoders] Re: What is Flexcoders?

2008-09-01 Thread Doug McCune
Guys, it's labor day. Can we all please just go outside and get drunk? Spend time with your loved ones and let's all stop being obsessed with a dumb mailing list argument. Go eat a hamburger, drink about 12 beers, and realize that none of this nonsense matters. Doug On Mon, Sep 1, 2008 at 3:23

Re: [flexcoders] Re: What is Flexcoders?

2008-09-01 Thread Josh McDonald
Curse you doug! We don't have any more public holidays until the 26th of December! But then, I *do* get to live in Queensland :D -Josh On Tue, Sep 2, 2008 at 8:33 AM, Doug McCune [EMAIL PROTECTED] wrote: Guys, it's labor day. Can we all please just go outside and get drunk? Spend time with

Re: [flexcoders] Event not bubbling as expected

2008-09-01 Thread Josh McDonald
Unfortunately, only UIComponents can bubble events, because the bubble hierarchy is the display list. If you need to dispatch bubbling events from a non-visual component, you can use Application.application, look up the SystemManager and use that (it's how I usually do it), or you can implement

Re: [flexcoders] Re: What is Flexcoders?

2008-09-01 Thread Guy Morton
Yeah, Doug, we're Australians. No Labor Day holidays for us! Of course, being Australians, we were drunk anyway. On 02/09/2008, at 8:43 AM, Josh McDonald wrote: Curse you doug! We don't have any more public holidays until the 26th of December! But then, I *do* get to live in Queensland

Re: [flexcoders] Re: What is Flexcoders?

2008-09-01 Thread Josh McDonald
Sh! You'll give it away! *hic* /falls off chair On Tue, Sep 2, 2008 at 8:57 AM, Guy Morton [EMAIL PROTECTED] wrote: Yeah, Doug, we're Australians. No Labor Day holidays for us! Of course, being Australians, we were drunk anyway. On 02/09/2008, at 8:43 AM, Josh McDonald wrote:

Re: [flexcoders] Re: What is Flexcoders?

2008-09-01 Thread Weyert de Boer
Did you guys already invade New Zealand? As announced last year? http://www.youtube.com/watch?v=K6p3xlCnSjcfeature=related

[flexcoders] Re: Question about Best Practices for Applications with many views using Cairngorm

2008-09-01 Thread Justin J. Moses
OK, I see what you're saying. I'm actually fairly new to Cairngorm, so I'd be interested in what others have to say about this... Personally, in my app, I assigned modules to user roles, and used the class name of each module as the name of the that contains it. This seems like it might still be

[flexcoders] Re: Question about Best Practices for Applications with many views using Cairngorm

2008-09-01 Thread Justin J. Moses
Paul, If you're trying to understand Cairngorm by reading the docs and going through the Cairngorm Store demo, you'll notice that the views are toggled via constants in the model: eg. if( model.workflowState == ShopModelLocator.VIEWING_PRODUCTS_IN_THUMBNAILS ) ... so the various views or

Re: [flexcoders] Re: What is Flexcoders?

2008-09-01 Thread Guy Morton
Nah, we called it off after discovering that the only New Zealanders worth conquering were already living here. On 02/09/2008, at 9:22 AM, Weyert de Boer wrote: Did you guys already invade New Zealand? As announced last year? http://www.youtube.com/watch?v=K6p3xlCnSjcfeature=related

Re: [flexcoders] Re: What is Flexcoders?

2008-09-01 Thread Josh McDonald
That, and we have enough sheep and Rugby players (although most of them are currently playing NRL waiting for the cheque to come in the mail). *ducks* On Tue, Sep 2, 2008 at 9:45 AM, Guy Morton [EMAIL PROTECTED] wrote: Nah, we called it off after discovering that the only New Zealanders worth

[flexcoders] Strange List Behavior

2008-09-01 Thread Ben
I am trying to select an item on a right click. I accomplished this, but whenever the selectedIndex changes, there is a short delay before the List updates its display. Here's my example. To view the source, right click and select View Source.

[flexcoders] view state and custom component display problem

2008-09-01 Thread lisabethc
Hi, I am using some custom components in one of my view states. If I put the custom components in the base state (outside the states tag) my application renders properly. However, if I switch it around, and make my other state the base state, and explicitly declare my state with the custom

Re: [flexcoders] Strange List Behavior

2008-09-01 Thread Sherif Abdou
Have you tried dispatching rollOver Event when the person right clicks? Also, is this the code for it or is it different since I checked it out and tested it on my computer and It worked fine with no delay. -- Sherif Abdou http://VadexFX.com http://Sherifabdou.com - Original Message

Re: [flexcoders] Re: Question about Best Practices for Applications with many views using Cairngorm

2008-09-01 Thread Paul Andrews
First of all, I'm no Cairngorm expert and I'm not going to criticise a reference implementation. For a store application (any store) I would consider that the model would hold details of the stock items and the baskets of any shoppers. I wouldn't have the model keep track of what the shopper

[flexcoders] Re: Question about Best Practices for Applications with many views using Cairngorm

2008-09-01 Thread Justin J. Moses
I think that's a fair point you've made and I can't understand why the constants are in the model either in the Cairngorm Store. Seems to me like there should be a Singleton related to the view holding the list of available views to switch between. But I'm no Cairngorm expert either :P justin

[flexcoders] Re: Strange List Behavior

2008-09-01 Thread Ben
Are you running Internet Explorer? It seems that the delay occurs in Firefox 3 but not in IE. --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: Have you tried dispatching rollOver Event when the person right clicks? Also, is this the code for it or is it different since

[flexcoders] Re: Strange List Behavior

2008-09-01 Thread Ben
Dispatching a rollOver event on the List does not eliminate the delay. --- In flexcoders@yahoogroups.com, Ben [EMAIL PROTECTED] wrote: Are you running Internet Explorer? It seems that the delay occurs in Firefox 3 but not in IE. --- In flexcoders@yahoogroups.com, Sherif Abdou flex@ wrote:

Re: [flexcoders] Question about Best Practices for Applications with many views using Cairngorm

2008-09-01 Thread Douglas Knudsen
I know this thread is being expounded upon, but thought I'd address your post directly. I would question storing all your view states in a big phat view stack and managing that via modellocator. The idea is, at least how I've been practicing it, is to use this viewstack that has its state

Re: [flexcoders] Re: Question about Best Practices for Applications with many views using Cairngorm

2008-09-01 Thread Douglas Knudsen
personally, I leave States to component level 'dynamic Flexi-magik' and use Viewstacks for major view changes. Viewstacks just seem more appropriate for major view changes. States I leave to component changes, eg a edit vs view in a form or something like that. IIRC, States actually are more

Re: [flexcoders] Re: Strange List Behavior

2008-09-01 Thread Sherif Abdou
I am doing the StandAlone player and it is working fine. -- Sherif Abdou http://VadexFX.com http://Sherifabdou.com - Original Message - From: Ben To: flexcoders@yahoogroups.com Sent: Monday, September 01, 2008 7:51 PM Subject: [flexcoders] Re: Strange List Behavior Are

[flexcoders] Re: view state and custom component display problem

2008-09-01 Thread Tim Hoff
Hi Liz, It's probably something minor; like not using addChild for the component. Hard to say though without seeing your code. If you want, post some code. There's a lot of people here that are capable and willing to help you. -TH --- In flexcoders@yahoogroups.com, lisabethc [EMAIL

[flexcoders] Re: What is Flexcoders?

2008-09-01 Thread Tim Hoff
Man, you've gone over the line now. I'm telling. :) -TH --- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: That, and we have enough sheep and Rugby players (although most of them are currently playing NRL waiting for the cheque to come in the mail). *ducks* On

[flexcoders] FlexBuilder FDT I don' git it....

2008-09-01 Thread Alan
So all the huff n puff goin' on, I've been playing with FDT and also googled about it - and found Jesse's blog post http://flashartofwar.com/2008/04/24/flexbuilder-3-vs-fdt-3/ So far all I can gather is that FDT is just a different IDE for Flex. Does it just have more bells and whistles?

[flexcoders] Re: Strange List Behavior

2008-09-01 Thread Ben
The problem seems to be with Firefox. Can anyone give an explanation for this? --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: I am doing the StandAlone player and it is working fine. -- Sherif Abdou http://VadexFX.com http://Sherifabdou.com - Original

Re: [flexcoders] FlexBuilder FDT I don' git it....

2008-09-01 Thread Sherif Abdou
Ya i agree. I also Hate the Eclipse IDE, it's like they are having a race to see how many Windows they could have. The Flex IDE would have been perfect if it had the look and feel of the Flash IDE or Dreamweaver CS4(The BEta one). I tried FlashDevelop and I don't think they support Debugging so

Re: [flexcoders] FlexBuilder FDT I don' git it....

2008-09-01 Thread Douglas Knudsen
With Eclipse you have complete control to close any windows you want open, eh? Funny you mentioned DW. Flex Builder 1/1.5 was built on DW and it totally sucked. As I recall, most folks at the time switched to Eclipse then already. DK On Mon, Sep 1, 2008 at 9:52 PM, Sherif Abdou [EMAIL

Re: [flexcoders] Re: What is Flexcoders?

2008-09-01 Thread Robert Thompson
Aussies... Australian swimmers are pretty awesome. The track team I was on in college and the swim team used to hang out a lot. I dated an all- american swimmer (best looking girlfriend I've had up to that point), and I saw some of the swim team members at some of last few Olympics and

RE: [flexcoders] Re: Strange List Behavior

2008-09-01 Thread Alex Harui
I didn't see a problem in FireFox From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ben Sent: Monday, September 01, 2008 6:51 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Strange List Behavior The problem seems to be with Firefox. Can anyone give an

RE: [flexcoders] Trying to set the height of sliderthumbclass based on the height of a VBox ...

2008-09-01 Thread Alex Harui
{} only works in MXML, not in actionscript. I would just listen for the RESIZE event and update the height then From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jo Morano Sent: Monday, September 01, 2008 3:25 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Trying

Re: [flexcoders] Re: Strange List Behavior

2008-09-01 Thread Sherif Abdou
Actually it seems to only be Firefox 3.0.1,it does work in IE and stand alone. -- Sherif Abdou http://VadexFX.com http://Sherifabdou.com - Original Message - From: Alex Harui To: flexcoders@yahoogroups.com Sent: Monday, September 01, 2008 11:40 PM Subject: RE:

RE: [flexcoders] Why this does not work?

2008-09-01 Thread Alex Harui
TrackTotal.numericSort should be ok. But your compare function is using a variable col which may not be correct. You should just be able to set the isNumeric flag on a SortFIeld and get what you want From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000

RE: [flexcoders] DataGrid columnWidth at runtime

2008-09-01 Thread Alex Harui
As you change each column, the DG will try to adjust other columns so that they all fit on screen. Setting horizontalScrollPolicy=on is one way to prevent auto-resizing. Another is to generate new DGColumns from the old ones, adjust the their widths and then set the .columns property once.

RE: [flexcoders] Re: Communication between custom preloader and the application

2008-09-01 Thread Alex Harui
However, a good preloader does not reference any UIComponent based classes otherwise they have to be loaded before the preloader can show up (which defeats the purpose of a preloader). I would use the systemManager to do communication. The preloader and the application can both see it. The