[flexcoders] Re: Math.abs() Limitation?

2008-06-13 Thread Mike Morearty
Daniel, this is a bug in Flex Builder, which occurs when displaying the values of Numbers whose value is greater than 0x7FFF. I'll get a fix in ASAP. Thanks for the feedback, and sorry for the inconvenience. To be clear, the Flex Builder debugger's Variables view is showing the

Re: [flexcoders] Re: Math.abs() Limitation?

2008-06-13 Thread Daniel Freiman
I'll have to double check, but I'm don't think the code was doing the right thing either, because: Math.abs(Number.MAX_VALUE - 1290) - Math.abs(Number.MAX_VALUE - 1284); // returns 0 On Fri, Jun 13, 2008 at 1:58 PM, Mike Morearty [EMAIL PROTECTED] wrote: Daniel, this is a bug in Flex

RE: [flexcoders] Re: Math.abs() Limitation?

2008-06-13 Thread Gordon Smith
Subject: Re: [flexcoders] Re: Math.abs() Limitation? I'll have to double check, but I'm don't think the code was doing the right thing either, because: Math.abs(Number.MAX_VALUE - 1290) - Math.abs(Number.MAX_VALUE - 1284); // returns 0 On Fri, Jun 13, 2008 at 1:58 PM, Mike Morearty [EMAIL

Re: [flexcoders] Re: Math.abs() Limitation?

2008-06-13 Thread Daniel Freiman
[mailto:[EMAIL PROTECTED] *On Behalf Of *Daniel Freiman *Sent:* Friday, June 13, 2008 12:26 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Re: Math.abs() Limitation? I'll have to double check, but I'm don't think the code was doing the right thing either, because: Math.abs

RE: [flexcoders] Re: Math.abs() Limitation?

2008-06-13 Thread Gordon Smith
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Freiman Sent: Friday, June 13, 2008 1:05 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Math.abs() Limitation? That's the explanation I've been looking for. I think we were really close