RE: [flexcoders] photo gallery example

2006-09-21 Thread Matt Chotin
Check to see if there are any funky characters in the XML file that you load? It may be that its having problems parsing the XML file depending on how the server sent it? Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of b0b0bb0b Sent:

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

2006-09-21 Thread Matt Chotin
? On 9/20/06, Matt Chotin [EMAIL PROTECTED]com 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

RE: [flexcoders] Flex swf caching

2006-09-21 Thread Matt Chotin
For one thing I would make sure that your web server is sending the right cache headers on your previous version. But your suggestion of adding a random string (like the build version) on the end is also better as a guaranteed mechanism. Youll notice that a lot of popular webapps do

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] 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 Matt Chotin
green with this; can you point me to some resources that will get me going on this?? -Ken From: [EMAIL PROTECTED]ups.com [mailto:[EMAIL PROTECTED]ups.com] On Behalf Of Matt Chotin Sent: Tuesday, September 19, 2006 11:40 PM To: [EMAIL PROTECTED]ups.com Subject: RE: [flexcoders] Custom

RE: [flexcoders] script running structure

2006-09-19 Thread Matt Chotin
Hi, These are full classes so there isnt code that executes outside of the class initialization. You should use the different events like creationComplete on the Application to kick off your code. Check the explorer and other samples to see examples. Matt From:

RE: [flexcoders] flash player 9 security?

2006-09-19 Thread Matt Chotin
Yep, -use-network is still a valid flag and depending on where your data is located youll need to set it to true or false. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of aaron smith Sent: Monday, September 18, 2006 2:09 PM To:

RE: [flexcoders] Scrollbar thickness

2006-09-19 Thread Matt Chotin
Yep, its a constant and weve filed a bug to get it exposed better. In the meantime you can see some of the work we did in another app to get the scrollbar thinner, youll need to adjust. (three files attached) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] Re: idiotic flex fires 2 event handlers for buttons of a substate !!!

2006-09-18 Thread Matt Chotin
Yes, someone pointed this confusion out to us a few weeks ago and Ive filed a usability bug. SetEventHandler would be better named AddEventHandler. When you call Set you do not overwrite a handler that was set in a base state. What you can do is set the event handler function and then

RE: [flexcoders] Re: Deploying a Flex Application making rpc.remoting calls

2006-09-18 Thread Matt Chotin
that I am following some wrong process for compilation? But I am unable to decipher the problem. Please advice and help. Thanks and Regards, Paromita --- In [EMAIL PROTECTED]ups.com, Matt Chotin [EMAIL PROTECTED] wrote: Nope, you only need to deploy the SWF and HTML wrappers. Sounds like you're

RE: [flexcoders] Re: Posting data with HTTPService....Please help!

2006-09-18 Thread Matt Chotin
Are you sending parameters? If you dont send any parameters the POST will be ignored and will be sent as a GET. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of btkracker Sent: Friday, September 15, 2006 8:53 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Adobe SystemManager example

2006-09-18 Thread Matt Chotin
You may have to use [varname] syntax instead of .varname because the compiler is going to look for classes when this application doesnt actually have them (because its loaded later via SWFLoader). Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] getDefinitionByName

2006-09-18 Thread Matt Chotin
You need to make sure that the class gets linked into your SWF. You dont need to instantiate it but you need to declare a variable with the type of the class that you want. You can also use the include-classes directive to the compiler to force the class to be available. Check the docs

RE: [flexcoders] modularizing code

2006-09-18 Thread Matt Chotin
Have you looked into the Flex library project type? Check that out, and if youre not using Flex Builder check out the docs for compc. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hank williams Sent: Friday, September 15, 2006 11:16 AM To:

RE: [flexcoders] Re: Posting patched versions of framework code to this list?

2006-09-17 Thread Matt Chotin
Hi, The section in the license that talks about this is 2.1.1, you can read it in its ugly detail here: http://www.adobe.com/products/eulas/pdfs/AdobeFlexBuilder2_0-FlexCharting2_0.pdf. The bottom line is: yes you can modify, yes you can publish your modifications, and yes you

RE: [flexcoders] calendar component

2006-09-14 Thread Matt Chotin
The weblogs server ran out of disk space yesterday. Many of us on there have to rebuild them (but data wasnt lost). So might be tomorrow before his blog is back up. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of hank williams Sent:

RE: [flexcoders] Re: Fw: WatcherSetupUtil issue

2006-09-13 Thread Matt Chotin
after the component class is // done compiling. Can you ask Paul why he didn't use reflections to reference WatcherSetupUtil??? It looks much more reliable then generated code approach. - Max --- In [EMAIL PROTECTED]ups.com, Matt Chotin [EMAIL PROTECTED] wrote: From Paul (who wrote the binding

RE: [flexcoders] Request for flex modification?

2006-09-13 Thread Matt Chotin
Sure, file away at http://www.adobe.com/go/wish. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Samuel Colak Sent: Wednesday, September 13, 2006 2:59 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Request for flex

RE: [flexcoders] Re: Need help using XML files without embedding them in SWF

2006-09-12 Thread Matt Chotin
Er, use HTTPService rather than URLLoader, it will take care of more for you. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of e_baggg Sent: Tuesday, September 12, 2006 7:35 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re:

RE: [flexcoders] Re: Fw: WatcherSetupUtil issue

2006-09-12 Thread Matt Chotin
that has to be executed before first load of the component (in static constructor emulation). --- In [EMAIL PROTECTED]ups.com, Matt Chotin [EMAIL PROTECTED] wrote: It'd be for any MXML class that has binding in it. So there must be errors with how binding is initializing based on how your system

RE: [flexcoders] Public getter, private setter?

2006-09-11 Thread Matt Chotin
! So in my post a couple days ago... This is just a guess but, I would be willing to bet this is a Player bug. I was right. hehe Peace, Mike On 9/8/06, Matt Chotin [EMAIL PROTECTED]com wrote: So actually we investigated further and it turns out this is a bug. The engineer

RE: [flexcoders] Error #2032 HTTPS IE only

2006-09-10 Thread Matt Chotin
It might be a problem with a self-signed certificate. You may need to update your computer to accept self-signed without prompting (I dont remember how to do that at the moment). If this isnt set no prompt will appear but no connection to the HTTPS destination will work either. Matt

RE: [flexcoders] Deploying a Flex Application making rpc.remoting calls

2006-09-10 Thread Matt Chotin
Nope, you only need to deploy the SWF and HTML wrappers. Sounds like youre compiling using Flex Builder which may mean that its not pointing at the service-config.xml which I saw mentioned in some other posts recently. Make sure you your services-config compiler argument is set up (or

RE: [flexcoders] Can someone help me understand this price info and what I get for it?

2006-09-10 Thread Matt Chotin
Per application means a conceptual application. Each one of our samples is an application. While the component explorer is made up of over 100 small application.mxml files it is still conceptually 1 application because its delivered through that one URL. So for departmental it

RE: [flexcoders] Public getter, private setter?

2006-09-08 Thread Matt Chotin
Message - From: Matt Chotin To: [EMAIL PROTECTED]ups.com Sent: Friday, September 08, 2006 4:48 AM Subject: RE: [flexcoders] Public getter, private setter? Its intentional right now that a getter/setter pair must have a matching visibility modifier. You cant

RE: [flexcoders] Macromedia Flex 2.0 Charts Explorer

2006-09-08 Thread Matt Chotin
That was meant for an old beta. We should take it down. The proper samples are all linked from the dev center: http://www.adobe.com/devnet/flex/?tab:samples=1 From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Pramod Sent: Friday, September 08,

RE: [flexcoders] Re: Fw: WatcherSetupUtil issue

2006-09-07 Thread Matt Chotin
Itd be for any MXML class that has binding in it. So there must be errors with how binding is initializing based on how your system is set up. Are you using the techniques for modules that Roger mentioned in his blog postings? Matt From: flexcoders@yahoogroups.com

RE: [flexcoders] Public getter, private setter?

2006-09-07 Thread Matt Chotin
Its intentional right now that a getter/setter pair must have a matching visibility modifier. You cant change whether a variable is visible to the compiler based on whether its being read or being written. While we understand the use-case (and debated it internally ourselves) this is

RE: [flexcoders] Why is import mandatory?

2006-09-07 Thread Matt Chotin
You can learn more about the actual language construct in the directives section of the ES4 spec: http://developer.mozilla.org/es4/spec/chapter_16_directives.html The language designers decided that introducing a class into the system requires explicitly bringing it in (we actually

RE: [flexcoders] mxmlc -increment not working.

2006-09-06 Thread Matt Chotin
I sent this on to the engineer and he thinks it should work. If you can send us more details as a bug filed via the wish page (http://www.adobe.com/go/wish) we can take a look. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Lance

RE: [flexcoders] ADOBE: Version of Distributable Player is Incorrect

2006-09-04 Thread Matt Chotin
I believe the version that is available is now correct. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of David Mendels Sent: Friday, September 01, 2006 1:57 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] ADOBE: Version of

RE: [flexcoders] Quick Validator Question

2006-09-04 Thread Matt Chotin
You can re-use validators but youll need to call validate() on your own instead of relying on the automatic behavior. You can only have the validator work automatically for one thing at a time. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Re: Validator._init method

2006-09-04 Thread Matt Chotin
:38 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Validator._init method Yeah this is Flex 1.5 only. So is there any other way to validate the dynamically created controls? --- In [EMAIL PROTECTED]ups.com, Matt Chotin [EMAIL PROTECTED] wrote: This is Flex 1.5? Validators

RE: [flexcoders] Error when trying to run Notes Sample application

2006-09-04 Thread Matt Chotin
Check to make sure the config file has the right settings in it for your endpoints? This should work out of the box. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ghose, Sanjucta Sent: Monday, September 04, 2006 2:53 AM To:

RE: [flexcoders] Problem: Flex no connection???

2006-08-31 Thread Matt Chotin
!!! On 8/30/06, Matt Chotin [EMAIL PROTECTED]com wrote: Did you use a named remote object? Is it stateful or stateless? Maybe you need to put some debugging to make sure that your call to close the connection is actually happening? Matt From: [EMAIL PROTECTED]ups.com [mailto

RE: [flexcoders] Flex client cache and new versions

2006-08-31 Thread Matt Chotin
The browser will cache your app according to the HTTP headers your web server sends. So its just like any other HTML page or image file. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of shrefler Sent: Wednesday, August 30, 2006 5:27

RE: [flexcoders] Problems calling a RemoteObject within a loop

2006-08-31 Thread Matt Chotin
Is your fault handler being called? I think the point from Fernando was for you to add another method in your CFC that could take an array of the objects that youre updating. Then in the CFC you would loop through that array so that more work is done on the server. This would

RE: [flexcoders] Validator._init method

2006-08-31 Thread Matt Chotin
This is Flex 1.5? Validators really arent meant to be created in ActionScript in Flex 1.5. Maybe you can define your component in MXML so that it can have the Validator tag? Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of bharg.flex

RE: [flexcoders] Incremental compiling -- should I have long build times?

2006-08-31 Thread Matt Chotin
Do you see the cache files being created? Youre using the command line? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of jrjazzman23 Sent: Thursday, August 31, 2006 7:16 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Incremental

RE: [flexcoders] web service result type=Object,E4X,XML and the conversion function

2006-08-31 Thread Matt Chotin
We have the SimpleXMLEncoder and SimpleXMLDecoder classes. They only use the old XML format, they dont use e4x. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tom Ortega Sent: Thursday, August 31, 2006 11:46 AM To:

RE: [flexcoders] Re: i can not find flex 1.5 SDK

2006-08-30 Thread Matt Chotin
You can download the developer edition of Flex 1.5 from here: http://www.stage.adobe.com/support/flex/downloads_updaters.html#flex15 Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of greg dunf Sent: Saturday, August 26, 2006 5:43 AM

RE: [flexcoders] Can Flex Data Services Compile on the Fly?

2006-08-30 Thread Matt Chotin
Nope, no enforced limit to the number of clients in FDS Express. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dorkie dork from dorktown Sent: Tuesday, August 29, 2006 9:32 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Can Flex

RE: [flexcoders] Re: i can not find flex 1.5 SDK

2006-08-30 Thread Matt Chotin
: Re: [flexcoders] Re: i can not find flex 1.5 SDK On Tuesday 29 August 2006 06:49, Matt Chotin wrote: You can download the developer edition of Flex 1.5 from here: http://www.stage.adobe.com/support/flex/downloads_updaters.html#flex15 If you feel you should have access, please contact

RE: [flexcoders] Flex 2 patch timeline

2006-08-30 Thread Matt Chotin
Are there specific bugs youre looking to be addressed? Based on direct feedback as well as observation from the various public forums weve been pretty pleased with the quality of the release so weve held off on rushing out an updater while we work on things like the Mac release of Flex

RE: [Junk E-Mail - LOW] RE: [flexcoders] Flex 2 patch timeline

2006-08-30 Thread Matt Chotin
/charting. Thanks, Jack From: [EMAIL PROTECTED]ups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin Sent: Wednesday, August 30, 2006 10:21 AM To: [EMAIL PROTECTED]ups.com Subject: RE: [flexcoders] Flex 2 patch timeline Are there specific bugs youre looking

RE: [flexcoders] java.lang.OutOfMemoryError

2006-08-29 Thread Matt Chotin
Have you upped the memory allocated to the Tomcat process? You might want to give it 256m or 512m and see how that goes. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of dbarenboym Sent: Monday, August 28, 2006 11:29 AM To:

RE: [flexcoders] Re: how to set button colors - flex 1.5

2006-08-29 Thread Matt Chotin
. how do i do this? --- In [EMAIL PROTECTED]ups.com, Matt Chotin [EMAIL PROTECTED] wrote: Maybe try the selectedFillColors style? Otherwise you may need to re-skin. Matt From: [EMAIL PROTECTED]ups.com [mailto:[EMAIL PROTECTED]ups.com] On Behalf

RE: [flexcoders] What is the best invalidation technique for non-UI classes?

2006-08-29 Thread Matt Chotin
, 2006 7:22 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] What is the best invalidation technique for non-UI classes? Any source example? What delay do you use? On 8/24/06, Matt Chotin [EMAIL PROTECTED]com wrote: We use a Timer in our non-visual code for this. Matt

RE: [flexcoders] Re: Asynchronous TestCase.setUp in FlexUnit (and another use case)

2006-08-29 Thread Matt Chotin
]ups.com, Matt Chotin [EMAIL PROTECTED] wrote: Doing a while loop won't work, if it did we wouldn't have all the complications of this system :-) Your idea of #1 is exactly right, setup now needs to become more like the async calls. Sorry, I haven't looked at this code in a year, you'll

RE: [flexcoders] Can I create a stack of ICollectionViews?

2006-08-29 Thread Matt Chotin
ListCollectionView can essentially handle this case. Since it is both an IList and an ICV you can do LCV of LCV and it will work. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Aldo Bucchi Sent: Sunday, August 27, 2006 5:08 PM To:

RE: [flexcoders] Problem: Flex no connection???

2006-08-29 Thread Matt Chotin
Did you use a named remote object? Is it stateful or stateless? Maybe you need to put some debugging to make sure that your call to close the connection is actually happening? Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rafael M.

RE: [flexcoders] Re: Downloadable Flexcoders List Archive ??

2006-08-23 Thread Matt Chotin
Flexcoders is archives at the mail-archive which does say that you can download the archive to your own harddrive: http://www.mail-archive.com/faq.html#download. I dont follow what website mirroring tools are out there but if youre willing to play by their rules its one option. Matt

RE: [flexcoders] event error

2006-08-23 Thread Matt Chotin
There should be some samples that use these classes to help you out (or check the ASDoc).  ResultEvent and FaultEvent are the common ones though. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of moni_singhal Sent: Tuesday, August 22,

RE: [flexcoders] RTE in List when filtering ArrayCollection

2006-08-23 Thread Matt Chotin
but I think this should be handle by the listclass. João Fernandes On 8/22/06, Matt Chotin [EMAIL PROTECTED]com wrote: Is the filter removing items? So now your collection would appear to have less items than there were earlier? That'd be a bug in the list class, it should be able

RE: [flexcoders] service class PendingCall

2006-08-23 Thread Matt Chotin
It will be an AsyncToken. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of moni_singhal Sent: Tuesday, August 22, 2006 9:47 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] service class PendingCall Hi All, Actually

RE: [flexcoders] FlexBuilder 2.0 SDK plugin with IBM RAD 6.0?

2006-08-23 Thread Matt Chotin
Yeah, RAD 6.0 is based on Eclipse 3.0.2, I believe they are updating in their next release.  We will be working with them to try to make things compatible.  So for now you do need two versions of Eclipse.  Sorry! Matt From: flexcoders@yahoogroups.com

RE: [flexcoders] What is the best invalidation technique for non-UI classes?

2006-08-23 Thread Matt Chotin
We use a Timer in our non-visual code for this. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sergey Kovalyov Sent: Wednesday, August 23, 2006 8:40 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] What is the best

RE: [flexcoders] AS HTTPService ignoring method propety

2006-08-23 Thread Matt Chotin
Ah, I believe HTTPService does a for..in loop over the parameters, and if you use a strongly typed class the for..in wont return anything. Then when you try to send no parameters to a POST request it will be turned into a GET by the Player. We should make sure thats mentioned in the

RE: [flexcoders] Don't bindings work both ways??

2006-08-23 Thread Matt Chotin
No, binding is only one-way, youll need to set up the 2-way yourself. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Mike Anderson Sent: Wednesday, August 23, 2006 9:56 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Don't

RE: [flexcoders] AWT-EventQueue-0 java.lang.NullPointerException

2006-08-23 Thread Matt Chotin
I sometimes see that when I shut down the tomcat server.  Its usually nothing to worry about. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Valy Sivec Sent: Wednesday, August 23, 2006 6:21 AM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Re: how to set button colors - flex 1.5

2006-08-22 Thread Matt Chotin
Maybe try the selectedFillColors style? Otherwise you may need to re-skin. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shemeshkale Sent: Tuesday, August 22, 2006 1:47 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: how to set

RE: [flexcoders] 1119 - ERROR - Please Help

2006-08-22 Thread Matt Chotin
This looks like bad code for Flex 2, it appears to be written for Flex 1.5 but the error is from Flex 2. Check a more recent copy of the Flex Explorer for an example. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rashmi_nraj Sent: Tuesday,

RE: [flexcoders] RE: Asynchronous TestCase.setUp in FlexUnit (and another use case)

2006-08-22 Thread Matt Chotin
to -- I'm just trying to avoid having to understand all the code from the ground up to come up with a solution. Thanks for the help. --Kaleb -Original Message- From: Matt Chotin [EMAIL PROTECTED] Sent: Mon, 06 Mar 2006 22:40:46 -0800 Subject: [flexcoders] Asynchronous TestCase.setUp

RE: [flexcoders] Instantiating object in MXML

2006-08-21 Thread Matt Chotin
Hmm, I thought we had removed that rule, but its generally just a parsing restriction. A faceless component isnt contained by visual containers so it shouldnt be nested inside of them in MXML. Beyond coding style this shouldnt really affect you, right? Matt From:

RE: [flexcoders] FDS, VOs, and ignoring client-side properties

2006-08-21 Thread Matt Chotin
. having the DataStore ignore that property). Even if I could make the bindings with with my custom binding event, I'm not sure it would accomplish what I want. Jim 2006/8/17, Matt Chotin [EMAIL PROTECTED]com: If you do [Bindable(event=unmanaged)] it is your responsibility to dispatch

RE: [flexcoders] Event to detect data was loaded in a tree

2006-08-21 Thread Matt Chotin
listener for this CollectionEvent.CHANGE? to the tree itself? Or to footree.dataProvider? Or to myDP some how? DK On 8/17/06, Matt Chotin [EMAIL PROTECTED]com wrote: There should be an appropriate CollectionEvent.CHANGE event coming from the dataProvider when data becomes available. Matt

RE: [flexcoders] RTE in List when filtering ArrayCollection

2006-08-21 Thread Matt Chotin
Is the filter removing items?  So now your collection would appear to have less items than there were earlier?  Thatd be a bug in the list class, it should be able to handle the reduction.  Maybe you can detach the dataProvider, filter it, and then re-assign it? Matt

RE: [flexcoders] addEventListener quirk?

2006-08-21 Thread Matt Chotin
Did you remove the original event handler so that you only have one listener at a time? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of coldfusionpaul Sent: Monday, August 21, 2006 12:26 AM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Migration Action Script 2.0 and ActionScript

2006-08-21 Thread Matt Chotin
I dont think we have the row classes anymore.  Youre going to want to take a look at the actual ListBase implementation classes with the use of ItemRenderers to see what you might want to change. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On

RE: [flexcoders] FDS, VOs, and ignoring client-side properties

2006-08-17 Thread Matt Chotin
); } public function removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void { _eventDispatcher.removeEventListener(type, listener, useCapture); } public function willTrigger(type:String):Boolean { return _eventDispatcher.willTrigger(type); } } } 2006/8/16, Matt Chotin

RE: [flexcoders] Event to detect data was loaded in a tree

2006-08-17 Thread Matt Chotin
There should be an appropriate CollectionEvent.CHANGE event coming from the dataProvider when data becomes available. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Michael Schmalle Sent: Thursday, August 17, 2006 4:19 PM To:

RE: [flexcoders] Re: Deserializing WebService call... Flex/Cairngorm

2006-08-16 Thread Matt Chotin
Not a config file, via metadata in your AS classes. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of ben.clinkinbeard Sent: Wednesday, August 16, 2006 6:11 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Deserializing

RE: [flexcoders] [Flex Data Services] Managed associations / DB abstraction ?

2006-08-16 Thread Matt Chotin
Hi Thomas, What FDS is going to use those relationships for is ensuring that it keeps track of items on the client for consistency and attempts to avoid having the same item twice (everything is kept in sync).  In this case you would define the relationship in the metadata as

RE: [flexcoders] FDS, VOs, and ignoring client-side properties

2006-08-16 Thread Matt Chotin
Hmm, you might need to implement mx.data.IManaged yourself instead of relying on IManaged. IManaged extends IUID (you must have a string property uid) and IEventDispatcher (must be an event dispatcher). You will then need to implement any managed property as follows (I havent tested

RE: [flexcoders] TabNavigator vs. TabBar

2006-08-16 Thread Matt Chotin
TabNavigator is a convenience around TabBar and a ViewStack, so its really just whatever tickles your fancy. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Mike Anderson Sent: Wednesday, August 16, 2006 9:34 PM To:

RE: [flexcoders] Re: Posting ByteArray with URLRequest...

2006-08-16 Thread Matt Chotin
form post) that's fine - just want to make sure I wasn't missing the obvious. B. --- In [EMAIL PROTECTED]ups.com, Matt Chotin [EMAIL PROTECTED] wrote: Try not setting the contentType yourself and see what gets sent? It probably will just be raw binary data that you have to interpret on your own

RE: [flexcoders] trace.... redirection possible?

2006-08-15 Thread Matt Chotin
In Flex 2 we have the mx.logging package which may be what youre looking for. http://livedocs.macromedia.com/flex/2/langref/mx/logging/Log.html Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Deitte Sent: Monday, August 14, 2006 11:21

RE: [flexcoders] job opportunity in NYC

2006-08-15 Thread Matt Chotin
At last check the group voted to keep allowing job postings that are Flex-related in.  It’s the ones that aren’t Flex-related that we boot very quickly. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of

RE: [flexcoders] Flex Data Services

2006-08-15 Thread Matt Chotin
If the firewall is simply a passthrough to the web services then you need to adjust the WSDL to use the external IP address rather than the internal IP address. Thats what would cause the problem outside the firewall. You could also look into setting the endpointURI on the WebService

RE: [flexcoders] FDS 2.0

2006-08-15 Thread Matt Chotin
FDS Express does have the remote object support. I thought we were putting more info into the FAQ on the licenses but I cant find it, Ill ask around. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mika Kiljunen Sent: Monday, August 14, 2006

RE: [flexcoders] Re: flex2 final - datagrid sortableColumns=false and itemDoubleClick event issue

2006-08-15 Thread Matt Chotin
Whats the information contained in the event when you get the itemDoubleClicked? I can forward this in as a potential bug, but if you have that info itd be helpful. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bhaq1972 Sent: Tuesday,

RE: [flexcoders] ArrayCollection object to Model for Remoting Help

2006-08-15 Thread Matt Chotin
When you add the item into the transaction array its a new object each time right? So each element in the array essentially should be the copy of the model at that point? You should then just call saveItem(item) when you iterate through the transactionArray I think. Matt

RE: [flexcoders] CreationComplete?

2006-08-15 Thread Matt Chotin
Every component has a creationComplete event, you could still use that. If its a container thats in a view stack maybe you want to use the show event instead? Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of malik_robinson Sent: Tuesday, August

RE: [flexcoders] fldbg9.ocx

2006-08-15 Thread Matt Chotin
The Player should never cause a crash like that. Can you we run your SWF without needing to connect to any data on your end? Or can you point us at a url so we can try it out ourselves? As much info as possible would be helpful. Matt From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Operation.arguments is populated but nulls are sent

2006-08-15 Thread Matt Chotin
else I can try clearing or resetting? This has to be 'a bug', no? Thanks, Ben --- In [EMAIL PROTECTED]ups.com, Matt Chotin [EMAIL PROTECTED] wrote: You should be calling op.send(), if you call GetDataByGrouping() you're ignoring the arguments. Matt

RE: [flexcoders] Re: Bug in mac version of uploading code

2006-08-15 Thread Matt Chotin
I see a bug in our bugbase currently under review for this issue. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hank williams Sent: Tuesday, August 15, 2006 6:44 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Bug in mac version

RE: [flexcoders] Flex/Cairngorm Syntax

2006-08-15 Thread Matt Chotin
You can learn more about the * datatype here: http://livedocs.macromedia.com/flex/2/docs/1826.html Default parameters are described here: http://livedocs.macromedia.com/flex/2/docs/1834.html HTH, Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] Enterprise Development

2006-08-15 Thread Matt Chotin
Yes, Flex and Flex Data Services would be ideal for this. One of the greatest values of FDS is its ability to handle data in realtime and push updates to interested clients so that they are synchronized with the backend. The only thing is that FDS is meant to run in a Java server and

RE: [flexcoders] Dispatch Event?

2006-08-15 Thread Matt Chotin
We dont ship the source for the web service code. In looking at it the line number you give shouldnt have any errors, so I think that maybe its complaining about you passing a null into the web service? Im not sure about this though, I guess just make sure every argument to the method

RE: [flexcoders] Posting ByteArray with URLRequest...

2006-08-15 Thread Matt Chotin
Try not setting the contentType yourself and see what gets sent? It probably will just be raw binary data that you have to interpret on your own? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bondbeer Sent: Tuesday, August 15, 2006 4:11 PM To:

RE: [flexcoders] Determine if a Class implements an Interface

2006-08-15 Thread Matt Chotin
describeType should be able to get you that info I think. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thunderstumpgesatwork Sent: Tuesday, August 15, 2006 5:42 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Determine if a Class implements

RE: [flexcoders] Re: Operation.arguments is populated but nulls are sent

2006-08-15 Thread Matt Chotin
flashlog.txt be? I will try clearing the bin folder tomorrow and see what happens. Thanks, Ben --- In [EMAIL PROTECTED]ups.com, Matt Chotin [EMAIL PROTECTED] wrote: Maybe it's some odd timing problem? Any profiler settings from Flex 1.5 turned on? Have you looked to see if you have a flashlog.txt

<    3   4   5   6   7   8   9   10   11   12   >