Re: [flexcoders] Performance question - please help!

2006-01-23 Thread Jonathan Hirschi
in Flash 8, takes 1.2 seconds... fast > as heck comparitvely, so > getting those records initially as well as every > minute apparently would > work great. Running just 12,000 takes 20 > milliseconds. > > > - Original Message - > From: "Jonathan Hirschi

[flexcoders] How do i dynamically add a series to a LineChart? flex 1.5

2006-01-22 Thread Jonathan Hirschi
Ok, so i've got the problem where i'm trying to add a series to a line chart and it just doesn't seem to be working correctly. Here's a test file that i created to test this. has anyone been able to get this to work. I can get the chart created, the dataprovider is added/updated on the chart, b

RE: [flexcoders] Performance question - please help!

2006-01-20 Thread Jonathan Hirschi
t/2005/09/garbage-collection-in-flash-player-8.h > tml > > There was a comment on another article where he > described how using 1 > member > variable vs. many locals was better... even though > locals were optimized > for > local registers in Flash Player 7 making

Re: [flexcoders] Performance question - please help!

2006-01-20 Thread Jonathan Hirschi
propertyid, minuteid, propertyvalue 1,1,213,98 1,2,213,78 2,1,213,94 Everything is numbers Thanks for the explanations jester. --- Jonathan Hirschi <[EMAIL PROTECTED]> wrote: > Well, the way I'm planning this out is that at the > moment, i need to have 60 chart objects with >

Re: [flexcoders] Performance question - please help!

2006-01-20 Thread Jonathan Hirschi
nctions > faster... it's all > confusing. > > There was an in depth article that disappeared from > the face of Google; I > haven't seen it in 2 years, but don't know if it was > worth reading or not. > > Anyway, let us know about the data points; what &

Re: [flexcoders] Performance question - please help!

2006-01-20 Thread Jonathan Hirschi
le to retain the data if it's > in the 100,000 range, but > if it's just 60 pointers to machines, that's cake. > > - Original Message - > From: "Jonathan Hirschi" <[EMAIL PROTECTED]> > To: > Sent: Friday, January 20, 2006 4:10 PM > Subject: [flexc

RE: [flexcoders] Performance question - please help!

2006-01-20 Thread Jonathan Hirschi
Right now, i'm doing this in flex 1.5. Jon --- David Mendels <[EMAIL PROTECTED]> wrote: > Hello, > > Flex 1.5 or 2.0? > > -David > > > > > From: flexcoders@yahoogroups.com > [mailto:[EMAIL PROTECTED]

[flexcoders] Performance question - please help!

2006-01-20 Thread Jonathan Hirschi
Ok, so here's the situation, i've been tasked to write an application that shows a ton of graphs (testing the performance of flex). i need to create like 60 objects that will be holding approximately 100,000 datapoints apiece and i need to create those objects dynamically... is it going to be b

[flexcoders] how do you change the x-axis at runtime?

2005-11-08 Thread Jonathan Hirschi
Hey guys, I'm trying to change the x-axis of a line chart at runtime and I was wondering if anybody out there has any information on how you would go about doing it. So what I'm doing is that I have a pop up window that shows a graph. The numbers are pretty much the same across all of the graph

[flexcoders] JOB: Full time position open for Senior ColdFusion/Flex Developer

2005-10-14 Thread Jonathan Hirschi
eBay inc. is looking for an experienced developer to join our internal product tools services group. You will work within a team environment to build custom web-based database applications. Projects include: content management systems, next generation Rich Internet Application development and in

[flexcoders] how do I tell when a datagrid loses focus?

2005-07-14 Thread Jonathan Hirschi
Is there a simple way to tell when an entire datagrid loses focus? Ie i have an editable datagrid that i want to be able to tell when the whole datagrid loses focus so that i can commit changes. I can tell when cells focus in and focus out, but am having trouble with the whole datagrid. Is ther

RE: [flexcoders] dynamic assignment?

2005-04-07 Thread Jonathan Hirschi
me] = > myItem[changedColumnName]? > > > > Matt > > > > _ > > From: Jonathan Hirschi [mailto:[EMAIL PROTECTED] > > Sent: Wednesday, April 06, 2005 11:48 AM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] dynamic assignment? &g

[flexcoders] dynamic assignment?

2005-04-06 Thread Jonathan Hirschi
hey guys, I'm trying to figure out how to do some dynamic assignement to an object... and I'm not sure about how to do it... basically, I have a datagrid that gets information from a cfc. This datagrid is editable (several fields) and I want to track changes on the datagrid one row at a time, an

RE: [flexcoders] responding to a custom event - done, thanks!

2005-03-30 Thread Jonathan Hirschi
Actually, I tried it again and it works!.. Thanks very much for the help Abdul. --- Jonathan Hirschi <[EMAIL PROTECTED]> wrote: > Abdul, > > thanks for the code. It didn't work. How do i > check > for scope or context issues? > > > here's the appli

RE: [flexcoders] responding to a custom event - help requested

2005-03-30 Thread Jonathan Hirschi
d in different > context instead of > supposed one... > > Use Delegate, just change the following line and see > what happens... > > > instwin.addEventListener("recAdded", > mx.utils.Delegate.create(this, > refreshRecs)); > > > -abdul >

[flexcoders] responding to a custom event - help requested

2005-03-29 Thread Jonathan Hirschi
Hey all, i've got a situation that I don't think i'm handling correctly... situation: I have a main application that contains a datagrid. I create a popup to handle editing and when the edit has gone through, i want to refresh the main datagrid. I'm trying to do this through an event (is that