[flexcoders] dragging around a canvas

2005-06-06 Thread Robert Brueckmann
Is there a simple example somewhere of being able to drag and drop a panel around a canvas? I've seen the minimizable/maximizable and the draggable examples previously posted, but I just want to be able to allow the user to move a handful of panels that contain static information around the canvas

RE: [flexcoders] dragging around a canvas

2005-06-06 Thread Mike Anderson
ons of Flex. Just my two cents, but I am pretty sure this is the only way to do it. Mike -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Brueckmann Sent: Monday, June 06, 2005 1:54 PM To: flexcoders@yahoogroups.com Subject: [flexcoders]

Re: [flexcoders] dragging around a canvas

2005-06-06 Thread dave buhler
Hi, Did you look into the TitleWindow (non-modal)? http://livedocs.macromedia.com/flex/15/flex_docs_en/0376.htm DaveOn 6/6/05, Mike Anderson <[EMAIL PROTECTED]> wrote: The only thing I could come up with, is pre-create all the panels youwould like to have displayed with the content you wo

Re: [flexcoders] dragging around a canvas

2005-06-06 Thread Manish Jethani
On 6/7/05, Robert Brueckmann <[EMAIL PROTECTED]> wrote: > Is there a simple example somewhere of being able to drag and drop a > panel around a canvas? You're looking for TitleWindow. Search the archives for TitleWindow and you'll find numerous examples. http://www.mail-archive.com/flexcoders@ya

Re: [flexcoders] dragging around a canvas

2005-06-06 Thread Joe Berkovitz
I'd just add that the drag-and-drop functionality exhibited by TitleWindow and Panel is not all that hard to roll yourself if you need to -- it's implemented with functions for the MovieClip handlers onPress(), onRelease() and onMouseMove(), which call move() on the dragged object to move it fr

Re: [flexcoders] dragging around a canvas

2005-06-06 Thread Manish Jethani
On 6/7/05, Joe Berkovitz <[EMAIL PROTECTED]> wrote: > I'd just add that the drag-and-drop functionality exhibited by > TitleWindow and Panel is not all that hard to roll yourself if you need > to -- it's implemented with functions for the MovieClip handlers > onPress(), onRelease() and onMouseMove(