RE: [flexcoders] compiler warnings with [Bindable] internal

2006-09-20 Thread Matt Chotin
Paul said he tried a simple example and it worked OK so we might need more info to see if theres a bug. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml mx:Script ![CDATA[ [Bindable] internal var foo:String = bar; ]] /mx:Script

RE: [flexcoders] using an OCX with Flex

2006-09-20 Thread Matt Chotin
Hi Bruce, You might need to look at it differently and have your original OCX hoist up Flex (or use another hosting tool and communicate using ExternalInterface). Flex itself (running in the Flash Player) doesnt get access to native OS commands, so you need to do some bridging

RE: [flexcoders] Implementation of Concept: Grid

2006-09-20 Thread Matt Chotin
I guess what Id do is define the columns of the DataGrid explicitly where each column is for an individual width. Your dataProvider to the grid would then be a collection of items where each item is for a given length (you might want to lock the leftmost column and have that value be

RE: [flexcoders] FP 9 Sandbox Bug Between Firefox and IE?

2006-09-20 Thread Matt Chotin
I think this is a known issue. The viewSource SWF itself was probably not re-published with the network settings so even though the first SWF comes up correctly our view source logic is pre-compiled to use the network. Ill forward this in to be sure. Matt From:

RE: [flexcoders] Custom Component Updates...

2006-09-20 Thread Matt Chotin
What property is the combo box supposed to pay attention to. Should you just be overriding a setter on the ComboBox so that youre aware when the data changes? Or is this binding to the variable thats used in the filterFunction that you want to do? Maybe rather than making that variable

RE: [flexcoders] Data Binding Question - will both work?

2006-09-20 Thread Matt Chotin
I think we made that change between beta3 and release so if things are working for you now I believe youre set. But your preferred choice is preferred by us too I think J Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nwebb Sent: Tuesday,

RE: [flexcoders] FDS Running as a Service?

2006-09-20 Thread Matt Chotin
You really need your application server to start as a service. If you have the commercial version of JRun it comes with instructions on how to do this. If youre using something like Tomcat there are instructions on how to run that server as a service within its own docs. So its the

RE: [flexcoders] Flex 2.0 Hosting ( Cheap / Inexpensive )

2006-09-20 Thread Matt Chotin
Yes, CFDynamics has been considering it. Im not sure if others have been considering it recently, Ill ask Eric but we havent seen a massive request for it recently. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brendan Meutzner Sent:

RE: [flexcoders] How to implement BarChart with vertical scroll bar

2006-09-20 Thread Pekka Kola
Thank you Ely! Btw, now, knowing the height of chart row, I can implement the scroll bar to chart too. It is possible to do by providing the chart with a subset of data; the subset is selected by scroll bar. Pekka From: flexcoders@yahoogroups.com

RE: [flexcoders] Remote Object caching the results?

2006-09-20 Thread Matt Chotin
You need to make sure that a frame passes between the two calls. If you call one right after another in your AS code they will be sent in the same network request and therefore will be combined in their responses. So what you can do is call the first method, then do a callLater to call

RE: [flexcoders] Custom Component Updates...

2006-09-20 Thread Ken Bromberger
Hi Matt, Thanks for your response; basically I want the como box to listen for the change to a bindable public variable I have set up. Then when that variable is changed from outside the component, from another combo or datagrid etc I then want the filterFunction to use that

[flexcoders] Re: Architecting a large, modular Flex application

2006-09-20 Thread maxym.hryniv
Hi. I don't see the reason to create abstract base classes for all value objects, models etc. Can you explain one more time? Can you also describe how you create modules (flex app|flex library) and how you load them (in main|separate|child app domain)? --- In flexcoders@yahoogroups.com,

RE: [flexcoders] Custom Component Updates...

2006-09-20 Thread Matt Chotin
So lets say what you currently have is this: [Bindable] public var foo:Object; You would change that to: private var _foo:Object; [Bindable(fooChanged)] Public function get foo():Object { Return _foo; } Public function set foo(f:Object):void { _foo = f;

[flexcoders] Panel Rounded Bottom Corners

2006-09-20 Thread omkarjoe
Hi All, I am trying to create a pannel which does not have rounded bottom corners. When I set roundedBottomCorners style of a panel to 'false', GOD knows why but it doesn't affect??? And interestingly if I switch to design mode it shows squarish corners but when I run my application they are

[flexcoders] FDS Locally Compiled Remote Object does not work

2006-09-20 Thread vuleman
Hi, When I select FDS Compile app on server for new Flex project, my remote object call works just fine. However when i switch to Compile locally, all remote object calls failed. The code is identical for both cases. Is there some sort of manual configuration I need to set for this? I'm

[flexcoders] Re: Help on a general way to serialize a model and its contents

2006-09-20 Thread greenfishinwater
Thanks for the reply, I actually like the Flex 1.5 methodology as it fits in with what I want to do further down the line. I am using Flex 2.0. I have been using models to hold VO for database usage. But I am being drawn to using XML instead of a Model, as I can make use of all the XML methods,

[flexcoders] Limit length of Webcam video recording

2006-09-20 Thread kristian_wright2002
I'm writing something that lets a user record streaming video from their webcam onto Flash Comm Server. However, I want to be able to set a limit on the time that they can record for (eg 1 min max). I've got the recording sorted out, but how would I go about imposing this time restriction on the

[flexcoders] Re: Tree Component closing and opening item

2006-09-20 Thread Mick Robin
Thanks barry and Mike! I have tried all the permutations and combinations it works fine without animation but when we set the animation true.It does not. I agree with Mike,We really have to do some major changes on the Tree component to achive this. Anyway,I wanted to achieve somthing like

[flexcoders] photo gallery example

2006-09-20 Thread b0b0bb0b
I've been looking at the photo gallery example from the adobe site, and i've a problem when I place the swf file onto a web server. I've modified the code so that all the photos are loaded from a XML file and this allows me to do a search, so that anyone entering the site can load only a few

[flexcoders] Re: Setting new dataProvider and selectedIndex properties to HorizontalList simultaneously

2006-09-20 Thread Sergey Kovalyov
Hi All! It seems that assigning new dataProvider with setting new selectedIndex that equals previous selectedIndex value result in such a problem. I resolved the issue with setting -1 to selectedIndex before updating dataProvider and then setting its actual value. Are there any more suitable

[flexcoders] Re: FDS and web service.

2006-09-20 Thread secolaha
It turns out that the error only occurs if I run it from within FlexBuilder. The main difference beeing that the file is called as http://192.168.1.163/flex/bin/FilterBuilder.html if I point the browser straight at the mxml file at http://192.168.1.163/flex/FilterBuilder/FilterBuilder.mxml

[flexcoders] Record Animation to swf

2006-09-20 Thread Luis Arias
I have what I think is a unique issue and was looking for some thoughts.I've created a flex app which allows someone to create animations that can be viewed by playing the created animation(Basically a panel with a bunch of images inside it with get moved around with one big Parallel effect). I

[flexcoders] Re: call function (how-to)

2006-09-20 Thread caruso_canepari
Hi, now I get three compiler errors: the fact is that I'm trying to learn as3 by using Flex and the presence of MXML is getting me crazy... Is there a way to compile swf without mxml? On with the errors: 1047Parameter initializer unknown or is not a compile-time constant. 1180Call to a

RE: [flexcoders] Architecting a large, modular Flex application

2006-09-20 Thread Dimitrios Gianninas
Now that I am back in the office, here is the full ant command we use to compile cairngorm and exclude all unneccesary libraries: exec executable=${FLEX2_COMPC} dir=${BUILD} vmlauncher=false failonerror=true arg

[flexcoders] Converting Flash components to use in Flex

2006-09-20 Thread brownd_92
Hi there, Does anyone know if there is a way to convert flash 8 components to use with Flex? Cheers David -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo!

[flexcoders] Is there a better way than invisible colums

2006-09-20 Thread boy_trike
I have a datagrid which displays some information stored in an array collection. I have some columns that I want displayed in text areas below the grid (large comments). I coded this by having some of the columns in the grid set to visible=false and my change handler has lines that say:

[flexcoders] Configuring Destination for Remote Object

2006-09-20 Thread Madhuri Chamarty
hi,I have problems invoking the remote object. I have configured the remoting-config.xml file where i included the destination asdestination id="Loginchk" properties sourcecom/domain/Loginchk/source scopeapplication/scope /properties/destinationAnd in the service-config.xml i have

Re: [flexcoders] Data Binding Question - will both work?

2006-09-20 Thread nwebb
Thanks Matt :]Much appreciated.On 9/20/06, Matt Chotin [EMAIL PROTECTED] wrote: I think we made that change between beta3 and release so if things are working for you now I believe you're set. But your preferred choice is preferred by us too I think

[flexcoders] Re: Embedding Arial Unicode

2006-09-20 Thread dadrobson
Daniel Tobias: I'm having the same issue. Did either of you file a bug report with Adobe? Jim --- In flexcoders@yahoogroups.com, Daniel Wabyick [EMAIL PROTECTED] wrote: I had this exact same issue. I solved it by using the local(Arial Unicode MS) and specifying a subset of unicode

[flexcoders] Re: Architecting a large, modular Flex application

2006-09-20 Thread derrickgrigg
The reason for creating the abstract base classes and placing them in an RSL is so the modules (seperate swfs) can be developed and compiled with strict data typing to particular value objects and models that are retrieved from the ModelLocator which exists in the main shell application. The

[flexcoders] Re: AS3: List of dispatched events from any EventDispatcher in run-time

2006-09-20 Thread bjorn.schultheiss
I havent seen the event dispatcher code. I assume it would use a hashtable style lookup, 1 solution could be to store the event types as static members. --- In flexcoders@yahoogroups.com, Tomas Lehuta [EMAIL PROTECTED] wrote: Hello ActionScripters, is it somehow possible in ActionScript

[flexcoders] Re: Embedding Arial Unicode

2006-09-20 Thread dadrobson
Daniel: How did you get Flex to embed a subset of the characters? I can't get it to embed any part of Arial Unicode. The following code, for example, throws the same error as embedding the entire font. What method did you use? @font-face { src:url(fonts/ARIALUNI.TTF);

[flexcoders] Re: Architecting a large, modular Flex application

2006-09-20 Thread derrickgrigg
That's great Dimitrios, thanks. One question, are you using that command file in the flex 2 command line compiler or in ant? --- In flexcoders@yahoogroups.com, Dimitrios Gianninas [EMAIL PROTECTED] wrote: Now that I am back in the office, here is the full ant command we use to compile

RE: [flexcoders] FDS Locally Compiled Remote Object does not work

2006-09-20 Thread Peter Watson
Hi Vu, When you compile on the server, it automatically knows how to resolve the context root for the FDS application When you compile locally, you need to provide the context root in the Flex Builder project compiler options compiler.context-root /flex (or /foo or whatever

Re: [flexcoders] Converting Flash components to use in Flex

2006-09-20 Thread Michael Schmalle
Hi,Not a chance. The validation algorithm shares similar patterns but, on a whole what you will have to do is 'abstract' what you know about your Flash 8 component and transfer logic into the flex framework. 1. Flash 8 is AS2, there is a huge difference, interfaces, formatting, namespace

Re: [flexcoders] Limit length of Webcam video recording

2006-09-20 Thread Abdul Qabiz
hmm.. you can achieve this either on server-side or client-side.You can probably start a timer once recording starts (after camera initializes and all) and keep track oftime spent so far. You can sync time progress-bar with that timer...Stop recording once, time spent is equal to allowed

RE: [flexcoders] Re: Architecting a large, modular Flex application

2006-09-20 Thread Dimitrios Gianninas
That is the straight ant command. Search the docs in Flex Builder for "command line compiler" and it will give u more details. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of derrickgriggSent:

[flexcoders] Re: Flex 2 courses in Ottawa

2006-09-20 Thread jenunderscore
Thanks very much! :) I look forward to diving-in head-first with Flex! I'll keep you updated with my feedback on the courses! --- In flexcoders@yahoogroups.com, David Mendels [EMAIL PROTECTED] wrote: Hi Jen, Not sure if they are on this list, but we (Adobe) have about 300 people in Ottawa

[flexcoders] Re: call function (how-to)

2006-09-20 Thread Bela Hajzer
--- In flexcoders@yahoogroups.com, caruso_canepari [EMAIL PROTECTED] wrote: Hi, now I get three compiler errors: the fact is that I'm trying to learn as3 by using Flex and the presence of MXML is getting me crazy... Is there a way to compile swf without mxml? On with the errors: 1047

[flexcoders] ComboBox Data Refresh Events

2006-09-20 Thread Jamie O
I remember googling somewhere that when you programatically change combo box data it doesn't trigger the change event. You had to force an event to fire or on that event call your function or something? I've built a component that calls an XML source. One combobox (cmbStreet) is a normal

[flexcoders] Using SpringBeanAdapter instead of FDS

2006-09-20 Thread dreuimar
Hey everyone, I'm currently constructing an application that uses DataServices with the Hibernate Assembler. I wanted to make the business logic independent of the view (Flex) so that another application I write with a web frontend (using Spring MVC) can use the same logic that Flex uses. I was

Re: [flexcoders] Re: Example: Creating and using custom tooltips

2006-09-20 Thread Tom Fitzpatrick
Thanks, Nick. I think that would work. I realized, though, that a better way would be to always anchor the custom tooltip in the same x and y position relative to the tooltip target. That way it will stay out of the way of the pie chart. I'm trying to figure that out now. - Tom n51red wrote:

Re: [flexcoders] FP 9 Sandbox Bug Between Firefox and IE?

2006-09-20 Thread Dave Carabetta
On 9/20/06, Matt Chotin [EMAIL PROTECTED] wrote: I think this is a known issue. The viewSource SWF itself was probably not re-published with the network settings so even though the first SWF comes up correctly our view source logic is pre-compiled to use the network. I'll forward this in

[flexcoders] Stacked areachart with type=curve produce looped endpoints??!?!

2006-09-20 Thread Rickard Dahlstrand
Hi, I'm getting a weird looking graph (the endpoints have loops in them) when using type=stacked (in areagraph) and form=curve (in AreaSeries) together. Can anyone give me any hint to why this is and if there is a solution that allows me to use curve and stacked? Rickard. mx:Script

[flexcoders] Flex swf caching

2006-09-20 Thread Jonas Windey
Hi, What is the best way to ensure that, when uploading a new version of our project to the server, the client gets a new version of the swf file the next time he refreshes his browser? To ensure that you have the latest version, we have to say that they should clear their browsers

Re: [flexcoders] Re: Embedding Arial Unicode

2006-09-20 Thread Daniel Wabyick
I filed a lot of bugs recently, and I can't remember if I filed this one. Probably wouldn't hurt to file this one again. dadrobson wrote: Daniel Tobias: I'm having the same issue. Did either of you file a bug report with Adobe? Jim --- In flexcoders@yahoogroups.com

[flexcoders] Re: Limit length of Webcam video recording

2006-09-20 Thread kristian_wright2002
Thanks Abdul. Was looking into that as your answer came up! Works a treat! Cheers, K. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit

[flexcoders] Re: using an OCX with Flex

2006-09-20 Thread boy_trike
Thanks for the reply. Since I will be using Coldfusion for my database access, is it possible to access an OCX from within CF?. Bruce -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] Re: Embedding Arial Unicode

2006-09-20 Thread Daniel Wabyick
Here is how I got it to work: @font-face { src: local(Arial Unicode MS); unicode-range: Basic Latin; fontFamily: ArialUnicodeEN; fontWeight: Bold; } @font-face { src: local(Arial Unicode MS); unicode-range: Japanese (All); fontFamily: ArialUnicodeJP; } You will

[flexcoders] call function in _root file from custom component

2006-09-20 Thread bghoward3
i am trying to target functions that i write in the main mxml file or in seperate files from a custom component, this situation happens to be a menubar. i am hoping somone can help me better understand how to target a function correctly. if it was flash i could write somthing like

[flexcoders] Re: Embedding Arial Unicode

2006-09-20 Thread dadrobson
After my initial post, I noticed something that makes me think that this isn't Adobe's issue: Arial Unicode MS is a 22 MB font! While all of the other fonts installed on my laptop are around 350k or less, this one is 22 megs. I suspect that's the problem. And we probably don't want to embed a 22

[flexcoders] HTTPService content type = text/xml

2006-09-20 Thread greenfishinwater
I am using HTTPService to send data to a Rails system. I have built a string with xml content such as: usernameAndrew/namelocationLondon/location/user and use the .send(mystring) to POST to rails. When I have the content type for the HTTPService as application/xml, I get errors in rails. But

Re: [flexcoders] Re: Embedding Arial Unicode

2006-09-20 Thread Daniel Wabyick
That's why you want to embed just a part of the Unicode range. ;-) dadrobson wrote: After my initial post, I noticed something that makes me think that this isn't Adobe's issue: Arial Unicode MS is a 22 MB font! While all of the other fonts installed on my laptop are around 350k or less,

[flexcoders] currencyformatter

2006-09-20 Thread s_hernandez01
Does anyone know how to set the currencyformatter with a dollar sign and two decimal places in a datagrid without it having no affect on totaling all the items in the column? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Flex2 - unconverted Bindable metadata in class

2006-09-20 Thread thunderstumpgesatwork
Hi all, I've recently been getting this warning with some of my value object classes. For the value objects, I typically declare the entire class as [Bindable], and then have getter/setter functions for properties. Is this something that could cause the problem? Am I required to dispatch the

RE: [flexcoders] call function in _root file from custom component

2006-09-20 Thread Tracy Spratt
Use: Aplication.application.showLinks; Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of bghoward3 Sent: Wednesday, September 20, 2006 10:45 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] call function in _root file from

[flexcoders] example of a combo box in a grid

2006-09-20 Thread Clint Tredway
I need an example of using a combo box in a datagrid.. I have looked around and cant find one.. -- diabetic? http://www.diabetesforums.com Albert Einstein - It's not that I'm so smart, it's just that I stay with problems longer. -- Flexcoders Mailing List FAQ:

[flexcoders] master detail as seperate custom components

2006-09-20 Thread bghoward3
i have a page with master/detail info in the form of a grid and a tabbed box, i would like to keep them as 2 distinct components since i will reuse the tabbed box with a differnt grid in other states. as my previous post mentioned i am in general struggling with targeting and cannot figure out

[flexcoders] Re: Example: Creating and using custom tooltips

2006-09-20 Thread n51red
Interesting. One option is to set the x and y attribes of the tooltips in the toolTipShown event handler of the relevant component. The event handler might look like: event.toolTip.x = xPos; event.toolTip.y = yPos; Could you let me know what you come up with? Thanks, Nick --- In

[flexcoders] Re: Converting Flash components to use in Flex

2006-09-20 Thread brownd_92
Hi Mike, thanks for the honest answer even though its not what I wanted to hear :-). Ill have to lock myself away for a while to get to grips with it Cheers David --- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, Not a chance. The validation algorithm

[flexcoders] Re: ComboBox Data Refresh Events

2006-09-20 Thread Jamie O
I temporarily have found the answer of using the valueCommit event instead of change event as the trigger to update the second comboBox as it fires on both programmatic and user driven events. --- In flexcoders@yahoogroups.com, Jamie O [EMAIL PROTECTED] wrote: I remember googling somewhere that

[flexcoders] Re: export to excel

2006-09-20 Thread Anatole Tartakovsky
Tom, The answers inline - Is there a way to create an Excel file on the client using flex ? After you create Excel. you would not be able to save it as Flex can't write to the file system (Apollo will change that) so your options on client are limited to SWC, Excel with embedded flash or other

[flexcoders] ArrayCollection returns object Object

2006-09-20 Thread jnewport
I was wondering if someone can help me (preference) or point me to a tutorial on xml and data structures that are not hardcoded. I am using an HttpService to retreive xml and I can get result, but when I use it to populate a List I get object Object. All livedocs and info tells you how to use

Re: [flexcoders] currencyformatter

2006-09-20 Thread Anatole Tartakovsky
use LabelFunction On 9/20/06, s_hernandez01 [EMAIL PROTECTED] wrote: Does anyone know how to set the currencyformatter with a dollar signand two decimal places in a datagrid without it having no affect ontotaling all the items in the column? __._,_.___ -- Flexcoders Mailing List

RE: [flexcoders] Why are is the Component loader no longer caching objects?

2006-09-20 Thread Dan Diodati
Does anyone know how to fix this? I noticed that someone else had the problem too. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Antoine MalpelSent: Thursday, August 24, 2006 7:20 AMTo: Mailing List FlexCodersSubject: [flexcoders] 1.5 : components can't be

[flexcoders] Re: Embedding Arial Unicode

2006-09-20 Thread dadrobson
Daniel: That did the trick! Since I'm compiling locally, I had to set the compiler argument in Flex Builder, like so: -language-range specialCharacters U+0020-U+007E,U+00B2-U+00B9,U+2070-U+2089 Then I was able to use the following in my CSS: @font-face { src: local(Arial Unicode MS);

[flexcoders] Re: ComboBox Data Refresh Events

2006-09-20 Thread laidezmon
I am not sure I understand specifically what you are trying to accomplish, but you could try the dataChange attribute on the combobox according to the guide, thats the part you tell the combo box to fire an event when the data has changed. I guess symantically its a little different than the

[flexcoders] Re: example of a combo box in a grid

2006-09-20 Thread laidezmon
Well rather than try to email the MXML file to you, I am just gonna copy and paste the code here. Its all in one file, but you can break it up if you like into your own components. I developed this to demo the ability to have individual records with combo box attributes that are interdependant.

[flexcoders] Re: Flex 2 RPC SSL

2006-09-20 Thread Doug Arthur
I was able to get this to work ith the following propery in my xml: add-no-cache-headersfalse/add-no-cache-headers Thanks! - Doug On 9/19/06, Doug Arthur [EMAIL PROTECTED] wrote: I cannot seem to get Flex 2 Remote Objects to work over SSL, I've got a wildcard cert setup with host headers in

Re: [flexcoders] example of a combo box in a grid

2006-09-20 Thread Impudent1
Clint Tredway wrote: I need an example of using a combo box in a datagrid.. I have looked around and cant find one.. mx:DataGrid id=fileDatagrid x=0 y=0 width=715 height=130 dataProvider={files_datagrid} change=putVideo() selectedIndex=0

Re: [flexcoders] Re: Architecting a large, modular Flex application

2006-09-20 Thread EECOLOR
Hello, the way we handle this is as follows: We have one library swc that holds our code base. We have an application file that contains all basic application code. This application is compiled with the option -link-report=linkreport.xml. All separate modules are compiled with the option

Re: [flexcoders] Re: Example: Creating and using custom tooltips

2006-09-20 Thread Tom Fitzpatrick
Lack-of-progress report. Your event handler suggestion works, if I use ToolTipManager to get the x and y of the currentTarget. The problem is that the tooltip's x and y seem to be calculated relative to the application, rather than relative to the target. Hmm. - Tom n51red wrote:

Re: [flexcoders] Is there a better way than invisible colums

2006-09-20 Thread EECOLOR
Hello, Im not sure if i understood you correctly. But you can build an array of DataGridColumns (a class) and feed that to the DataGrid. For each column you can specify which part of the data it should display. This will result in a dataprovider showing only the information you want it to

[flexcoders] Flex Data Services destination configuration documentation?!

2006-09-20 Thread thunderstumpgesatwork
I can't find a single place that documents the configuration options for a destination in Flex Data Management Services. We found several places that have examples of certain types of configurations, but no 'syntax reference' for what tags are allowed, what the tags mean, etc. Does this

[flexcoders] Flex layout mechanism

2006-09-20 Thread EECOLOR
Hello, i am having a small little problem. Im dynamically loading one application into another using SWFLoader. This all works very well, however, the layout mechanism doesnt work anymore. After some digging this is quitelogical because if you walk down the parent chain of the loaded SWF you

Re: [flexcoders] What is the most proper place to add event listeners to component's children?

2006-09-20 Thread EECOLOR
Hello, there are a few valid places, check the documentation on these events to see whats most suitable for your needs: - Event handler for creationComplete - Event handler for initialize - In some cases in the createChildren override after the super.createChildren call Greetz Erik

[flexcoders] Re: Using SpringBeanAdapter instead of FDS

2006-09-20 Thread laidezmon
I am developing an app that uses the remote object tied to a java/spring/hybernate app like you describe. This was a legacy app already written with a jsf front end, and for the most part, the flex stuff has gone over the business logic, pretty well. There have been a couple bumps in the road, but

[flexcoders] state problem

2006-09-20 Thread Rick Root
I'm trying to work with states and having some difficulty. Here is my state code in the MXML: mx:states mx:State name=details mx:SetStyle target={dgCorpMoveSummary} name=visible value=0/ mx:SetStyle target={btnBack} name=enabled value=1/ /mx:State

Re: [flexcoders] Re: AS3: List of dispatched events from any EventDispatcher in run-time

2006-09-20 Thread EECOLOR
Hello, i dont think the regulair event dispatcher even knows what type of events it broadcasts. It receives an event, looks at the type and checks if it has any listeners for that type. Internally there probably is an object wich contains all listeners and their types, however this object is

[flexcoders] Viewstack in the ModelLocator

2006-09-20 Thread passive_thoughts
I'm pretty new to this so I'm probably missing something. Basically what I'm trying to achieve is a flex app that has unlimited views. I have declared a viewstack in my ModelLocator and I addChild, removeChild and selectChild as needed. Right now I have an empty viewstack control in my

[flexcoders] Re: Drawing shapes and then animating them

2006-09-20 Thread petromotion
This problem has now been solved, getting there was tough, but we got there in the end. You can see our solution on http://www.flexdeveloper.eu/forums/YaBB.pl?num=1153993260 Cheers! -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

Re: [flexcoders] IDE

2006-09-20 Thread Simeon Bateman
The last official work I heard was that they were working hard to get a beta ready for the fall. We are almost there so hopefully we will get to play soon.On that note some screenshots were released into the wild last week showing us the progress. You can see them here

[flexcoders] Re: ArrayCollection returns object Object

2006-09-20 Thread Jamie O
I'll take my best attempt. 1) Create the XML variable you will need to map the HTTPService object data to and create a function that will handle the result call of your HTTPService call. mx:Script ![CDATA[ import mx.rpc.events.ResultEvent; [Bindable] private var xmldpAddress:XML;

Re: [flexcoders] Re: Architecting a large, modular Flex application

2006-09-20 Thread Anatole Tartakovsky
Derreck Your post concentrates around answers onHOW to use interfaces and abstract classes to make large applications. I believe there is another questionthat we sometimes forget to ask. WHY?The main reason for interfaces uses is to allow multiple implementations. Abstract classes are also

Re: [flexcoders] Outline view in FB2 does not work with classes from mx.* package?

2006-09-20 Thread Simeon Bateman
I have the ZornPlus Eclipse plugin from yellowbadger.com installed and it lets me have an outline for the mx.* classes.Just FYI. You can check it out here. http://yellowbadger.com/index.cfm?p=12simeonOn 9/18/06, Andriy Panas [EMAIL PROTECTED] wrote: Hello

Re: [flexcoders] state problem

2006-09-20 Thread Simeon Bateman
When you are in design mode and you switch between states does it work there?Just curious.simOn 9/20/06, Rick Root [EMAIL PROTECTED] wrote: I'm trying to work with states and having some difficulty. Here is my state code in the MXML: mx:states mx:State

[flexcoders] Actionscript Binding - bind a property through a function

2006-09-20 Thread thunderstumpgesatwork
Hi guys, I know in mxml you can do data binding like this: mx:Button label={formatLabel(someBindableTextField)} / where any time the bindable property someBindableTextField changes, the binding fires, and the label is replaced with the result of the function. This is even more powerful if the

[flexcoders] Re: state problem

2006-09-20 Thread thunderstumpgesatwork
Hi, 'visible' and 'enabled' are properties, not styles. Try changing the mx:SetStyle ... / to mx:SetProperty ... / Thunder --- In flexcoders@yahoogroups.com, Rick Root [EMAIL PROTECTED] wrote: I'm trying to work with states and having some difficulty. Here is my state code in the MXML:

[flexcoders] Tree and Drag and Drop

2006-09-20 Thread ldyhwke24
I have a small question on the Drag and Drop using the Tree component. private function dragEnterHandlerTree(event:DragEvent):void { var dropTarget:UIComponent = UIComponent(event.currentTarget); if (event.dragSource.hasFormat('treeItems')) { // Signal that this data can be dropped onto the

Re: [flexcoders] state problem

2006-09-20 Thread Douglas Knudsen
style and visible are properties, eh? Try SetProperty.DKOn 9/20/06, Rick Root [EMAIL PROTECTED] wrote:I'm trying to work with states and having some difficulty.Here is my state code in the MXML: mx:statesmx:State name=detailsmx:SetStyle target={dgCorpMoveSummary} name=visible

[flexcoders] Re: Architecting a large, modular Flex application

2006-09-20 Thread powellbullfrog
Question. In your library project will you also have abstract class of the events you will dispatch to cairngorm? Will each module have its own controller, or will they all share one in the main application. Thanks Jeff --- In flexcoders@yahoogroups.com, derrickgrigg [EMAIL PROTECTED]

[flexcoders] Re: state problem

2006-09-20 Thread passive_thoughts
mx:states mx:State name=details mx:SetProperty target={dgCorpMoveSummary} name=visible value=false/ mx:SetProperty target={btnBack} name=enabled value=false/ /mx:State /mx:states --- In flexcoders@yahoogroups.com, Rick Root [EMAIL PROTECTED] wrote: I'm trying to work with states and having

[flexcoders] Re: Actionscript Binding - bind a property through a function

2006-09-20 Thread gsamsa
This should work pretty much just the way your example works, so maybe one of your parameters isn't bindable?The following example works, and also illustrates another less elegant way of accomplishing the same thing?xml version="1.0" encoding="utf-8"?mx:Application

Re: [flexcoders] Flex 2.0 Hosting ( Cheap / Inexpensive )

2006-09-20 Thread Douglas McCarroll
I've checked with CFDynamics. They say Unfortunately, at this time, an ETA is unavailable. It seems to me that it would be in Adobe's interests to do whatever it can to facilitate making FDS hosting available. A friend of mine thinks that he may be able to help me out, but I'm sure that there

[flexcoders] Re: Architecting a large, modular Flex application

2006-09-20 Thread derrickgrigg
Thanks for the info. Your solution of having all the base code in an external library is where I started out, but I wasn't entirely comfortable having all the core code in an RSL (I don't exactly remember why that bothered me so much now). It certainly makes maintenance and development alot

Re: [flexcoders] Re: state problem

2006-09-20 Thread Rick Root
thunderstumpgesatwork wrote: 'visible' and 'enabled' are properties, not styles. Try changing the That's what I get for doing a copy and paste! Thanks all! Rick -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] IDE

2006-09-20 Thread Nick Collins
Anyone else think that MAX would be a really good time for such an announcement? Beuller? Beuller?On 9/20/06, Simeon Bateman [EMAIL PROTECTED] wrote: The last official work I heard was that they were working hard to get a beta ready for the fall. We are almost

[flexcoders] Re: Architecting a large, modular Flex application

2006-09-20 Thread derrickgrigg
Yes, the library will have the events to be dispatched to cairngorm, due to the fact that the modules can interoperate with other parts of the application, so each module needs access to other module's events. I'm intending to have the modules use the main application controller in order to

[flexcoders] Flex Application layout mechanism

2006-09-20 Thread EECOLOR
Hello, This is the second message with the same problem. Somehow the other one did not appear on the list (or wasnt processed yet, sorry for any double messages). I have edited the message a bit to update what i have found so far. Iam having a small little problem. Im dynamically loading

[flexcoders] How to debug application loaded with SWFLoader

2006-09-20 Thread Darrin
I load an application let say appB from appA, appA retrieves data and makes it available to appB. My problem is when I set a breakpoint in appB and run debug on appA. The breakpoint never breaks. Im I missing something here. Thanks -- Flexcoders Mailing List FAQ:

  1   2   >