RE: [flexcoders] Re: Array of VOs class loading issue SOLVED

2005-08-03 Thread Matt Chotin
Just in case the 0 vs. O is a typo in the email, a static function requires dependency variables as well. var o:myListVO = new myListVO(); Always type your variables, and when it seems like a class isnt being created like this example make sure you have an instance variable

RE: [flexcoders] Re: hideEffect and deletePopUp

2005-08-03 Thread Matt Chotin
? --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: Use the effectEnd event as a trigger for calling deletePopUp Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of zipo13 Sent: Tuesday

RE: [flexcoders] Dynamic controls

2005-08-03 Thread Matt Chotin
Title: Dynamic controls Im not sure what your question is. This kind of data looks like itd work well inside a DataGrid. So you can just create the grid and set this as your dataProvider, no? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of

RE: [flexcoders] accessing returned ValueObject properties in mxml file

2005-08-03 Thread Matt Chotin
Just pull off the properties. If you didnt do a registerClass youll get a regular object back that should have the properties for anything where you had a getter in your Java class. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of

RE: [flexcoders] Loading MXML via JSP on WebLogic

2005-08-03 Thread Matt Chotin
Is the flex app itself slow or does it just seem like its taking forever to compile? Whats the CPU like on the WebLogic machine? Maybe the JSP is somehow re-generating each time and not caching the MXML? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On

RE: [flexcoders] JSP code under .mxml page

2005-08-03 Thread Matt Chotin
Nope, MXML is not interpreted by a JSP engine. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of endofadam228 Sent: Wednesday, August 03, 2005 1:37 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] JSP code under .mxml page Hi

RE: [flexcoders] Reverse-binding repeater items

2005-08-03 Thread Matt Chotin
Yeah, Binding tags dont work inside repeaters. Youll need to use AS to do this one, sorry. Were looking into better 2-way binding support in a future version of Flex. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sean McKibben Sent:

RE: [flexcoders] Problem With TileList...

2005-08-03 Thread Matt Chotin
Well the 12th row is the first one that comes from offscreen right? So the TileList is re-using the cells from the 1st row and redrawing the data for the 12th row. Maybe your setvalue method isnt updating everything that it should in the cell renderer? If you shorten the TileList to only

RE: [flexcoders] Re: selectedNode

2005-08-04 Thread Matt Chotin
Check out the TreeDataProvider API. Should provide all the methods you need. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Nikmd23 Sent: Thursday, August 04, 2005 11:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: selectedNode

RE: [flexcoders] Loading MXML via JSP on WebLogic

2005-08-05 Thread Matt Chotin
! Dimitrios Jimmy Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin Sent: Thursday, August 04, 2005 12:09 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Loading MXML via JSP on WebLogic

RE: [flexcoders] HTTPService result in wrong charset

2005-08-08 Thread Matt Chotin
You can try setting System.useCodepage to true temporarily but I cant remember if that works and you probably will need to write your proxy. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Christoph Guse Sent: Monday, August 08, 2005

RE: [flexcoders] Re: Flash Player 8 Beta - found problem??!!

2005-08-11 Thread Matt Chotin
Announced, not released J You can still file bugs on the feedback forms. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Craig Newroth Sent: Thursday, August 11, 2005 10:39 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Flash

RE: [flexcoders] Flex Newbies Mail List

2005-08-14 Thread Matt Chotin
Title: RE: [flexcoders] Flex Newbies Mail List I answered a little less than 98% of all inquiries when flexcoders started :-) We seem to be doing pretty well. I haven't been able to answer questions all week but most folks seem to be surviving. With that said, if things like the FAQ aren't

RE: [flexcoders] Trouble with Delegate Pattern

2005-08-18 Thread Matt Chotin
You probably solved this by now, but This isnt really a problem with the delegate pattern, its more that access to the RemoteObject itself isnt working. My guess is that your MyDelegate is getting created before the MyServices component, therefore it doesnt have access to everything.

RE: [flexcoders] TileList background transparent

2005-08-18 Thread Matt Chotin
Sorry for the late response, TileList doesnt support a transparent background. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of maroun_paris Sent: Monday, August 08, 2005 9:46 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] Filtering Dataprovider with Large Datasets

2005-08-18 Thread Matt Chotin
Some of the stuff in Flex 2 may assist in this a little, but I think for now youre going down the right path. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Allen Manning Sent: Wednesday, August 10, 2005 3:35 AM To:

RE: [flexcoders] How to handle a returned Java Collection in Flex - RemoteObject call

2005-08-18 Thread Matt Chotin
is the getter name for this attribute --getDesc- in the Java VO. However, it is returning the name of the attribute itself but all lower case. The original name in Java is 'sDesc', which I originally tried as well. Any comments on this? Matt Chotin To: flexcoders@yahoogroups.com [EMAIL PROTECTED] cc

RE: [flexcoders] how to add items to the dragsource?

2005-08-18 Thread Matt Chotin
Sorry for the late response, I believe that when you get the dataForFormat(items) you receive a copy of the items *each time.* So the next time somebody asks for dataForFormat(items) theyre getting a new copy, thus not seeing your changes. The DragProxy itself I dont think is going to

RE: [flexcoders] Text content larger than 16384 bytes may not be included at compile-time (740684

2005-08-18 Thread Matt Chotin
Basically we dont allow super-long strings (which in your case is a big string of XML to be parsed) to get compiled into the SWF because its almost guaranteed to cause a 32K branching limit issue. Hopefully this limit goes away in Flex 2. Matt From:

RE: [flexcoders] problem with cell renderer showing data in datagrid twice

2005-08-18 Thread Matt Chotin
Craig, did you solve this or do you still need help? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Craig Newroth Sent: Thursday, August 11, 2005 11:35 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] problem with cell renderer

RE: [flexcoders] mxmlc: Error with configuration file... Invalid content starting with...

2005-08-18 Thread Matt Chotin
Title: mxmlc: Error with configuration file... Invalid content starting with... You figure this out? Whats the command-line that you used? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tracy Spratt Sent: Thursday, August 11, 2005 6:02 PM To:

RE: [flexcoders] Cannot assign selected value from a radiobutton that was created dynamically.

2005-08-18 Thread Matt Chotin
addEventListener(click, mx.utils.Delegate.create(this, clickRadioButton); From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, August 16, 2005 12:23 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Cannot

RE: [flexcoders] Validation TextInput

2005-08-18 Thread Matt Chotin
The problem is that the validators won't fire until they've seen a valid (non-empty) value come across. We explicitly made a decision that tabbing through an empty field would not cause an error, so binding doesn't trigger validation in this case. What you can do is programmatically set the

RE: [flexcoders] Changing the wrongLengthError in a DateValidator

2005-08-18 Thread Matt Chotin
I think someone else ran into this (maybe Mika?) but I don't remember if it had a work around. This is something we're fixing in 2.0, I don't have a solution for you off the top of my head. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] menubar bar color

2005-08-18 Thread Matt Chotin
Title: Creating a new Flex component I think its stuck in 1.x but Im not 100% sure. Seems like youve played a lot with it though to no avail. Make sure the Flex Style Explorer didnt solve it but otherwise I think its stuck. Matt From: flexcoders@yahoogroups.com

RE: [flexcoders] Calling RemoteObject declared in a mxml component in an application-The property being referenced does not ...

2005-08-18 Thread Matt Chotin
You cant use the classname for your id. Change id=services to something like id=myServices and then do myServices.myRemoteObject From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, August 16, 2005 8:25 AM To:

RE: [flexcoders] Changing the wrongLengthError in a DateValidator

2005-08-19 Thread Matt Chotin
The field in 1.x is abstracted away from the validator so that its really only working with the value.  Because of the way Validators are generated there isnt even really a field property on the Validator, its just a code-gen construct that is used to register the Validator in a larger

RE: [flexcoders] Second attempt at posting

2005-08-19 Thread Matt Chotin
Are you talking about a database on a server or you just want it stored for the individual user on their machine. If the individual user then youre talking about a Local Shared Object. If you want it on a remote server then you want to use one of our services (HTTPService, WebService,

RE: [flexcoders] Second attempt at posting

2005-08-19 Thread Matt Chotin
If youre only talking localhost then Id look into local shared object and see if that fits your needs. If you think you need to do something different how about you tell us which server development technologies youre familiar with and maybe we can give you better guidance.

RE: [flexcoders] Application preloader

2005-08-19 Thread Matt Chotin
Shouldnt the preloader.swc simply go in the root without the need to add another folder?  Or drop it in your user_classes folder? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Philippe Maegerman Sent: Friday, August 19, 2005 5:47 AM To:

RE: [flexcoders] XML Parsing

2005-08-21 Thread Matt Chotin
I assume its something like this: foo attr=barbaz/foo I thought we had dealt with this but it might be a known issue. Try tracing foo[attr] and foo.toString() and see if you get the values. Otherwise youll need to adjust your XML. Matt From: [EMAIL PROTECTED]

RE: [flexcoders] Calling RemoteObject declared in a mxml component in an application-The property being referenced does not ...

2005-08-21 Thread Matt Chotin
) } function resultHandler(result): Void { // This is not being called myList= result; } Matt Chotin To: [EMAIL PROTECTED] [EMAIL PROTECTED] cc: Sent by: Subject: RE: [flexcoders] Calling RemoteObject declared in a [EMAIL PROTECTED] mxml component in an application-The property being

RE: [flexcoders] Sudenn compile err: Unresolved symbol, __Packages.unescape, required by __Packages.LogicEngine

2005-08-21 Thread Matt Chotin
Title: Sudenn compile err: Unresolved symbol, __Packages.unescape, required by __Packages.LogicEngine Check to make sure your web-inf/flex/system_classes folder is still around and toplevel.as is in there. Thats where unescape is. Id also clear out your web-inf/flex/generated

RE: [flexcoders] Scrollbar in canvas

2005-08-21 Thread Matt Chotin
What if you set the vbox1 width/height to 100%. Then it will have a scrollbar as necessary I think. Matt From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Rajesh Jayabalan Sent: Friday, August 19, 2005 5:56 PM To: [EMAIL PROTECTED] Subject: [flexcoders]

RE: [flexcoders] switch value on numericstepper

2005-08-21 Thread Matt Chotin
You might be able to simply use binding mx:NumericStepper id=step1 minimum=1 maximum=2 value={step2.value == 1 ? 2 : 1}/ mx:NumericStepper id=step2 minimum=1 maximum=2 value={step1.value == 1 ? 2 : 1}/ But that also might not be too happy. Otherwise add a change event listener onto

RE: [flexcoders] Re: Calling a webservice solely through AS

2005-08-29 Thread Matt Chotin
Not supported in Flex 1.5, supported in an upcoming version. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jeff Tapper Sent: Monday, August 29, 2005 6:07 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Calling a

RE: [flexcoders] Validators and Formatters

2005-08-29 Thread Matt Chotin
AS-only validators are not supported in 1.5. They will be in the next version. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of priya_sukup Sent: Sunday, August 28, 2005 11:16 PM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] How to set a WebService endpoint?

2005-08-29 Thread Matt Chotin
It is automatically determined from the WSDL. If you need to specify a different endpoint check the docs here: http://livedocs.macromedia.com/flex/15/flex_docs_en/0770.htm From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Mink, Joseph Sent:

RE: [flexcoders] Browserless Flex? - legal?

2005-08-31 Thread Matt Chotin
Title: Re: [flexcoders] Browserless Flex? You only asked 3 hours ago, have patience J I believe what youve proposed falls within the license but you can talk to a sales rep for further confirmation. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] How to set a WebService endpoint?

2005-08-31 Thread Matt Chotin
be observed for each WS call: 08/30 07:43:19 INFO -- POST : http://localhost:8080/uimanager/UIManagerService I'm confused! Thanks for the reply though! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Tuesday, August 30, 2005 12

RE: [flexcoders] reference to a webservice object

2005-08-31 Thread Matt Chotin
WebService will really be a reference to mx.servicetags.Service but you should be able to use it to make calls. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of inajamaica Sent: Tuesday, August 30, 2005 6:52 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] NumberFormatter question

2005-09-01 Thread Matt Chotin
That seems like a bug, the reason its pulling the exponent is probably because of that hyphen after the e, it parsed the number incorrectly as -4 and -12. Not sure of the workaround without playing around and unfortunately I dont have time at the moment. Sorry, please file it if you can!

RE: [flexcoders] Reflection and RemoteObjects

2005-09-01 Thread Matt Chotin
Title: Reflection and RemoteObjects Any object you receive back from a RemoteObject should work in any system you want (like the Reflection API). But its going to be the AS object, it wont tell you anything about the Java object on the server. Make sure you have a real object that you

RE: [flexcoders] Background alpha in Tree control does not seem to be working

2005-09-01 Thread Matt Chotin
I dont think Tree or the Lists support alpha for their background. I might be wrong but its what I remembersorry. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of delaquae Sent: Thursday, September 01, 2005 11:44 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] passing array of Form values in VO

2005-09-01 Thread Matt Chotin
Easiest way might be to componentize the FormItem. Then you give the FormItem its own id but the IDs inside all can be the same. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cruegger2000 Sent: Thursday, September 01, 2005 12:25 PM To:

RE: [flexcoders] Drag-and-drop: Delete Canvas after Move

2005-09-01 Thread Matt Chotin
Rough sketch maybe you would want to add a reference to the canvas itself as part of your drag source data. So instead of just relying on the format that had Blue or Red you would have another format called sourceCanvas or something like that, then in your drop handler youd grab

RE: [flexcoders] passing array of Form values in VO

2005-09-06 Thread Matt Chotin
, could you give me more info on how exactly I'd do this? Ive not written any Flex custom components yet. Thanks, Chris Matt Chotin [EMAIL PROTECTED] wrote: Easiest way might be to componentize the FormItem. Then you give the FormItem its own id but the IDs inside all can

RE: [flexcoders] Custom CellRenderer displaying multy colors

2005-09-06 Thread Matt Chotin
I dont think you attached the code for the renderer correctly. But to change the color of the renderer maybe use a VBox and do a setStyle(backgroundColor) with the appropriate value. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of

RE: [flexcoders] Flex Consuming .Net WS (WSE 2.0)

2005-09-06 Thread Matt Chotin
We dont have any support for those security features built-in right now. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jose (DSM) Lora Sent: Tuesday, September 06, 2005 7:00 PM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] Flex Sample Application

2005-09-10 Thread Matt Chotin
Make sure your flex-config.xml has the appropriate entries (did you take samples.war or did you copy to another war?). FormatSourceService should be in there I think (I havent gone back and looked to refresh my memory though). Matt From: flexcoders@yahoogroups.com

RE: [flexcoders] HeaderRenderer Tooltips

2005-09-10 Thread Matt Chotin
The setValue method of the headerRenderer is going to be passed the text it wants to display for the column. You can use that to set the toolTip property as well. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of thisdudenamedjon Sent:

RE: [flexcoders] RowRenderer for DataGrid: is this possible?

2005-09-10 Thread Matt Chotin
Writing a custom row renderer is pretty hard in Flex 1.5, its something were hoping to improve in the next version. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of P Trisnadi Sent: Wednesday, September 07, 2005 5:30 PM To:

RE: [flexcoders] setting focus back to component that fails validation?

2005-09-10 Thread Matt Chotin
You could use the focusOut event instead. The valueCommitted handler is going to fire before the component attempts to change focus, so after it has executed (and youve called setFocus) THEN the component will switch focus. So you need to switch focus back later in the process. Matt

RE: [flexcoders] Tween classes

2005-09-10 Thread Matt Chotin
Try not using _level0, go through Application.application. And see if you should be using Delegates too J Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Philippe Maegerman Sent: Friday, September 09, 2005 9:56 AM To:

RE: [flexcoders] setting value to datefield text..

2005-09-10 Thread Matt Chotin
Try change or valueCommitted maybe? Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Greg Morphis Sent: Friday, September 09, 2005 10:49 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] setting value to datefield text.. As

RE: [flexcoders] Flash Remoting.

2005-09-10 Thread Matt Chotin
Look for ASSetPropFlags. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Omar Ramos Sent: Friday, September 09, 2005 2:20 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flash Remoting. Hi list, I know there

RE: [flexcoders] Checkbox Cell Renderer

2005-09-10 Thread Matt Chotin
Title: Checkbox Cell Renderer Im guessing that you accidentally have a reference to something that is not being cleared in your renderer. Remember that the renderer is re-used for many items and as you scroll up and down it changes position. So maybe theres an instance variable in your

RE: [flexcoders] about synchronization in retrieving data by using a httpservice

2005-09-10 Thread Matt Chotin
Not sure exactly what youre running into here. Youre calling the next httpservice in the result handler of the previous one right? Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of xiankevin2005 Sent: Friday, September 09, 2005 9:51 PM

RE: [flexcoders] problem with cell renderer showing data in datagrid twice

2005-09-16 Thread Matt Chotin
in datagrid twice Matt: Sure did, Kevin H sent me some files that showed how to fix... thanks Craig ps. sorry for not responding quicker, been REAL busy... Matt Chotin [EMAIL PROTECTED] wrote: Craig, did you solve this or do you still need help? From

RE: [flexcoders] Undefined weirdness

2005-09-21 Thread Matt Chotin
Matts way to busy to defend himself or search flexcoders for spurious attacks. I assume your AgentVO in AS has acctList as a public var, not as a getter/setter? Are you using binding out of the AgentVOs acctList? Maybe try assigning and not binding? As you guys can tell most MM

RE: [flexcoders] OT: just testing. can you see this mail?

2005-09-22 Thread Matt Chotin
As Ive said in a few other posts MM folks are super-busy right now so we (or at least I) may be much less responsive these days. Of course Abdul and Manish seem to still post a lot but theyre rock stars, what can I say J Matt From: flexcoders@yahoogroups.com

RE: [flexcoders] flex and third party search engines

2005-09-26 Thread Matt Chotin
Some of the major search engines have the capability of reading a small piece of metadata from a SWF (or parsing a SWF for compiled-in strings). But at the moment no one loads a SWF to see what it displays and produces proper search results. Its something weve investigated and may try to

RE: [flexcoders] questions about HorizontalList

2005-09-26 Thread Matt Chotin
The change function on HorizontalList will tell you when the item has been selected. The selectedItem property is the item that was selected. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of andrehfraga Sent: Sunday, September 25, 2005

RE: [flexcoders] questions about HorizontalList

2005-09-26 Thread Matt Chotin
@yahoogroups.com Subject: Re: [flexcoders] questions about HorizontalList but in pratice, what type has the value returned by selectedItem ? 2005/9/26, Matt Chotin [EMAIL PROTECTED]: The change function on HorizontalList will tell you when the item has been selected. The selectedItem property

RE: [flexcoders] Confusing error message

2005-09-27 Thread Matt Chotin
This question is covered in the FAQ on www.cflex.net. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, September 27, 2005 9:09 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Confusing error

RE: [flexcoders] Dynamically created children don't respect properties?

2005-09-28 Thread Matt Chotin
I think you may need to separate out your styles and properties. For example width and height should be in that object and done as numbers (you have them in quotes which means strings). But the margins and borderStyles and colors are all styles and need to be applied using setStyle I

RE: [flexcoders] Tree Problem

2005-09-28 Thread Matt Chotin
Can you post some sample code (not that I really have time to run it but maybe someone else can). It may be a Tree bug. You say that it happens without the cell renderer too? That should be an easy example then and we can look and see whats happening. Matt From:

RE: [flexcoders] Re: Webservice - Unable to connect to endpoint ...

2005-09-28 Thread Matt Chotin
@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: Have you diffed what the successful request in Firefox looked like using HttpWatch? Does your GetForums method expect any parameters? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com

RE: [flexcoders] Webservices and pre-compiled SWFs

2005-09-28 Thread Matt Chotin
Yep, you just need to make sure the proxy server location is compiled into the SWF or at least done with a good relative url. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Bob Remeika Sent: Wednesday, September 28, 2005 5:12 PM To:

RE: [flexcoders] flex and third party search engines[john dowdell.. anybody...]

2005-09-28 Thread Matt Chotin
Nithya, Your example is generally more about backend logic to find your data rather than searching incorporated with Flex. If your products are stored in a database, youll need to use the databases query capabilities to find the right products. You kept asking about mondosearch so

RE: [flexcoders] Good code just stops working with no changes...

2005-09-29 Thread Matt Chotin
Might be the same thing people were discussing a few days ago: http://www.mail-archive.com/flexcoders@yahoogroups.com/msg13518.html Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Libby Sent: Thursday, September 29, 2005 5:34 AM To:

RE: [flexcoders] Help with error message ASAP!

2005-10-02 Thread Matt Chotin
And check the faq (linked below) for more info. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Kelly Roman Sent: Sunday, October 02, 2005 4:31 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Help with error message ASAP!

RE: [flexcoders] Cannot use relative URLs on Service. event.result is empty !

2005-10-03 Thread Matt Chotin
Remember that the relative url is from the SWF, not the component. If you really think that you only made a small change and things stopped working then slowly work back to what you had before and see if it starts working. Youll see what change caused the problem. I find that sometimes

RE: [flexcoders] getURL Problem

2005-10-03 Thread Matt Chotin
You might need to use Application.getURL(), cant remember if we introduced that to help with this problem. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Marcin Glowacki Sent: Monday, October 03, 2005 8:37 AM To:

RE: [flexcoders] Weird error

2005-10-04 Thread Matt Chotin
But if you know your XML is valid it may be that youre getting a 500 error or 404 but with a 200 status code. Are you using the proxy? Turn on proxy debugging. If not, maybe go through a sniffer to see whats really coming back. Matt From: flexcoders@yahoogroups.com

RE: [flexcoders] Exception: The named type given in flex-config.xml (stateful-class) does not match the type value received (null)

2005-10-04 Thread Matt Chotin
Do you have typestateful-class/type in your flex-config.xml for serviceApplication? Maybe theres a typo right around there? Maybe you accidentally did something like stateful-classtrue/stateful-class? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On

RE: [flexcoders] Getting a null object reference

2005-10-04 Thread Matt Chotin
, but still not working ... -Mensagem original- De: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] Em nome de Matt Chotin Enviada em: terça-feira, 4 de outubro de 2005 01:32 Para: flexcoders@yahoogroups.com Assunto: RE: [flexcoders] Getting a null object reference Try using

RE: [flexcoders] Validator, Styles, ...

2005-10-05 Thread Matt Chotin
I dont think the thickness of the border is exposed right now for manipulation unfortunately. Same for having the error tip show up without the mouseover. These are good enhancement requests though, can you file them at http://www.macromedia.com/go/wish please? Matt From:

RE: [flexcoders] date sort

2005-10-05 Thread Matt Chotin
If its not working by default you may want to look into the sortCompareFunction on DataGridColumn. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Joe Sent: Wednesday, October 05, 2005 2:33 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Bug with UIObject and defaultLeafIcon in a tree

2005-10-06 Thread Matt Chotin
Sounds like a bug you should file: http://www.macromedia.com/go/wish From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of greenfishinwater Sent: Thursday, October 06, 2005 10:01 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Bug with

RE: [flexcoders] pass multiple objects from dispatchEvent()to addEventListener()

2005-10-06 Thread Matt Chotin
Two dispatchEvents. dispatchEvent({type: actualScore, Result: actual}); dispatchEvent({type: potentialScore, Result: potential}); From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of rgwilson26 Sent: Thursday, October 06, 2005 9:33 AM To:

RE: [flexcoders] calling a secured web service

2005-10-06 Thread Matt Chotin
Try removing use-custom-authentication, just have the run-as. Make sure youre going through mx:WebService service=xxx / and dont use wsdl= Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Raymond Camden Sent: Thursday, October 06, 2005

RE: [flexcoders] Flex form not passing a referrer header - IE only

2005-10-06 Thread Matt Chotin
I think this is a known issue: http://www.mail-archive.com/flexcoders@yahoogroups.com/msg00931.html Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of pixelcowboys Sent: Thursday, October 06, 2005 5:13 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] mx:Model - XML with keywords like new

2005-10-06 Thread Matt Chotin
Yes, its because new is reserved. Can you file a bug please? I thought we had cases like that covered. http://www.macromedia.com/go/wish. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Christoph Diefenthal Sent: Thursday, October 06,

RE: [flexcoders] PopupManager.createPopUp - varying the className argument

2005-10-07 Thread Matt Chotin
Also you need to make sure that the class still gets linked into your app. Create some dummy variables of the potential types that could be loaded: Var linkhelper1:MyWindow1; Var linkhelper2:MyWindow2; Etc. Matt From: flexcoders@yahoogroups.com

RE: [flexcoders] HTTPService timeout

2005-10-07 Thread Matt Chotin
Currently HTTPService doesnt support a timeout on its own. Youll need to use your own mechanism with setInterval. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Mink, Joseph Sent: Friday, October 07, 2005 5:03 AM To:

RE: [flexcoders] Re: Harley Davidson Flex app launched

2005-10-08 Thread Matt Chotin
Id also like to mention that this was not a Flex project that took a year to develop, most of the development was done in a few months and then other non-app-related issues delayed the deployment, though Im sure tweaks were made during that time. Matt From:

RE: [flexcoders] Re: calling a secured web service

2005-10-10 Thread Matt Chotin
Well we have it passing in our internal test suites J Have you turned on the debugging in flex-config.xml for the web-service-proxy? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Raymond Camden Sent: Monday, October 10, 2005 9:34 AM To:

RE: [flexcoders] Re: calling a secured web service

2005-10-10 Thread Matt Chotin
-Version : 1.1.4322 10/10 10:30:43 INFO -- Header in response: Cache-Control : private 10/10 10:30:43 INFO -- Header in response: Content-Type : text/html; charset=utf-8 On 10/10/05, Matt Chotin [EMAIL PROTECTED] wrote: Well we have it passing in our internal test suites J Have you turned

RE: [flexcoders] date sort

2005-10-11 Thread Matt Chotin
are not an intended recipient, you must not read, copy, use, or disclose this communication. Please also notify the sender by replying to this message, and then delete all copies of it from your system. Thank you. Matt Chotin [EMAIL PROTECTED] Sent by: flexcoders@yahoogroups.com 10/05/2005

RE: [flexcoders] Strange behaviour when using a label func in barchart

2005-10-11 Thread Matt Chotin
This is because youre modifying the mystring value yourself, you shouldnt be doing += which I believe acts like append in AS2, instead you should simply return mystring + % From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of jrab2999 Sent: Friday,

RE: [flexcoders] tileList and events

2005-10-11 Thread Matt Chotin
In your ProductThumb declare a listOwner property, it should be set to the TileList automatically by the time setValue is called. Then for those events you should go ahead and tell the listOwner to dispatch a new event, passing in any relevant info. You can then have your code

RE: [flexcoders] Datagrid sort on float numbers problem

2005-10-11 Thread Matt Chotin
Hmm, if were screwing that up you may want to use your own comparator function. See sortCompareFunction on DataGridColumn. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Alban Soupper Sent: Friday, October 07, 2005 5:45 AM To: Flexcoders

RE: [flexcoders] Using Flash components in Flex

2005-10-11 Thread Matt Chotin
Nope, the Dataset components generally are used in a 2-tier architecture which weve not been encouraging for Flex apps. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of sergei_tsoganov Sent: Tuesday, October 11, 2005 11:06 AM To:

RE: [flexcoders] HttpService Push (Re: HTTPService timeout)

2005-10-11 Thread Matt Chotin
In response to this and the other related thread I just want to post something that one of our architects, Sean Neville, wrote. Youll get to see the outcome of the work that Sean alludes to when we start showing off Flex Enterprise Services in a few months (this is not a timetable on

RE: [flexcoders] Re: Focusing cell on datagrid

2005-10-11 Thread Matt Chotin
Im not sure of the right way to do this for now but itd be worth filing as an enhancement request to make this easy for the next version of Flex. http://www.macromedia.com/go/wish. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of

RE: [flexcoders] DataGrid Cell Space character!

2005-10-11 Thread Matt Chotin
This seems like a bug, you should file it (with a code example) at http://www.macromedia.com/go/wish. I think like you are hinting at you could probably use the cellEdit event to undo the damage. You should be able to get the new value by simply reading the value specified for the item

RE: [flexcoders] mx:method

2005-10-11 Thread Matt Chotin
1. Multiple means that multiple calls to the same method are allowed before previous calls have returned. This is the default behavior and what youre generally used to when calling any method. We added a few more concurrency values to try to simplify logic if you really didnt want to

RE: [flexcoders] Reading the displayed value in a DataGrid - How to

2005-10-11 Thread Matt Chotin
How about something like this? For (var i:Number=0; I dg.dataProvider.length; i++) { var cells:Array = []; var item:Object = dg.dataProvider.getItemAt(i); for (var c:Number=0; c dg.columns.length; c++) { var col:mx.controls.gridclasses.DataGridColumn = dg.getColumnAt( c

RE: [flexcoders] Web Services: Request/Response implements version...

2005-10-11 Thread Matt Chotin
I think theres probably another error and we just happen to be blowing up in the wrong section and giving you something bogus. Id turn on proxy debugging and see what the debug output looks like. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On

  1   2   3   4   5   6   7   8   9   10   >