RE: [flexcoders] httpservice formatted as Object 0 = 0 but 1 = 1

2009-03-20 Thread Gregory Kelley
: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Gregory Kelley Sent: Thursday, March 19, 2009 7:19 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] httpservice formatted as Object 0 = 0 but 1 = 1 That is the problem with the object being inconsistent. Since any

[flexcoders] httpservice formatted as Object 0 = 0 but 1 = 1

2009-03-19 Thread Gregory Kelley
I have the following line in the xml returned from the call. rsp stat=ok typePartner/type object inv_text_end_dt= is_comm_paid=0 override_type_id= / /rsp When I reference event.result.rsp.is_comm_paid the result is 0 Now if I pull a record where the value is 1 then the xml looks like rsp

RE: [flexcoders] httpservice formatted as Object 0 = 0 but 1 = 1

2009-03-19 Thread Gregory Kelley
on behalf of Gregory Kelley Sent: Thu 3/19/2009 9:32 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] httpservice formatted as Object 0 = 0 but 1 = 1 I have the following line in the xml returned from the call. rsp stat=ok typePartner/type object inv_text_end_dt= is_comm_paid=0 override_type_id

RE: [flexcoders] Looking for a design pattern

2009-03-09 Thread Gregory Kelley
It is my humble opinion that you would need to initiate some type of locking mechanism. The process locks until the one process is done. If you have an application level backend then that could have a lock variable with a unique ID to the specific process. when it is complete you push your

[flexcoders] Feedback on my Enum class

2009-02-22 Thread Gregory Kelley
When I started to create this class I didn't think it would work as well as it did, but am afraid it might not be good programming. Thanks for any feedback! package com.lib.enums { import mx.collections.ArrayCollection; public class CommBatchTypeEnum { //used to bind all of the enums to

RE: [flexcoders] Optimizing Allocated Memory versus Used Memory in Flex/Air Applications

2009-02-20 Thread Gregory Kelley
Wonder if the process explorer from sysinternals would provide any help? Greg From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Alex Harui Sent: Friday, February 20, 2009 3:01 PM To: flexcoders@yahoogroups.com Subject: RE:

[flexcoders] Date Datatype revisited

2009-01-15 Thread Gregory Kelley
Can anyone direct me to a resource that could help me determine why the following creates invalid date objects? The date objects have date parts filled with NaN. public static const MIN_DATE:Date = new Date(-Number.MAX_VALUE); public static const MAX_DATE:Date = new Date(Number.MAX_VALUE);

[flexcoders] Valid Date Ranges in Flex

2009-01-14 Thread Gregory Kelley
In creating a date filterd report generation system, I was asked to add an option for returning all data. Rather than reworking the backend I just added a checkbox to the UI that says return all data. If that box is checked then the properties return the following constants (randomely created

[flexcoders] Ignore Previous Post: Valid Date Ranges in Flex

2009-01-14 Thread Gregory Kelley
In creating a date filterd report generation system, I was asked to add an option for returning all data. Rather than reworking the backend I just added a checkbox to the UI that says return all data. If that box is checked then the properties return the following constants (randomely created by

RE: [flexcoders] Cant empty context menu- previous answers don't work...

2009-01-14 Thread Gregory Kelley
public static const MIN_DATE:Date = new Date(1500,1,1); public static const MAX_DATE:Date = new Date(2999,12,31);

RE: [flexcoders] Re: Valid Date Ranges in Flex

2009-01-14 Thread Gregory Kelley
] Re: Valid Date Ranges in Flex The month ranges from 0 (January) to 11 (December). You asked for day 31 of month 12 of year 2999 so Flex made it day 31 of month 1 of year 3000. --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Gregory Kelley gkel...@... wrote: In creating

RE: [flexcoders] Re: Valid Date Ranges in Flex

2009-01-14 Thread Gregory Kelley
Sakrejda Truviso, Inc. http://www.truviso.com http://www.truviso.com -Original Message- From: Gregory Kelley gkel...@pngmail.com mailto:gkelley%40pngmail.com Reply-To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com To: flexcoders@yahoogroups.com mailto:flexcoders