RE: [flexcoders] best way to update a display object's VO's x and y props?

2008-04-03 Thread Merrill, Jason
Why not read in the initial X and Y values of the VO, then as it's dragged, update the X and Y values back in the VO. Seems simple setters and getter functions or public properties could handle that unless I'm missing something. Then when you want to send the VO data back, it's already updated.

Re: [flexcoders] best way to update a display object's VO's x and y props?

2008-04-02 Thread Douglas McCarroll
Hi Rich, I don't think that I have a great answer for you on this but I have a few questions/thoughts. It sounds as though you want the PageItem's position to initially be set from the VO's x/y, then you want the VO's x/y to reflect the PageItem's x/y as it is dragged. Why don't you *not* have

Re: [flexcoders] best way to update a display object's VO's x and y props?

2008-04-02 Thread Rich Rodecker
It sounds as though you want the PageItem's position to initially be set from the VO's x/y, then you want the VO's x/y to reflect the PageItem's x/y as it is dragged. yes, that's exactly what I want. Actually, binding the other way doesn't sound all that bad...I'll think about that a