[flexcoders] Re: How to hide backMonthButton and fwdMonthButton of DateChooser Control?

2006-03-23 Thread flexhtoo
--- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: In Beta 2, try mx:DateChooser initialize=backMonthButton.visible = false; fwdMonthButton.visible = false/ - Gordon Thanks Gordon for your reply. It get work in Beta 1. Do you know New Flex Beta 2 come out? I

[flexcoders] Question about RemoveChild

2006-03-23 Thread Richard Schutten
Hi, I want to delete dynamically created buttons. The documentation of Flex says: Removing a child does not delete it, so you can redisplay it later without recreating it. So if RemoveChild doesn't delete them how can i do so? Greetings, Richard -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Cairgnorm beta release?

2006-03-23 Thread Alex Uhlmann
Hi Oriol, There is still a selectedChild property on ViewStack. The only thingyou need to do is type stronger. UIComponent is the base class of Container but Containter goes into aViewStack.Beta 2 is stricter here. In addition to that, I wouldn't recommend yourworkaround using the

RE: [flexcoders] TabNavigator Display Issue [Flex 2 Beta 2]

2006-03-23 Thread João Fernandes
Harris, Try to increase your tabWidth style.If you remove it you'll see that there is no problem with your labels. João Fernandes -Original Message- From: flexcoders@yahoogroups.com on behalf of Harris Reynolds Sent: Thu 23-Mar-06 3:30 AM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] TabNavigator Display Issue [Flex 2 Beta 2]

2006-03-23 Thread Sreejith Unnikrishnan
I remember this was reported as a bug in beta 1 and was supposed to be fixed in beta 2! - Original Message - From: João Fernandes To: flexcoders@yahoogroups.com Sent: Thursday, March 23, 2006 2:56 PM Subject: RE: [flexcoders] TabNavigator Display Issue

[flexcoders] Tree key handlers problem

2006-03-23 Thread kosirm2000
There are still some strange behaviors when using the Tree component with up, down, left and right keys, but flex shows no error as in beta 1. You can open the tree node and go down to child nodes with pressing down and right keys, but try then to press left key twice. You will go to parent node,

[flexcoders] addColumn removed from Beat 2

2006-03-23 Thread ZhaoXingdong
hi guys: Could anyone tell me how to add columns to datagrid in actionscript? I did it by using addColumn in Beta 1 but it's removed from Beta 2. cheers, xd -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Re: Headers of Panel in Flex 2 Similar to Flex 1.5

2006-03-23 Thread mvbaffa
Thank you, I will try it --- In flexcoders@yahoogroups.com, jeremy lu [EMAIL PROTECTED] wrote: panelAlpha = 1 headerHeight = 22 will also look very much alike those found in aqua... On 3/22/06, mvbaffa [EMAIL PROTECTED] wrote: Hi everybody, How can I set the appearance of Flex 2

[flexcoders] Flex Action Script 2.0 Related Books Sites

2006-03-23 Thread srini vasan
HiI am new starter on flex and action script 2.0. Please can you any one suggest mewhat are all the books avialble related to flex and action script 2.0in indian editions and flex action scrit 2.0learning related sites.Thanks Jiyo cricket on Yahoo! India cricket Yahoo!

[flexcoders] Binding properties of Custom Component in Flex 2

2006-03-23 Thread mvbaffa
Hi everybody, I am migrating a Custom Component, from Flex 1.5 to Flex 2 Beta 2, that has inside it two other components: - ClienteList: A datagrid with a list of Clients - ClientSummary: Panel that show the details of a Selected Client in the DataGrid The main component is like this

[flexcoders] Re: dynamically creating a remote object

2006-03-23 Thread deepu_verma
Thanks Tracy, but the example is for web service. Where can I get the syntax for RemoteObject call. Thanks dv --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: This is not supported in 1.5, but is possible to do. See this article:

[flexcoders] Re: Flex2 beta2 bug - Focus does not work on lists

2006-03-23 Thread Peter Blazejewicz
Hello Benoit, Indeed, making all my VO classes dynamic solves the problem. Not very clean, but excellent workaround ;). that is so interesting that I've spend few minutes on that, try another way which seems for me to not be a work around: ?xml version=1.0 encoding=utf-8? mx:Application

RE: [flexcoders] addColumn removed from Beat 2

2006-03-23 Thread Benoit Hediard
To handle datagrid columns in beta2, you need to directly access and manipulate the columns array property. Benoit Hediard -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de ZhaoXingdong Envoyé : jeudi 23 mars 2006 08:22 À :

[flexcoders] Re: Flex 2.0 b2: 'getClassByName' method of the 'flash.util' package

2006-03-23 Thread Vadim Melnik
Is there some special mxmlc option to prevent optimization, and force compiler to include all classes from classpath or at least imported ones (like import MyClass;) ? I saw -compiler.keep-all- type-selectors option, described as disables the pruning of unused type selectors (advanced), but

[flexcoders] Image source path bug?

2006-03-23 Thread Alberto Albericio Salvador
Hi all, Im experiencing an strange behaviour (bug?) with the Image tag in Flex2b2. If I use the tag like: mx:Image source=foo.jpg / it works when compiled with Flex Builder and the image displays correctly. If I move this application (and picture) to j2ee server, I type the url in the browser

RE: [flexcoders] Re: mxmlc/compc versus web server compile

2006-03-23 Thread Ted Patrick
Renaun, We use ANT on developer machines and on the server for deployment. Typically a single build.xml file sits in the root of the SVN repository for a project. We typically define tasks for incremental SWF and RSL compilation, java compilation, and larger tasks for ground up builds. The

RE: [flexcoders] FB2 :: Flex printing

2006-03-23 Thread David Mendels
Hi, a) Check out http://livedocs.macromedia.com/labs/1/flex/langref/mx/print/package-detail.html b) Please be specific and give us reproducible bugs so we can address as many issues as possible and/or log ECRs for future! -David Adobe From: flexcoders@yahoogroups.com

[flexcoders] Saving object graphs

2006-03-23 Thread pepe_perez_perez_perez
Hi, I'm using data services with the JavaAdapter with the hierarchical values approach and I'm finding that when I invoke commit() from the client the object graph that I'm receiving in the server after the unmarshalling to Java is not what I'd expect. The original object graph that I sent to

Re: [flexcoders] addColumn removed from Beat 2

2006-03-23 Thread ZhaoXingdong
thanks Benoit, it works well now. On Thu, 23 Mar 2006 13:29:04 +0100 Benoit Hediard [EMAIL PROTECTED] wrote: To handle datagrid columns in beta2, you need to directly access and manipulate the columns array property. Benoit Hediard -Message d'origine- De :

[flexcoders] Re: Binding properties of Custom Component in Flex 2

2006-03-23 Thread mvbaffa
Never mind, I have already discovered the problem. I am using AMFPHP and when you return a recordset, with Flex 2, AMFPHP, in fact, return an array of array, and the fields of the records are numbers not the field name. This does not occurs when you return only one record. So you have to map

[flexcoders] Re: TabNavigator Bug Flex 2 Beta 2

2006-03-23 Thread Harris Reynolds
Sreejith, You are correct... this BUG was reporting earlier (see thread below) and I have confirmed that it still exists. Can anyone from Adobe confirm this? ~harris --- In flexcoders@yahoogroups.com, Jonathan Miranda [EMAIL PROTECTED] wrote: It sometimes lays out correctly after you have

[flexcoders] Help : Hibernate Adapter

2006-03-23 Thread arsal_007
Hi, I am new with Flex, can anybody give me some advice how to use Hibernate-Adapter in Flex 2.0 Thank's Arsalan -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

[flexcoders] Re: Is there a way to change the default error color of the TextInput border?

2006-03-23 Thread Libby
OK, that puts me halfway there by changing the color of the ToolTip. Is there a way to also change the border color of the TextInput (that shows when a validation error occurs)? Right now it is Red. Where are the default stylesheets where StyleManager is getting its information? I have searched

RE: [flexcoders] Extending MXML components (change from 1.5 to 2)

2006-03-23 Thread Basil Hosmer
Tony, Yes, we absolutely intend to continue supporting extending MXML with MXML, with the constraint that only one set of children be specified anywhere in the chain of derived components or the component instantiation. What youre seeing is a bug in beta 2 the framework

Re: [flexcoders] Re: Is there a way to change the default error color of the TextInput border?

2006-03-23 Thread Manish Jethani
On 3/23/06, Libby [EMAIL PROTECTED] wrote: OK, that puts me halfway there by changing the color of the ToolTip. Is there a way to also change the border color of the TextInput (that shows when a validation error occurs)? I did a quick Google search and found this:

Re: [flexcoders] Re: mxmlc/compc versus web server compile

2006-03-23 Thread Johannes Nel
hi ted,have you got an example of a flex2 mxmlc ant script that works properly?ThanksjohanOn 3/23/06, Ted Patrick [EMAIL PROTECTED] wrote:Renaun,We use ANT on developer machines and on the server for deployment. Typically a single build.xml file sits in the root of the SVN repository for a

Re: [flexcoders] How to set a background in FLEX 2 Beta 2

2006-03-23 Thread Manish Jethani
On 3/23/06, Dion Mendel [EMAIL PROTECTED] wrote: On Wed, Mar 22, 2006 at 02:26:04PM +0530, Manish Jethani wrote: There's no backgroud-repeat in Flex yet. So you'll have to either make your SWF repeat the pattern, or you'll have to write a programmatic skin and go about repeating the

[flexcoders] Flash custom components in Flex 2

2006-03-23 Thread Jonathan Bezuidenhout
Hi everyone,In the Flex 1.5 docs there was a section on how to make a custom component in Flash and how to export it etc for use in Flex. I have noticed that this content is missing from the new Flex 2 docs. Is this not encouraged anymore or have they just not been included?I have tried to make

Re: [flexcoders] Re: Flex Beta 2 - Loader not loading SWF 100%

2006-03-23 Thread Bruno Martins
Hi, I did apoor solution to this problem but I believe that is a start to solve the problem: I put the following code in the application that will be loaded: private function resizeLoader(event:Event = null):void{ width = parent.parent.parent.width; height =

RE: [flexcoders] FB2 :: Flex printing

2006-03-23 Thread Dima Ulich
Hi I have used the package you are pointing at. To reproduce the bug try to print out a page with text and bitmap image (do not embed image load it dynamically). When you use FlexPrintJob package, you'll get bitmap quality printing which is not good at all for use in reports. When you use

[flexcoders] Re: Is there a way to change the default error color of the TextInput border?

2006-03-23 Thread Libby
Thanks, Manish That has the same effect as the previous code, it changes the color of the ToolTip (error message) but not the border of the TextInput. I think I need to subclass the TextInput in order to get to the appropriate style property / attribute. However, I do not know what the

[flexcoders] Re: mxmlc/compc versus web server compile

2006-03-23 Thread Renaun Erickson
Ted, Thanks for the for depth of insight. My mind finally has got mxmlc/compc and build scripts in the right prespective. Renaun --- In flexcoders@yahoogroups.com, Ted Patrick [EMAIL PROTECTED] wrote: Renaun, We use ANT on developer machines and on the server for deployment. Typically a

RE: [flexcoders] Flex 2.0: mxmlc question

2006-03-23 Thread Tobias Patton
Hi Roger; So, to link corelib.swc into my application, youd supply the path to corelib as an argument to the library-path option? Heres the command-line Im using: mxmlc -actionscript-classpath=D:\PerforceDepot\galiano\Galiano.Tobias_Patton\Client\classes -library-path

[flexcoders] How to create new custom Style in custom component?

2006-03-23 Thread Stanislav Zayarsky
Hi FlexCoders, I'm wondering how I can create new custom style in my ActionScript Component? And how to use it with StyleManager? Can anybody point me to documentation where this topic is described? Best regards Stanislav -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Saving object graphs

2006-03-23 Thread Peter Farland
ArrayCollection on the server extends ArrayList so that should work, but if you've got ManagedProxies instead of Books then it's likely the Book client type wasn't linked in to the SWF and/or properly registered with the correct [RemoteClass(alias=...)] metadata. Can you try adding a reference to

Re: [flexcoders] Headers of Panel in Flex 2 Similar to Flex 1.5

2006-03-23 Thread Scott Langeberg
Does anyone know the event that gets fired by Panels or TitleWindows, when the user clicks the header? This should be what the PopUpManager listens for, to enable dragging. I would like to intercept that event, for custom dragging or to stop dragging. ScottOn 3/22/06, mvbaffa [EMAIL PROTECTED]

RE: [flexcoders] How to create new custom Style in custom component?

2006-03-23 Thread Stephen Gilson
Sure, there is a chapter on this topic in the Creating Components book at: http://livedocs.macromedia.com/labs/1/flex20beta2/1813.html Stephen -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stanislav Zayarsky Sent: Thursday, March 23,

Re: [flexcoders] AS3 :: Interface type verses Concrete type return

2006-03-23 Thread Scott Langeberg
2 pc: If you ever want to swap behaviors internally at runtime, use interfaces: : ) ScottOn 3/17/06, Michael Schmalle [EMAIL PROTECTED] wrote: Thanks roger, That answers my question exactly! :) This is how I program, so that makes me happy. Sometimes intuition of feeling goes along way

Re: [flexcoders] How to create new custom Style in custom component?

2006-03-23 Thread Anatole Tartakovsky
I believe the simplest way is to look in the generated code - it gives you the better understanding on both code and timing. The code would go like this: .. var style:CSSStyleDeclaration;style = StyleManager.getStyleDeclaration(".yourStyleName");if (!style){style = new

Re: [flexcoders] How to create new custom Style in custom component?

2006-03-23 Thread Stanislav Zayarsky
Thanks Anatole, This helps! Best regards Stanislav On 3/23/06, Anatole Tartakovsky [EMAIL PROTECTED] wrote: I believe the simplest way is to look in the generated code - it gives you the better understanding on both code and timing. The code would go like this: .. var

Re: [flexcoders] How to create new custom Style in custom component?

2006-03-23 Thread Stanislav Zayarsky
Thanks Stephen, I suppose it will work with Flex 1.5 too? Best regards Stanislav On 3/23/06, Stanislav Zayarsky [EMAIL PROTECTED] wrote: Thanks Anatole, This helps! Best regards Stanislav On 3/23/06, Anatole Tartakovsky [EMAIL PROTECTED] wrote: I believe the simplest way is to look in

RE: [flexcoders] Re: mxmlc/compc versus web server compile

2006-03-23 Thread Ted Patrick
The real key to ANT is leveraging the depends property. target name=flex.build depends=rsl.build / In this case calling ANT flex.build, will first run rsl.build just before running flex.build. depends allows you to create a very large build from very small encapsulated _ From:

Re: [flexcoders] Headers of Panel in Flex 2 Similar to Flex 1.5

2006-03-23 Thread jeremy lu
hi mvbaffa, forget about what I said, the api changed in beta2, correct way to do that is now : borderAlpha = 1; headerColors = [0xE7E7E7, 0xD9D9D9]; which will make a aqua-alike panel with grey-gradient titlebar. jeremy. On 3/22/06, mvbaffa [EMAIL PROTECTED] wrote: Hi everybody,

Re: [flexcoders] Headers of Panel in Flex 2 Similar to Flex 1.5

2006-03-23 Thread jeremy lu
hi scott, extends Panel/TitleWindow then use following code: this.titleBar.addEventListener(mouseDown, onMouseDown); you can pretty much do anything you like to titleBar. jeremy. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

[flexcoders] GetCamera(someCam) returns null (Beta 2)

2006-03-23 Thread João Fernandes
Hi there, Im trying to get a specific camera like this: for(var i:uint = 0; i Camera.names.length; i+){    if(Camera.names[i] == VHScrCap){        ssCamera =

RE: [flexcoders] Re: mxmlc/compc versus web server compile

2006-03-23 Thread Ted Patrick
The real key to ANT is leveraging the depends property. target name=flex.build depends=rsl.build / In this case calling ANT flex.build, will first run rsl.build just before running flex.build. depends allows you to create a very large build from very small encapsulated tasks. It is the lever

[flexcoders] CairngormLogin sample on Flex 2.0 beta 2

2006-03-23 Thread William Lambé
Hello everybody, I am trying to use Cairngorm 2.0 with the new Flex 2.0 beta 2.  And for that, I am trying to run the CairngormLogin sample. I changed some things that happen between beta 1 and beta 2 of Flex 2.0, but I have still a Problem: To the line «mx:ViewStack id=appView

[flexcoders] TitleWindow lost focus on startup

2006-03-23 Thread xithor
I have a TitleWindow set to popup at the startup of my application. I use this window at other points in the program with absolutely no problems. But when it's called on startup using the 'initialize' event on my main canvas, it opens the popup, and it functions fairly normally, but A: does

RE: [flexcoders] Flex Action Script 2.0 Related Books Sites

2006-03-23 Thread Venu Vasireddy
ActionScript 3.0 guide http://livedocs.macromedia.com/flex/20beta1/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=2352.html Similar one exists for Flex and MXML programming. From: flexcoders@yahoogroups.com

[flexcoders] Re: Flex Beta 2 - Loader not loading SWF 100%

2006-03-23 Thread inawire
Thanks Bruno and Doug, This is on the right track (though I still do not know why this worked in beta 1 with out all this extra code). Bruno, your code worked for me fine (flex 2 version of Doug's idea). When I load my inner app, the content resizes perfectly (see inner app below). The only

[flexcoders] Re: Saving object graphs

2006-03-23 Thread pepe_perez_perez_perez
Can you try adding a reference to the Book type in your code somewhere... [Bindable] public var book : Book = new Book(); And, ¡bingo!, works perfectly. I don't know why I don't ask for help before. Have been with this 3 days. If that is the intended behaviour I'd report that as an error.

[flexcoders] Where is the IncludeLayout

2006-03-23 Thread mvbaffa
Hi all, Flex 2 beta 1 had a property, includeLayout, that relased the screen space of invisible components. I could not find it in Beta 2. Does anyone knows what is the new name os includeLayout. Thanks in advance -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Re: dynamically creating a remote object

2006-03-23 Thread Tracy Spratt
I don't know of a specific example. I would try use the same methodology and just substitute RemoteObject. You might find an example via google. Is there a very good reason you need to do this? You do understand that you can declare a data service in mxml and then manipulate it

Re: [flexcoders] AS3 :: Interface type verses Concrete type return

2006-03-23 Thread Michael Schmalle
Thanks Scott, The question was really aimed at ArrayCollection, so internally I type it as ArrayCollection and if say a public methods returns it, I would use ICollectionView, then this as you said allows me to swap behaviors in the client class. Peace, MikeOn 3/23/06, Scott Langeberg [EMAIL

[flexcoders] How to enumerate ApplicationDomain classes?

2006-03-23 Thread Vadim Melnik
Hi All, ApplicationDomain provides getClass(getDefinition??) method to retrieve class definition. Is it possible to enumerate all available class definitions or class names loaded by certain application domain at runtime from AS code? -- Thanks, Vadim Melnik. -- Flexcoders Mailing List

[flexcoders] Re: TitleWindow lost focus on startup

2006-03-23 Thread Doug Lowder
I did quite a bit of investigation on this, including Jester's take on the problem over on his site. The root of the problem is that the browser does not automatically give the Flash player focus when the page loads. For Internet Explorer, there is a way to accomplish this through

RE: [flexcoders] Where is the IncludeLayout

2006-03-23 Thread Benoit Hediard
This property is includeInLayout (one of the best addition in beta1!). Benoit Hediard -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de mvbaffa Envoyé : jeudi 23 mars 2006 16:06 À : flexcoders@yahoogroups.com Objet : [flexcoders] Where is the

[flexcoders] Re: TitleWindow lost focus on startup

2006-03-23 Thread Doug Lowder
A more appropriate page title would probably be in order, too. ;) --- In flexcoders@yahoogroups.com, Doug Lowder [EMAIL PROTECTED] wrote: I did quite a bit of investigation on this, including Jester's take on the problem over on his site. The root of the problem is that the browser

RE: [flexcoders] Re: How to hide backMonthButton and fwdMonthButton of DateChooser Control?

2006-03-23 Thread Gordon Smith
Hmmm... these properties are no longer public, but you could always use geChildAt() to get references to anything to want inside a component. It looks like they'd be getChildAt(10) and getChildAt(11). - Gordon -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

RE: [flexcoders] How to create new custom Style in custom component?

2006-03-23 Thread Stephen Gilson
That will work for Flex 2.0 only. Stephen -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stanislav Zayarsky Sent: Thursday, March 23, 2006 12:13 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] How to create new custom Style in

RE: [flexcoders] Re: Flex 2.0 b2: 'getClassByName' method of the 'flash.util' package

2006-03-23 Thread Roger Gonzalez
-include-libraries will force entire SWCs to be linked in. (And Beta 3 will have -include, which will do it for individual definitions.) A better path might be to dynamically load another SWF that contains the definitions that you want to have soft references to. -rg -Original

[flexcoders] Cannot print text in chart running on linux server, urgent!

2006-03-23 Thread wujunjr
Hi, everyone, I'm dying... It's our local time 3:00 a.m. It is the first time for us to depoy the flex 1.5 code to linux server. As the result, all the text in the chart cannot be printed at all using flex print function while it's ok in windows, and there are many display features different

RE: [flexcoders] Flash custom components in Flex 2

2006-03-23 Thread Roger Gonzalez
Hi... due to changes between the virtual machines in Flash Player 8 and 8.5, there is no cross-compatibility with scripting between the two versions. Until the new AS3-basedversion of Flash Authoring comes out, we are only supporting a workflow based on non-scripted assets. You basically

RE: [flexcoders] Re: Saving object graphs

2006-03-23 Thread Peter Farland
It is intended behavior and it's not an error (although a common one). If you don't create a reference to the class the optimizer won't keep it in the swf. If you didn't do this then each SWF would contain every class in the classpath - this is not good. An import doesn't guarantee the class

[flexcoders] Bug in list.selectedIndices

2006-03-23 Thread Tobias Patton
Just a quick note to Adobe: I reported a bug in Flex 2 Beta 1 where the selectedIndices property of a list control would not contain the correct values if the user selected multiple entries using the shift key. The problems is still in Beta 2. Thanks. Tobias. Creo Inc., a

[flexcoders] Closing tab - Eclipse style

2006-03-23 Thread engkee
Is there a way to decorate the Flex tabs with a [x] so that one can click on it to close the tab, similar to how it is done in eclipse? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] CairngormLogin sample on Flex 2.0 beta 2

2006-03-23 Thread Oriol Gual
Hi William, I asked the same thing few posts earlier, just look for Cairngorm beta release? or click hereOriol. 2006/3/23, William Lambé [EMAIL PROTECTED]: Hello everybody, I am trying to use Cairngorm 2.0 with the new Flex 2.0 beta 2. And for that, I am trying to run the

Re: [flexcoders] Headers of Panel in Flex 2 Similar to Flex 1.5

2006-03-23 Thread Scott Langeberg
Thanks so much. That's what I've been looking for, for some time!!ScottOn 3/23/06, jeremy lu [EMAIL PROTECTED] wrote: hi scott, extends Panel/TitleWindow then use following code: this.titleBar.addEventListener(mouseDown, onMouseDown); you can pretty much do anything you like to titleBar.

Re: [flexcoders] AS3 :: Interface type verses Concrete type return

2006-03-23 Thread Scott Langeberg
I'm not sure if this is what you're looking for, but this is what i'm trying to illustrate:Class A { var collection:ICollectionView function setCollection(newCollection:ICollectionView) { collection = newCollection; }}In this case, an instance of A can change its collection implementation at

[flexcoders] Mac Flex developing

2006-03-23 Thread Jonathan Miranda
Just curious, how and if there are differences with developing Flex on a Mac (the only thing I can foresee is tools limited to Windows environments). _ Jonathan Miranda Flexible Master of the Web Try not to become a man of success, but a man

RE: [flexcoders] Extending MXML components (change from 1.5 to 2)

2006-03-23 Thread Tony Pujals
Thank you very much for the response you have no idea how timely it is for us internally. Ive been a strong advocate for Flex 2. Unfortunately, I cant say more on a public list, but I would be very interested in having a private dialog about some of the barriers that are affecting our

Re: [flexcoders] Re: Flex Beta 2 - Loader not loading SWF 100%

2006-03-23 Thread Bruno Martins
Hi, I know about this listener problem but I'll try other solution as soon as possible... Tks On 3/23/06, inawire [EMAIL PROTECTED] wrote: Thanks Bruno and Doug, This is on the right track (though I still do not know why this worked in beta 1 with out all this extra code). Bruno, your

Re: [flexcoders] AS3 :: Interface type verses Concrete type return

2006-03-23 Thread Michael Schmalle
Scott, Yeah I totally get what your saying. I think when I was talking with roger I had mentioned that I wanted to access like getItemAt() through the ArrayCollection but, if it was used as a public or passed, I would want the client to use the IViewCursor interface. My reasoning is that for

Re: [flexcoders] Closing tab - Eclipse style

2006-03-23 Thread Michael Schmalle
Dosn't it do that already? I use the tab x's to close each tab. Peace, Mike PS I am not using the plugin version, standalone.On 3/23/06, engkee [EMAIL PROTECTED] wrote: Is there a way to decorate the Flex tabs with a [x] so that one can click on it to close the tab, similar to how it is

[flexcoders] Flex 2: Chart problem

2006-03-23 Thread Torben Nielsen
Hi, I am working on an application with a Line Chart that contains various line series. I have made some checkboxes which should hide/show the different line series. Here is the mxml/actionscript for the various elements: Checkbox: mx:CheckBox id=euribor3 label=Euribor 3 mese

RE: [flexcoders] Mac Flex developing

2006-03-23 Thread Richard Leggett
I didn't see whether you specified 1.X or 2.0, and I'm sure someone else will be better able to speak about Flex 1.X, but I might be able to offer some insights for Flex 2.0. I'm a PC guy myself but my colleague is currently working on a Mac running Eclipse with the FlexBuilder 2

[flexcoders] Fault handling in webservices without a proxy

2006-03-23 Thread Pablo Apanasionek
I've found this page on Adobe Forums that describes the 'fault' object that fires up on a faulty webservice call. I was particularly interested in the fault.detail and fault.type properties to use them in Flex 1.5. However, they seem to be undefined when the useProxy='false' setting is

[flexcoders] Re: Flex 2.0 b2: 'getClassByName' method of the 'flash.util' package

2006-03-23 Thread Vadim Melnik
-include-libraries will force entire SWCs to be linked in. (And Beta 3 will have -include, which will do it for individual definitions.) We can move our classes to external library and it will be automatically linked. The reason I've asked this question is that in Flex Library Project, we

Re: [flexcoders] Mac Flex developing

2006-03-23 Thread Alisdair Mills
I develop flex 2.0 on a mac with flex builder beta 1 i had a great set up by copying the files from the windows plugin. for me the debug view worked perfectly. For editing i used the oxygen plugin as the flex builder one for mxml crashed eclipse and the AS editor had a cursor that jumped

[flexcoders] Re: Flex 2: Chart problem

2006-03-23 Thread Doug Lowder
I believe showDataEffect and hideDataEffect are Effect objects, not functions. Try lineEuribor3.showDataEffect.play() and lineEuribor3.hideDataEffect.play(). --- In flexcoders@yahoogroups.com, Torben Nielsen [EMAIL PROTECTED] wrote: Hi, I am working on an application with a

Re: [flexcoders] Closing tab - Eclipse style

2006-03-23 Thread Richard Rodseth
I think the poster wants to implement an interface like Eclipse's within Flex, and was not commenting on Flex Builder. - Richard On 3/23/06, Michael Schmalle [EMAIL PROTECTED] wrote: Dosn't it do that already? I use the tab x's to close each tab. Peace, Mike PS I am not using the

RE: [flexcoders] Question about RemoveChild

2006-03-23 Thread Gordon Smith
I assume this is Flex 2. If you've called removeChild() or removeChildAt() and you don't have any other references to this child, it will get garbage collected at some point. But if you've stored a reference to that child on some object, it won't go away. - Gordon -Original Message-

[flexcoders] Re: Flex 2: Chart problem

2006-03-23 Thread Vadim Melnik
Is it typo in attached code, that function declared as changeEuribor2 but click handler calls changeEuribor? -- Thanks, Vadim Melnik. --- In flexcoders@yahoogroups.com, Torben Nielsen [EMAIL PROTECTED] wrote: Hi, I am working on an application with a Line Chart that contains

Re: [flexcoders] Mac Flex developing

2006-03-23 Thread Weyert de Boer
Hi Richard, I would love to have that class if it's saves time. Of course, I can use the Windows version of Flex but the dockbar and quicksilver are so awesome to work with. Anyway hopefully they will support the Mac in Beta 3!!! Yours, Weyert I didn't see whether you specified 1.X or 2.0,

RE: [flexcoders] Flex 2 Beta 2 ViewStack Bug

2006-03-23 Thread Colin Wiseley
Thanks, setting creationPolicy=all in my sample app gets it to work but its still not working on the big application Im developing. It has a ViewStack nested inside another ViewStack. I set creationPolicy=all on both of them but the show events are not firing the first time I view an

RE: [flexcoders] Installing Coldfusion Mystic beta 2.

2006-03-23 Thread Battershall, Jeff
Gareth, There's something up with the Mystic Beta 2 installer, and a bug has been filed. If you change java.home in jvm.config to point to C:\JRun4\runtime\jre and re-start CF services you should be in business. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Re: Flex 2: Chart problem

2006-03-23 Thread Torben Nielsen
Hi, that did not work. Maybe it’s better if I explain what I am trying to obtain. I have created to effects in my mxml: mx:Fade id=fadeIn alphaTo=1.0 duration=500/ mx:Fade id=fadeOut alphaTo=0.1 duration=500/ These I would lake to use every time on of the lineseries is selected or

RE: [flexcoders] Request to Adobe re: Documentation format

2006-03-23 Thread Matt Horn
I can assure you we read this and other forums. Hey, where do you think my best code samples come from? ;) As for changing the numbering format of the docs, I've forwarded Cortlandt's request on to one of the editors, but changes like that would have to be approved at a much higher level

Re: [flexcoders] Installing Coldfusion Mystic beta 2.

2006-03-23 Thread Gareth Edwards
Thanks for the tip, I actually opened up the installer with winrar, grabbed the jre, backed up the old one and replaced it. Didn't release it existed in runtime Cheers Gareth. Battershall, Jeff wrote: Gareth, There's something up with the Mystic Beta 2 installer, and a bug has been filed.

RE: [flexcoders] Re: Flex 2: Chart problem

2006-03-23 Thread Ely Greenfield
Set the showEffect/hideEffect instead of showDataEffect/hideEffect, and set the visibility of the series to true/false. When you toggle the visibility, the show/hide effects will be played automatically. Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Tree kicking my butt. Need some help

2006-03-23 Thread Jeremy Rottman
In my app, I have a section that is suposed to display in a tree all documents that are in a specific folder. The issue I have is that, when I test the code, the tree has this output [object Object]. Is this because it not formated correctly in my cfc? Or is it something more sinister and evil.

RE: [flexcoders] Re: Flex 2: Chart problem

2006-03-23 Thread Torben Nielsen
Hi Ely, Thanks for your reply. I already tried to toggle the visibility, but this does not trigger the effect. Even though it works, it’s not very elegant. There are not a method in the LineSeries class called showEffect or hideEffect. Could I maybe do somthing using the dispatchEvent method?

[flexcoders] Re: Tree kicking my butt. Need some help

2006-03-23 Thread Doug Lowder
One thing you'll want to do is make sure your dataprovider is set to an array in the case where you are reading a directory that consists of only a single item. Flex will interpret that as an object instead of an array, so you will need the following: function

[flexcoders] Re: Flex 2: Chart problem

2006-03-23 Thread Doug Lowder
No real experience with Flex 2 effects here, but couldn't you just play your effect in the changeEuribor() function? Something like fadeIn.play([lineEuribor3]); with adjustments for AS3, if necessary. --- In flexcoders@yahoogroups.com, Torben Nielsen [EMAIL PROTECTED] wrote: Hi,

RE: [flexcoders] Flex 2.0: mxmlc question

2006-03-23 Thread Roger Gonzalez
First, make certain you don't have any Beta1 SWCs being loaded by Beta2. That will break. If you add corelib.swc (or its parent directory) to your library path, it will make it available to be linked in. Its choking in the ResourceBundle code, which implies to me that ListCollectionView

[flexcoders] Re: Tree kicking my butt. Need some help

2006-03-23 Thread Jeremy Rottman
I have added the code you suggested and it still just displays it as [object Object]. I even trimed my cfc down to this, just to test the folders. cffunction name=displayDocsListQry access=remote returntype=array output=true cfargument name=fileNum required=no type=string

RE: [flexcoders] Bug in list.selectedIndices

2006-03-23 Thread Joan Tan
I can reproduce the bug. Do you remember the bug # that you filed. Or, I will file a new one. I cant seem to find the original bug. Thanks, Joan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tobias Patton Sent: Thursday, March 23, 2006 11:01 AM

Re: [flexcoders] Re: Tree kicking my butt. Need some help

2006-03-23 Thread Oscar . Cortes
In addition, you might need labelField or labelFunction. |-+- | | | | | Doug Lowder | | | [EMAIL PROTECTED] | | | Sent by: | | |

[flexcoders] : Flex and Coldfusion : where to ask ?

2006-03-23 Thread João Fernandes
Hi, Flexcoders are great but when there are some issues related to CF connectivity for Flex 2 Beta where is the best place to post our issues? There are a lot of ppl from the Flex team here, but it seems that from CF team there is none. The Labs wiki is a total desert. The CF

RE: [flexcoders] Bug in list.selectedIndices

2006-03-23 Thread Mac Martine
Its number 162791 Its supposedly fixed now but I havent tried it. Tobias, The fix should be in the next public release. Thanks! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joan Tan Sent: Thursday, March 23, 2006 2:15 PM To:

  1   2   >