[flexcoders] Re: Line Chart, I have a X value, how can I find the Y value?

2010-09-07 Thread napearson99
*wshh* That's the sound your post just made going by my noggin :). I was hoping there was something built into flex for this. Does anyone have a simple way of figuring this out? Thanks for responding though mike, I appreciate even if I'm not smart enough to

[flexcoders] Re: Line Chart, I have a X value, how can I find the Y value?

2010-09-07 Thread napearson99
I mean, you would think you could just give the line series the X value and it could tell you the current Y value. Couldn't be that simple, right? --- In flexcoders@yahoogroups.com, "Mike" wrote: > > I did something like this for EBay. I defined a hierarchy of Equation > classes, including li

[flexcoders] Line Chart, I have a X value, how can I find the Y value?

2010-09-06 Thread napearson99
I have a line chart with time on the bottom and a linear axis for Y. I have the user click on the graph and I get my X value, but I have to calculate the Y value since the user might click anywhere on the Y axis. Any ideas how I could do this? Thanks! -Nate

[flexcoders] Can't get FlexUnit results to show up

2010-07-08 Thread napearson99
I have a flex 4 air project and I've set up a class with a simple method, a test class and a test suit class. When I try to run my test cases nothing shows up in the FlexUnit results in the bottom. I can get break points to hit in my test class, so I know it's hitting. I also have an assert st

[flexcoders] Adding objects to new air windows

2009-12-19 Thread napearson99
Hi, I'm opening a new window in air and adding a child component to it in the same function. My child component is a grey overlay of the window to show that it's loading. While that's loading, I make a database call. When that data comes back I remove the loading overlay. Here's my problem,

[flexcoders] Re: Line chart selection

2009-12-14 Thread napearson99
I found a solution at http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/Flex/Q_23262342.html --- In flexcoders@yahoogroups.com, "napearson99" wrote: > > I asked this question before but I thought I'd rephrase because I had zero > responses. >

[flexcoders] Line chart selection

2009-12-13 Thread napearson99
I asked this question before but I thought I'd rephrase because I had zero responses. I want to do what's in this video http://www.youtube.com/watch?v=gWa89GWG_K8&feature=channel I want to do what he does at 5:30, which is click and drag and select an area on a graph. I'm thinking I could jus

[flexcoders] Re: Select Region on Line Chart

2009-12-12 Thread napearson99
bump, anyone? --- In flexcoders@yahoogroups.com, "napearson99" wrote: > > I have a line chart over time. I want to select a region and get the data > points under it (or at least the first and last). I don't care about > selection in the Y axis, just the x axis.

[flexcoders] Select Region on Line Chart

2009-12-01 Thread napearson99
I have a line chart over time. I want to select a region and get the data points under it (or at least the first and last). I don't care about selection in the Y axis, just the x axis. So if click the mouse and drag it right I want to select the area between x.mousestart to x.mouseend. The

[flexcoders] Re: Plotting lots of data on a line chart

2009-11-17 Thread napearson99
Bump. Any ideas? This is possible, right? --- In flexcoders@yahoogroups.com, "napearson99" wrote: > > I have a dataset of about 10,000 points. I want to plot the data in a line > chart. I don't need every single item to be plotted, i just need to shape of > the d

[flexcoders] Plotting lots of data on a line chart

2009-11-14 Thread napearson99
I have a dataset of about 10,000 points. I want to plot the data in a line chart. I don't need every single item to be plotted, i just need to shape of the data show up. I thought I'd done something like this before...but when I hooked it up earlier today it went really slow. Any thoughts?

[flexcoders] Re: Hot news! Adobe Opens iPhone to Flash Developers

2009-10-05 Thread napearson99
I hope someone from adobe can chime in here. Here's my take. Flex is just a framework built on AS3. This middleware compiler should be able to compile Flex AS3 code into native iPhone code no problem. The new framework should also help reduce the weight of your app and make it run faster.

[flexcoders] Re: Item Renderer doesn't work with just one Item :-(

2009-09-15 Thread napearson99
Nope, I'm putting my data into an array collection before I bind it. --- In flexcoders@yahoogroups.com, "Tracy Spratt" wrote: > > If you are using the default resultFormat, this behavior is an issue. I'd > advise "e4x". Or, test the result to see what it contains and conditionally > react. Arr

[flexcoders] Re: Cannot access a property or method of a null object reference

2007-02-16 Thread napearson99
if (dataprovider[i].someValue == null){ > ... > } > > --- In flexcoders@yahoogroups.com, "napearson99" wrote: > > > > I often get this error and I "usually" know why. Does anyone know how > > to check for a null reference? > > > > i.e. > >

[flexcoders] Cannot access a property or method of a null object reference

2007-02-16 Thread napearson99
I often get this error and I "usually" know why. Does anyone know how to check for a null reference? i.e. if (dataprovider[i].someValue is null){ dothis(); } Where dataprovider[i] does not have a someValue property. I bet this is pretty simple and I just don't know the syntax. Thanks in adva

[flexcoders] Calling a webservice on initilize()

2007-02-14 Thread napearson99
I'm trying to call a webservice. I would usually call it under That is not working in my situation, i think i have to call it like this. . But if I do that and debug it never hits the web service. I think this is because the code below does not get created. Any ideas? http://localhost:2008

[flexcoders] ArrayCollection Splice?

2007-02-14 Thread napearson99
I'm porting over one of Ely's component's data provider from accepting an Array to accept an ArrayCollection. He uses item.splice a lot where item is typed as an array. I want the same functionality in an array collection. Item[0].splice works, but im not sure this is the right way to do it.

[flexcoders] Re: Animated Drag Tile

2007-02-12 Thread napearson99
Ely, the tiles disappear when you rearrange inside the same data provider. It happens your demos and in the code I downloaded. -Nate --- In flexcoders@yahoogroups.com, "napearson99" <[EMAIL PROTECTED]> wrote: > > woohoo it works. Now I'm going to try to edit ur p

[flexcoders] Re: Animated Drag Tile

2007-02-12 Thread napearson99
woohoo it works. Now I'm going to try to edit ur program to do the vertical shuffling. gl to me. --- In flexcoders@yahoogroups.com, "napearson99" <[EMAIL PROTECTED]> wrote: > > I think you just forgot the images in the img folder. I put some in > named img1.jpg,

[flexcoders] Re: Animated Drag Tile

2007-02-12 Thread napearson99
I think you just forgot the images in the img folder. I put some in named img1.jpg, img2.jpg ect and they came up, although these pictures are at 1900x1680 so i might want to rescale them first to make sure it works. --- In flexcoders@yahoogroups.com, "napearson99" <[EMAIL PROT

[flexcoders] Re: Animated Drag Tile

2007-02-12 Thread napearson99
__ > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of napearson99 > Sent: Monday, February 12, 2007 1:42 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: Animated Drag Tile > > > > I cant find the BitmapTile file for

[flexcoders] Re: Animated Drag Tile

2007-02-12 Thread napearson99
I cant find the BitmapTile file for the Drag Tile custom itemrenderer. Am i making a mistake? --- In flexcoders@yahoogroups.com, "napearson99" <[EMAIL PROTECTED]> wrote: > > I was able to dl the source with IE 6. Firefox 2.0 throws that error. > > --- I

[flexcoders] Re: Animated Drag Tile

2007-02-12 Thread napearson99
I was able to dl the source with IE 6. Firefox 2.0 throws that error. --- In flexcoders@yahoogroups.com, "napearson99" <[EMAIL PROTECTED]> wrote: > > When I right click to view source I get the error: > > Routing Error > > Recognition failed for "

[flexcoders] Re: Animated Drag Tile

2007-02-12 Thread napearson99
_____ > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of napearson99 > Sent: Monday, February 12, 2007 10:46 AM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Animated Drag Tile > > > > Anyone know how to

[flexcoders] Animated Drag Tile

2007-02-12 Thread napearson99
Anyone know how to make an animated drag tile component? I saw Ely's posting at http://demo.quietlyscheming.com/DragTile/DragDrop.html and I love it. It won't let me download the code though so I can't figure out how it's done. -Nate

[flexcoders] Custom Charting Questions from Ely's Blog

2007-02-06 Thread napearson99
Dear Charting Gurus/Awesome People, I was reading Ely's blog on easy custom charting (which i think is great!) and read some interesting questions in his comment section. It turns out I have the same questions as these guys. They haven't been answered yet, so I thought I would post them here and

[flexcoders] Re: Gantt Chart

2007-02-02 Thread napearson99
Hey Clint, im having problems with the scheduler. After reading up on it some it seems that it can't handle large dates spans. For example I can't have an entry with a year between the start and end date. I guess this is because they used int where they should of used Number. Have you encount

[flexcoders] Re: Gantt Chart

2007-02-02 Thread napearson99
Nice Doug. What about dates? In theory how would that part hook up? I would argue that a time line of dates might be the most important part. I like what you did a lot. If we could combine what you did with the sliders with how the scheduler works I think we would have a really useful Gantt ch

[flexcoders] Re: Gantt Chart

2007-02-01 Thread napearson99
; sampler... more than a few ideas for me have been inspired by what he's done > > there. > > > > http://demo.quietlyscheming.com/ChartSampler/app.html > > > > HTH, > > > > Brendan > > > > On 2/1/07, napearson99 <[EMAIL PROTECTED]> w

[flexcoders] Re: Gantt Chart

2007-02-01 Thread napearson99
a few ideas for me have been inspired by what he's done there. > > http://demo.quietlyscheming.com/ChartSampler/app.html > > HTH, > > Brendan > > On 2/1/07, napearson99 <[EMAIL PROTECTED]> wrote: > > > > Hmmm..so i guess that only got me 10% of the way there. > > &

[flexcoders] Re: Gantt Chart

2007-02-01 Thread napearson99
Hmmm..so i guess that only got me 10% of the way there. Is there a way to put dates on the linear access? I also want custom labels for those dates. I.E. 10/1/2007 would equal Q1 2008. I also want the axis labels to appear at the top and bottom. Doug - I'm interested in those click and drag