are image objects moveable?

2004-02-25 Thread kweto
Is there a (simple) way of enabling a user to use a mouse to pick up an image object and then move it around on a card? I.e., click and hold on an image with mouse left-button, move image by moving mouse, and then release mouse left-button. Also, if the reason for moving the image o

Re: are image objects moveable?

2004-02-25 Thread Malte Brill
Hi Nicolas, you might want to put something like this into the images script: on mousemove x,y if the mouse is down then set the loc of me to x,y end if end mouseMove If you want to check if the object is over another object you might want to use the intersect function for a start: if i

Re: are image objects moveable?

2004-02-25 Thread Marty Billingsley
> "kweto" <[EMAIL PROTECTED]> asks > > Is there a (simple) way of enabling a user to use a mouse to pick up an > image object and then move it around on a card? I.e., click and hold on an > image with mouse left-button, move image by moving mouse, and then release > mouse left-button. A down-and-d

Re: are image objects moveable?

2004-02-27 Thread Judy Perry
I think we recently had this very discussion... I, too, have a hard time letting go of 'on mouseStillDown' but I'm fairly certain I recall having it explained that this approach ties up the processor and that the new 'grab' (?) command is preferable. Do I recall wrong? Judy On Wed, 25 Feb 2004,

Re: are image objects moveable?

2004-02-27 Thread Ken Norris
Hi Judy, Marty, et al, > Date: Fri, 27 Feb 2004 14:09:26 -0800 (PST) > From: Judy Perry <[EMAIL PROTECTED]> > Subject: Re: are image objects moveable? > > I think we recently had this very discussion... I, too, have a hard time > letting go of 'on mouseStillDown