[flexcoders] Coldfusion upgrade from 6.1 to 7.0

2006-06-14 Thread Brendan Meutzner
Tried an upgrade tonight from my CF server 6.1 to 7.0 and failed miserably. It seems that the 7.0 installation wouldn't offer me an upgrade choice, so I installed it as usual thinking it might just overwrite. Nope, seperate install all together. So then I backup my datasources from 6.1, uninstal

RE: [flexcoders] colorPicker, getting the colour out

2006-06-14 Thread Darren Houle
Try this... Darren >From: "Sonja Duijvesteijn" <[EMAIL PROTECTED]> >Reply-To: flexcoders@yahoogroups.com >To: flexcoders@yahoogroups.com >Subject: [flexcoders] colorPicker, getting the colour out >Date: Tue, 13 Jun 2006 12:39:45 +0200 > >When I use custom objects or an array to fill the col

Re: [flexcoders] checkCellRenderer class

2006-06-14 Thread Jeremy Lu
creating cell renderer (it's called item renderer now) in Flex 2 is a snap, search the manual for "item renderer".most of the time you would just need something like this:see if it works.Jeremy.On 6/15/06, Chaitu Vadlapatla < [EMAIL PROTECTED]> wrote: Hi,  

Re: [flexcoders] Re: Flex2B3 :: StackOverflow #1023 :: hmmm

2006-06-14 Thread Michael Schmalle
FYI update I changed the dispatchEvent() to a straight method call. YES!!! I got it to render the whole mx package! That is what it was, the dispatchEvent() was adding that memory. This is awsome. Thanks for the help Gordon! Peace, MikeOn 6/14/06, Michael Schmalle < [EMAIL PROTECTED]>

[flexcoders] Re: calling custom component methods inside the parent application

2006-06-14 Thread Tim Hoff
Ok, sometimes it takes a while.  But, here's the answer to your original question Chaitu.  Add an event listener to the itemRenderer component.  This way you can retain the original values of the dataField and then change them if the user clicks the check box. You might want to add an undo funct

Re: [flexcoders] Re: Flex2B3 :: StackOverflow #1023 :: hmmm

2006-06-14 Thread Michael Schmalle
So, I need to slim what I call then? I am no where near 4000 recursions on this. Do you have any advice for me? I wrote this documenter in Flex to really test the Flash player, I am getting good feelings but, this I just need to work right now and then when I refactor it won't be a problem.

Re: [flexcoders] Re: Flex2B3 :: StackOverflow #1023 :: hmmm

2006-06-14 Thread Michael Schmalle
Ok, I bet I know what the problem is, the max-execution-time In the docs it says " You can override these settings in the application. This is an advanced option. " How do I override this. This has to be the problem. I know I should break the loop up but since I am still debugging I need i

RE: [flexcoders] Re: Flex2B3 :: StackOverflow #1023 :: hmmm

2006-06-14 Thread Gordon Smith
I got more info from the AS3 team... The Player's stack limit is 128K and can't be changed. When a method calls another method, a stack frame gets created which requires 4 bytes for its size, 4 bytes for the return address, 4 bytes for each parameter, and 4 bytes for each local variable.

Re: [flexcoders] Re: Flex2B3 :: StackOverflow #1023 :: hmmm

2006-06-14 Thread Michael Schmalle
Hi Gordon, Actually I should have defined this for you. See what is happening is what you see but it's not infinate. I am parsing YOUR class files, all 550 of them. This is an event queue loop. It has worked great up untill today. That error occurs right at 596 of 600 files. I tried moving t

Re: [flexcoders] Re: Flex2B3 :: StackOverflow #1023 :: hmmm

2006-06-14 Thread Michael Schmalle
Oh yeah, one more thing. This is totally sequential. I have a fileModelQueue that is an ordinal array. I traverse through the whole array, Here is my green code; ---     /**      *      * @event a FileManagerEvent      * @see FileManagerEvent   

RE: [flexcoders] Re: Flex2B3 :: StackOverflow #1023 :: hmmm

2006-06-14 Thread Gordon Smith
A StackOverflowError does not necessarily involve an Array. It generally is an indicator of infinite (or at last overly deep) recursion, such as where method A calls method B and method B calls method A, over and over. In your stack trace, it looks like File/analyzeNextFile() is being cal

[flexcoders] Capturing ESCAPE key in IE

2006-06-14 Thread Dmitry Miller
Hello all I am trying to capture ESCAPE key press by TextInput control in Flex 1.5. Something is new at Yahoo! Groups. Check out the enhanced email design. http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM ~-> -- Flex

[flexcoders] 1.5 -> 2.0: Is it possible to use LocalConnection without creating a custom class?

2006-06-14 Thread Tracy Spratt
Title: 1.5 -> 2.0: Is it possible to use LocalConnection without creating a custom class? I am trying to migrate a simple 1.5 example and got bogged down in the 2.0 examples in the docs.  All of them start by creating a custom class.  Is this necessary? Tracy __._,_.___ -- Flexcoder

[flexcoders] Re: calling custom component methods inside the parent application

2006-06-14 Thread Tim Hoff
Hi Chaitu, This might be what youre looking for.  I would put the cbSelected variable in a model somewhere, but this works. http://www.adobe.com/2006/mxml">                             

RE: [flexcoders] Re: One last try: Javascript security

2006-06-14 Thread Matt Chotin
You’re right that the settings manager (or a trust file) will be required for this if you want them to run off the local disk. I double-checked with the Player security guy.   The docs should explain more about where trust files need to live for the Player, if you have a real installer

RE: [flexcoders] Re: Problems setting Focus

2006-06-14 Thread Tracy Spratt
Change “SetFocus” to be the name of your application.  The wrapper html uses this as the id for the Flash Player object. Tracy   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Wednesday, June 14, 2006 6:40 PM To: flexcoders@yahoogroup

RE: [flexcoders] Re: Flex2B3: Problem making the number of panes in accordion dynamic

2006-06-14 Thread Tracy Spratt
Use ArrayCollection because Array.push does not emit the events necessary to update the bound controls.  Then use the ArrayCollection API to update the data. Tracy   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ralf Bokelberg Sent: Wednesday, June 14,

[flexcoders] having trouble with DataService fill

2006-06-14 Thread Tom Bray
I have a single destination called "users" with a very simple fill method that just creates 20 VOs, plugs them into an ArrayList and returns it. After the client-side ResultEvent, my ArrayCollection has 20 items but they all contain null. The FDS log for that response is below and the fill method

Re: [flexcoders] Re: Flex2B3: Problem making the number of panes in accordion dynamic

2006-06-14 Thread Ralf Bokelberg
Hi Aejaz Try to use an ArrayCollection instead of an Array. Cheers, Ralf. > How do I redraw the accordion once myArray is updated ? > Yahoo! Groups Sponsor ~--> Check out the new improvements in Yahoo! Groups email. http://us.click.yahoo.com/6pRQfA/

[flexcoders] Any documentation about Consumer.subtopic?

2006-06-14 Thread Tom Bray
How are subtopics configured? Can they be dynamically created? Can they have their own security constraints? Is there any documentation out there that Im missing? Thanks, Tom Yahoo! Groups Sponsor ~--> Great things are happening at Yahoo! Groups.

[flexcoders] Re: Flex2B3 :: StackOverflow #1023 :: hmmm

2006-06-14 Thread Michael Schmalle
oh yeah, StackOverflowError: Error #1023: Stack overflow occurred.     at mx.collections::ListCollectionView/::addItemsToView()     at mx.collections::ListCollectionView/::listChangeHandler()     at flash.events::EventDispatcher/dispatchEvent()     at mx.collections::ArrayList/::internalDispatc

[flexcoders] Flex2B3 :: StackOverflow #1023 :: hmmm

2006-06-14 Thread Michael Schmalle
Hi, I am getting a #1023 statckoverflow error on lines that have nothing to do with an array. Is this a memory error? Like the player is out of memory. It's happening in a VERY intensive proccessing loop. The docs say talk to Adobe, if the swf is not corrupt. Thoughts? Peace, Mike-- What go

RE: [flexcoders] Re: Problems setting Focus

2006-06-14 Thread Tracy Spratt
If you put the following code into the html wrapper, it will set the focus to the Flash Player in IE.  It does not work in FireFox.   window.> function setFocusOnLoad(){   SetFocus.focus(); }   Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] Re: The namespace that won't die

2006-06-14 Thread Tobias Patton
I think you do have to specify the namespace for each component. Unless a child node explicitly specifies a namespace, it inherits the namespace of its parent node.   It makes your code a bit more verbose, but shouldn’t cause any real problems.   Tobias.   From: flexcoders@y

RE: [flexcoders] Grid

2006-06-14 Thread Tracy Spratt
It sounds like your issue is communicating between components (and the main app).   In your case, I suspect you will need to, in the component, do something like: var oSelectedItem:Object = mx.core.Application.application.myComboBoxId.selectedItem;   Also see this example: http://ww

Re: [flexcoders] Re: creationComplete on custom non UI component

2006-06-14 Thread Michael Schmalle
Ah, I see the light, I was wondering about that. Thanks Gordon. Peace, MikeOn 6/14/06, Gordon Smith <[EMAIL PROTECTED]> wrote: Declare that your non-visual component implements IMXMLObject. The initialize() method will be called when the MXML properties

RE: [flexcoders] Duplicating controls dynamically

2006-06-14 Thread Gordon Smith
When you declare in MXML, the RadioButton instance does indeed have its 'name' property (and its 'id' property) set to the String "r1". However, this isn't what allows you to access the RadioButton instance using code like r1.label. To make that work, the MXML compiler autogenerates an i

RE: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-14 Thread Tracy Spratt
This implies result is an Array: public function onReviewsListResult( result : Array ){ reviewList = result; .. is that correct?   If so, make reviewList an ArrayCollection.  Type the variable in the component as ArrayCollection as well.     Tracy From: flexcoders@yahoog

Re: [flexcoders] Flash Player 9 Projected Adoption rate

2006-06-14 Thread John Dowdell
Evan Gifford wrote: > What's curious to me is that flash player 8 was > not markedly faster due to new "in-context upgrade" (which I have had > some trouble with). > http://www.flickr.com/photos/mannu/148867953/ It may be hard to see on that graph, but I do know that the Flash Player 8 adoption

RE: [flexcoders] Re: The namespace that won't die

2006-06-14 Thread Gordon Smith
Yes, this is required. The namespace scoping opeartor :: only applies to a single level when using  the . operator to dot down level by level.   But I think you should be able to use the .. operator to get to PlanNumber without going through Plans:   XML(obj_data)..ns_dmws::PlanNumber

[flexcoders] Passing strings to Flex 2.0 apps best practice?

2006-06-14 Thread Mark
So after a lot of reading and digging around, I found that I can access HTTP GET arguments that are provided in the call to a FLEX swf if the URL is: http://www.foo.com/bar.swf?var=woot Then the following label will print woot: So here is my question for the list: Is this the right way to do

RE: [flexcoders] Re: creationComplete on custom non UI component

2006-06-14 Thread Gordon Smith
Declare that your non-visual component implements IMXMLObject. The initialize() method will be called when the MXML properties have been set on your component:   /**   *  Called after the implementing object has been created and all   *  component properties specified on the MXML tag

RE: [flexcoders] ContextMenu and DataGrid question

2006-06-14 Thread Deepa Subramaniam
Hi –   So the mouseTarget property is a reference to the DataGridItemRenderer which the context menu opened upon. You can access the listData property off of a DataGridItemRenderer to then access rowIndex and columnIndex and whatever other goodies you’d like. Check out my example below.

RE: [flexcoders] Duplicating controls dynamically

2006-06-14 Thread Gordon Smith
When you assign an 'id' in MXML, an instance variable containing a reference to the component gets created in your Application or MXML component.   So you would simply do this:             private var r:RadioButton;       private function someMethod():void     {    

Re: [flexcoders] ActionScript 2.0 to 3.0 migration - Invoking static initializers

2006-06-14 Thread Ralf Bokelberg
Dear Karthi, afaik the constructor is only executed, if you use the new keyword. If you want to test this for yourself, insert a trace statement or a breakpoint into A and debug your application. Cheers, Ralf. On 6/14/06, karthikeyanik <[EMAIL PROTECTED]> wrote: > Hi, >In flex 1.5, referenci

RE: [flexcoders] working with XML

2006-06-14 Thread Gordon Smith
If you download Flex 2 Beta 3 from www.adobe.com and look through the examples and documentation, I believe you will find some examples of using XML with Flex. ActionScript 3 implements the E4X (EcmaScript for XML) standard, which provides a very powerful way of manipulating XML.   To d

[flexcoders] Re: The namespace that won't die

2006-06-14 Thread ben.clinkinbeard
Anyone? I shouldn't have to use the namespace qualifier for every level I go down, should I? Thanks, Ben --- In flexcoders@yahoogroups.com, "ben.clinkinbeard" <[EMAIL PROTECTED]> wrote: > > Hello, part 6735 in the namespace hell series... Shouldn't code like this: > > XML(obj_data).ns_dmws::Plan

RE: [flexcoders] colorPicker, getting the colour out

2006-06-14 Thread Gordon Smith
selectedColor is a uint specifying the RGB value of the selected color. A uint is an unsigned integer and can be displayed in any number base.   If you do trace(myColorPicker.selectedColor) the trace() will display this uint as a decimal number. To see it in hexadecimal notation, try  

[flexcoders] Re: Problems setting Focus

2006-06-14 Thread Tim Hoff
Hi Bruce, In your application's HTML wrapper, you need to set focus to the swf with javascript. I don't have a link readily available to show you how to do this. Besides, it's not an Adobe supported method. But, if you search this list or Google for "Flex2 setFocus", you should be able to f

[flexcoders] Flash Player 9 Projected Adoption rate

2006-06-14 Thread Evan Gifford
I found this interesting graph from Manish Jethani which shows flash player adoption rates. What's curious to me is that flash player 8 was not markedly faster due to new "in-context upgrade" (which I have had some trouble with). http://www.flickr.com/photos/mannu/148867953/ Does anyone have a

Re: [flexcoders] flex 1.5 with php

2006-06-14 Thread Oscar . Cortes
I know you can use theJSP tag library shipped with Flex to render Flex in a JSP page but I am not sure about php, probably not. |-+-> | | | | | "Ravindra Suthar" | | | <[EMAIL PROTECTED]| |

Re: [flexcoders] Grid

2006-06-14 Thread Oscar . Cortes
I think this is known problem with Flex 1.5, check the FAQ list http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt. On the other hand, I ran once into this and I actually created AS classes for a couple of the functions that I had in my mxml file. Another option is what your colleag

RE: [flexcoders] flex 1.5 with php

2006-06-14 Thread Evan Gifford
Here is an example of a flash file which uses PHP for file upload: www.undustrial.com/ps/fileref/   Just click “upload” and select an image on your computer .. it’s pretty cool, click on the image after it’s uploaded! :^) This communicates to PHP using an XML interface. This is not

[flexcoders] New FLEX 2 application development

2006-06-14 Thread Alexander Tsoukias
Hello, I would like Adobe consulting to contact me for a FLEX 2 application I would like to build, but cannot find any trustworthy FLEX 2 developers to work on it. If any other developer thinks that he is capable of handling a FLEX 2 project with CF as a backend please contact me, but only if

RE: [flexcoders] Grid

2006-06-14 Thread Evan Gifford
How about a replicator in a scroller? I’m using this to display a checkbox next to contact information in a list.     From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hitch_nj Sent: Wednesday, June 14, 2006 12:56 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Grid

2006-06-14 Thread Robert Brueckmann
Try looking at the custom cell renderer examples to get checkbox and comboboxes in your datagrid by running the ‘samples’ webapp that comes with the Flex installation (of checking it out at the bottom of this page: http://www.adobe.com/devnet/flex/example_apps.html) or you can read about i

[flexcoders] flex 1.5 with php

2006-06-14 Thread Ravindra Suthar
Hi All,   I would like to see output of flex1.5 in php file . Is this possible and can I use flex tag inside php?   Regards   Ravindra Suthar   __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http

[flexcoders] flex2gateway woes on UNIX

2006-06-14 Thread wlbagent
Sorry for this long post but I wanted to provide as much info as possible. On my WindowsXP workstation I have ColdFusion with the CF-FLEX connectivity update installed in the standalone configuration using the built-in web server. CF is installed in the usual C:\CFusionMX7 directory and flex-enter

[flexcoders] Grid

2006-06-14 Thread hitch_nj
Hi, I am new to Flex, and am having this problem. Would really appreciate if anyone can help me. Overview: I have an excel sheet which I need to replicate in Flex 1.5. There is a checkbox, a ComboBox and lots of cells with data. Issue: I tried using the tag to populate the cells, and was success

RE: [flexcoders] Re: calling custom component methods inside the parent application

2006-06-14 Thread Chaitu Vadlapatla
Thank you so much. Would work beautifully. But I am using the checkCell more as item renderer inside a datagrid. On selecting one checkbox dummyCheckBox_cb I want to select all the check boxes inside my datagrid column. thanks     Sent: Wednesday, June 14, 2006 12:20 PM To: flex

[flexcoders] ContextMenu and DataGrid question

2006-06-14 Thread djbrown_rotonews
I'm trying to set up a ContextMenu inside a DataGrid that has knowledge of where in the grid the right click occured. All I'm able to see via the ContextMenuEvent is the mouseTarget that knows about the underlying text in the cell. I'm needing something similiar to rowIndex and columnIndex tha

[flexcoders] Re: ActionScript 2.0 to 3.0 migration

2006-06-14 Thread karthikeyanik
Thanks Abdul --- In flexcoders@yahoogroups.com, "Abdul Qabiz" <[EMAIL PROTECTED]> wrote: > > > public interface TestInterface { > > function test(obj:Object):Boolean; > > } > > From AS3 spec:- > > 1) Interface methods are not public by default, but are added to the public > namespace by the

[flexcoders] checkCellRenderer class

2006-06-14 Thread Chaitu Vadlapatla
Hi,    Is there a check Cell renderer class for FLEX. I am trying to insert check boxes into one of my columns in the datagrid and control the rows depending on whether the checkboxes have been selected or not. Thanks Chaitu   __._,_.___ -- Flexcoders Mailing List FAQ: http:/

Re: [flexcoders] calling custom component methods inside the parent application

2006-06-14 Thread Luís Gustavo Sanabio
You must set cbSelected as Bindable.   [Bindable] private var cbSelected:Boolean;  Gustavo Sanabio     2006/6/14, Chaitu Vadlapatla <[EMAIL PROTECTED]>: CheckCell.dummy()" x="15" y="535"/>//this piece is in my main application mxml My problem is with the click function. On this click of the

[flexcoders] Adobe Developer Week Presentations

2006-06-14 Thread dirtmediaworld
Does anyone know where the Developer Week presentations are being made available after the presentations are over? Specifically "Architecture and Overview of Adobe's Security Model". Missed it. -Dustin Yahoo! Groups Sponsor ~--> Get to your groups

Re: [flexcoders] flex builder mini-freezes

2006-06-14 Thread Michael Schmalle
Yeah, I have. There is probably a memory leak in it and restarting it is about the only cure. Sometiems it might be wise to restart you computer. I'm sure this is tiddied up in the final release. Peace, MikeOn 6/14/06, Jason <[EMAIL PROTECTED]> wrote: Does anyon

[flexcoders] flex builder mini-freezes

2006-06-14 Thread Jason
Does anyone else have this problem in FB2b3? After working for a while, FB seems to get in a state where about every three seconds, it will freeze for about one second. So if you're cursoring around, it kind of goes in spurts. Same with typing. Eventually, I just shut it down and restart it an

[flexcoders] Problems setting Focus

2006-06-14 Thread blomasky
When my application starts, I would like to set focus on a particular control. It looks like it works (the field gets a blue border), but I can NOT type into the field until I click on the field. I am using the creationcomplete to call the function that sets focus. If I call this function when

[flexcoders] FB3 addedEffect, removedEffect and popUps

2006-06-14 Thread Jaime Bermudez
Hey guys,I wanted some move effects initiated on popups when created, added or removed through the PopUpManager.  I figured out that the PopUpManager.removePopUp(popUp) method will trigger a "removedEffect" on the popUp window, at least for modal dialogs.  This makes sense b/c it's probably remo

RE: [flexcoders] Flex 1.5 AMF Issue

2006-06-14 Thread Peter Farland
Josh, that doesn't make much sense (not what or how you described it, but rather the workaround behaving any differently)... so can you send me a simple reproducible case offline (remember to rename .zip extensions so that they get are allowed through our email filter) and I can take a clos

[flexcoders] Re: calling custom component methods inside the parent application

2006-06-14 Thread Tim Hoff
This should work as long as you define an id in the main application mxml, for your CheckCell.mxml component. In the CheckCell.mxml: cbSelected = Application.application.dummyCheckBox_cb.selected; //-- However, you could do it

RE: [flexcoders] Chart - How to set up color on series ? Bug ?

2006-06-14 Thread Ely Greenfield
      Yup, that's what it means.  In general, we on the flex team agree with you. At one point we wanted to automatically provide property wrappers for all the styles, but it didn't make it onto the list. That approach also has some theoretical problems...most of the styles on a give compon

RE: [flexcoders] Chart - How to set up color on series ? Bug ?

2006-06-14 Thread Daniel Tuppeny
Does this mean that typos in styles will now only be caught at runtime, rather than compile time? To me, the old methods looks nicer :-) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ely GreenfieldSent: 14 June 2006 17:13To: flexcoders@yahoogroups.comSubject: R

[flexcoders] Re: Dynamic lineSeries

2006-06-14 Thread ruddyvanduynslager
Have found something The problem is that I do not see anything during the rendering, however in the debug mode, the data are well fillin ?!!!??? var ls : LineSeries = new LineSeries(); ls.yField = name; ls.displayName = name; ls.name = name; ls.id="id"+name;

[flexcoders] Flex 1.5 AMF Issue

2006-06-14 Thread Joshua Garnett
I'm having a problem passing objects that contain objects through the AMF gateway.  I've found a way to work around it, but I'm not really keen on the solution.  What I'm trying to do is pass an object to a java function.  This object contains a reference to another object within it.  When tryin

[flexcoders] MXMLC Error

2006-06-14 Thread Lance Linder
Hoping someone can shed some light on this error message I am getting from the MXLMC compiler being called from Ant.   “Error: Compilation unit had no type info and after parsing has no syntax tree”   Below this it says…   “java.lang.AssertionError: Compilation unit had no type inf

[flexcoders] ActionScript 2.0 to 3.0 migration - Invoking static initializers

2006-06-14 Thread karthikeyanik
Hi, In flex 1.5, referencing the object on the right side of the assignment causes its static initializers to be called. eg: public class Test { var static temp com.test.A = com.test.A ; } public class com.test.A { var static str : String = "test";

RE: [flexcoders] Chart - How to set up color on series ? Bug ?

2006-06-14 Thread Ely Greenfield
      Back in Flex 1.5, because of limitations of the compiler, we had to wrap a bunch of the charting styles with stubbed out get/set functions.  Now that those limitations have been fixed, we scrubbed the classes in Beta3 and removed those stubbed out functions.  So instad of :   pieSeri

[flexcoders] Datagrid sorting happening automatically

2006-06-14 Thread Joe Stramel
I am retrieving info from a database using a remote object and putting it into an ArrayCollection.  I use that array to populate a datagrid which has an item editor in it with a numeric stepper (to modify a quantity field which has a default of 0).  Everything is working great, however eve

Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-14 Thread Phil Marston
Yeah I know about that, but this is an object that I'm getting back from AMFPHP via remoting my Object looks like this;        [Bindable]             public var reviewList:Object={         reviewDate:null,             reviewer:null,             title:null,            

[flexcoders] Re: Chart - How to set up color on series ? Bug ?

2006-06-14 Thread ruddyvanduynslager
Ok, I' have found it. For those which have some interrest, I used this: chrtPie.series[0].setStyle("fills",arrColorSerie); arrColorSerie is an array containing all the colors. Yahoo! Groups Sponsor ~--> Protect your PC from spy ware with award w

RE: [flexcoders] calling custom component methods inside the parent application

2006-06-14 Thread Chaitu Vadlapatla
x="15" y="535"/>//this piece is in my main application mxml My problem is with the click function. On this click of the check box I want to call a function inside my component mxml and I cannot. The component MXML looks like this Component MXML named ="CheckCell.MXML  

[flexcoders] Dynamic lineSeries

2006-06-14 Thread ruddyvanduynslager
I try to construct new lineSeries with the code: var ls : LineSeries = new LineSeries(); ls.yField = strName; ls.displayName = strName; ls.name = strName; ls.id="id"+strName; this works perfect. But with ls.radius=5 nothing happend And with ls.showDataEffect = "interpolate" Ls.stroke = new

[flexcoders] Re: Flex2B3: Problem making the number of panes in accordion dynamic

2006-06-14 Thread aejaz_98
It seems that Form id can't be dynamic, so I dropped the form id & the Accordion is drawn correctly with the panes taking input from myArray. If I added one more element to myArray, I expected the Accordion be updated automatically but that doesn't happen. Why ? How do I redraw the accordion o

Re: [flexcoders] dragging problem

2006-06-14 Thread Tom Chiverton
On Wednesday 14 June 2006 12:26, rajeshd2783 wrote: > Please help me out.as soon as possible. Is there some specific problem with the example in the docs ? -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells

Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-14 Thread Tom Chiverton
On Wednesday 14 June 2006 15:25, Phil Marston wrote: > lol - the 1st place I tried :-P I guess I'm just not searching the > vast tome for the right thing! :-( You can just declare the data provider as an inline array or something: http://livedocs.macromedia.com/labs/1/flex20beta3/wwhelp/wwhi

Re: [flexcoders] colorPicker, getting the colour out

2006-06-14 Thread Peter Baird
Title: Re: [flexcoders] colorPicker, getting the colour out Sonja, The below example should include all aspects of what you’re trying to do. Let me know if you have questions about the below code:                     On 6/14/06 10:15 AM, "Sonja Duijvesteijn" <[EMAIL PROTECTED]> wrote:

Re: [flexcoders] calling custom component methods inside the parent application

2006-06-14 Thread Luís Gustavo Sanabio
What is raga? Maybe ID is missing. Gustavo Sanabio  2006/6/13, Jeremy Lu <[EMAIL PROTECTED]>: try this:    public function dummy ()    {         cbSelected = parent.raga.selected;                      

Re: [flexcoders] colorPicker, getting the colour out

2006-06-14 Thread Sonja Duijvesteijn
Thank you Tom, I think that's not in the documentation as well, but not exactly what I mean.I'd like to figure out the hexidecimal code that has been selected after a user operation. So not the one I can put in myself. Sonja2006/6/14, Tom Chiverton <[EMAIL PROTECTED]>: On Tuesday 13 June 2006 1

[flexcoders] Aligning formitem labels

2006-06-14 Thread Bas J. Brey
Is this possible? The help says it it not and I wonder why..   Anyone got a clue?     __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

RE: [flexcoders] calling custom component methods inside the parent application

2006-06-14 Thread Chaitu Vadlapatla
I want the other way round. I want to be able to call a function in the component inside the parent application.     From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeremy Lu Sent: Tuesday, June 13, 2006 9:58 PM To: flexcoders@yahoogroups.com Subject: Re: [fle

Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-14 Thread Phil Marston
Tom Chiverton wrote: On Wednesday 14 June 2006 14:07, Phil Marston wrote: OK where do I begin looking in to that? Besides the docs :-) lol - the 1st place I tried :-P  I guess I'm just not searching the vast tome for the right thing!  :-( -- __

[flexcoders] Syntax for using mx:Binding Tag with ComboBox.selectedItem.data?

2006-06-14 Thread Libby
I am trying to use a mx:Binding tag to collect the user's selection and put it into a model. No matter how I style the syntax, Flex gives me the "unknown property" warning. Could someone tell me what I am doing wrong, specifically: how to code this so the Binding tag handles the changes? I know I c

Re: [flexcoders] Convert AJAX to Flex?

2006-06-14 Thread Anatole Tartakovsky
Tom, 1. Code loading: That is just proves my point - developers have to do the tricks to increase probability the code gets downloaded. Imagine you have 1MB+ of code to take care of - size of your average Flex app while still in beta. I do not think we had a problem with code loading or pre

Re: [flexcoders] colorPicker, getting the colour out

2006-06-14 Thread Sonja Duijvesteijn
Sending another mail on this question as it might not have been obvious that i'm still looking for the answer. I realise it should be really easy but i'm at a loss here.When a user selects a colour from the STANDARD colorpicker, how do I get the hexadecimal value? Sonja2006/6/14, Sonja Duijveste

[flexcoders] The namespace that won't die

2006-06-14 Thread ben.clinkinbeard
Hello, part 6735 in the namespace hell series... Shouldn't code like this: XML(obj_data).ns_dmws::Plans.PlanNumber successfully access any and all PlanNumber nodes in a chunk of XML like this?: http://site.com/Back/DocMetadata";> RPR 78167 78168 InProgress It doesn't. In case

Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-14 Thread Tom Chiverton
On Wednesday 14 June 2006 14:07, Phil Marston wrote: > OK where do I begin looking in to that? Besides the docs :-) > Is it just a case of > public class myDataObject extends Object ??? Preaty much. I don't think you need to extend IDataProvider or anything. -- Tom Chiverton

RE: [flexcoders] Excel Export

2006-06-14 Thread Jim Robson
That’s great – thanks!   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Steve Gustafson Sent: Wednesday, June 14, 2006 8:59 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Excel Export   Jim, What I mean by "true" Excel f

Re: [flexcoders] Excel Export

2006-06-14 Thread Steve Gustafson
Jim,What I mean by "true" Excel files is a binary file that is native to Excel.  Not a delimited text file, or HTML file that Excel can open.The difference is that by generating a "true" Excel file with POI-HSSF, you have the ability to: create multiple worksheetssplit and freeze panesdraw shape

[flexcoders] FB2B3: FlexUnit not showing stack trace

2006-06-14 Thread Jim Robson
I’m trying FlexUnit, and everything appears to be working correctly except that nothing appears in the stack trace field. Has anyone else experienced this? If so, how did you resolve it?     __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/fil

Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-14 Thread Phil Marston
Should I have asked! OK where do I begin looking in to that? Is it just a case of public class myDataObject extends Object ??? or public class myDataObject extends IEventDispatcher ??? I'm guessing there's more, but I'm getting out of my depth without knowing where to look for more info .

[flexcoders] Re: One last try: Javascript security

2006-06-14 Thread drome.dario
Now... I'm wondering on how an installer program could config flash player in order to trust on a given set of files. Any ideas? Regards Yahoo! Groups Sponsor ~--> Get to your groups with one click. Know instantly when new email arrives http://u

Re: [flexcoders] Re: Uh oh Ajax...

2006-06-14 Thread Tom Chiverton
On Wednesday 14 June 2006 13:59, Tim Scollick wrote: > OMG. Now, those hackers totally know the longitude AND the latitude of > that coffee shop I was looking for in Scarborough... :waits for the first mobile phone / PDA to 'leak' this information in it's HTTP headers -- Tom Chiverton ***

RE: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-14 Thread Peter Farland
Try wrapping in an mx.utils.ObjectProxy   (note this is what creates under the covers). From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Phil MarstonSent: Wednesday, June 14, 2006 4:01 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Flex 1.5 to Flex 2 m

RE: [flexcoders] Flex2Beta3: CF/FDS/FMS setup

2006-06-14 Thread Dirk Eismann
For audio/video chat you definitely need FMS, text-chats only can be done with FDS. Dirk. > -Original Message- > From: flexcoders@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of Thomas Rühl -akitogo- > Sent: Wednesday, June 14, 2006 2:57 PM > To: flexcoders@yahoogroups.com > Su

[flexcoders] Flex 2 Beta 3 - MenuBar rollover text color not changing

2006-06-14 Thread supertodda
Hello, I've searched everywhere and no matter what I do, CSS or setStyle, I cannot change the color of the text on the top level of the menu bar when rolled over (the text that actually appears on the menu bar). Everything else works fine except for the textRollOverColor on the menu bar. If a

Re: [flexcoders] Re: One last try: Javascript security

2006-06-14 Thread Abdul Qabiz
Hi,Your code works for me. And yeah, I have allowed all files on my desktop in Settings Manager.So, I suggest always test files from a webserver...-abdulOn 6/14/06, drome.dario <[EMAIL PROTECTED]> wrote: Hi guys, I catch it: Visit this link bellow and add you html

[flexcoders] Flex2Beta3: CF/FDS/FMS setup

2006-06-14 Thread Thomas Rühl -akitogo-
Hi all, I'm in the process of planning a customer support application. Customers will be abel to reach an internal worker by using a Flex application. The worker sees a list of incoming requests and selects one he wants to answer. The conversation should be possible using chat, audio and video

Re: [flexcoders] Re: Uh oh Ajax...

2006-06-14 Thread Tim Scollick
This is my favourite:"Future vulnerabilities are likely to be found in mash-ups, the combination of a known service based on Ajax, such as Google Maps, and some service added on top of them."OMG.  Now, those hackers totally know the longitude AND the latitude of that coffee shop I was looking fo

RE: [flexcoders] dragging problem

2006-06-14 Thread Jim Robson
Search the documents for “drag and drop” and you’ll find lots of information to get you going.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Rajesh Deshmukh Sent: Wednesday, June 14, 2006 7:18 AM To: flexcoders@yahoogroups.com Subject: [flex

  1   2   >