Re: Moving Stacks or the Mouse

2005-06-09 Thread Roger Guay
Thanks for this suggestion, Jim. I'll have a look at it. I'm sure that I will at least learn a lot as I always do from your stacks. Cheers, Roger On Jun 9, 2005, at 6:33 AM, [EMAIL PROTECTED] wrote: Roger, This isn't what you want but you might find it an alternative. You would have t

Re: Moving Stacks or the Mouse

2005-06-09 Thread Roger Guay
Tom, Thanks very much for this suggestion . . . I'll work with this. Of course my task is complicated by the fact that I am going from one stack to another, but I enjoy the challenge. Thanks again, Roger On Jun 8, 2005, at 5:07 PM, [EMAIL PROTECTED] wrote: You could capture the sta

Re: Moving Stacks or the Mouse

2005-06-09 Thread Jim Hurley
Message: 6 Date: Wed, 8 Jun 2005 16:30:12 -0700 From: Roger Guay <[EMAIL PROTECTED]> Subject: Re: Moving Stacks or the Mouse To: use-revolution@lists.runrev.com Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed Thom, Thank

Re: Moving Stacks or the Mouse

2005-06-08 Thread Thomas McGrath III
Roger, You could capture the start points x,y and then you must know your end points u,v and figure the stepping distance between the two. So if you had x= 200 and u = 340 and you wanted a step of 10 then you could repeat with a = x to u step 10 or (200, 210, 220, 230, 240... 320,330,340) Or

Re: Moving Stacks or the Mouse

2005-06-08 Thread Roger Guay
Thom, Thank you for this suggestion. First let me explain that I am building an animated tutorial and otherwise agree with you on the inadvisability of moving the mouse for the user. However my tutorial I will require the "animation" of the mouse to occur over many different paths acros

Re: Moving Stacks

2005-06-08 Thread Eric Chatonet
Hi Roger, What you need is: set the screenMouseLoc to tH,tV Check the screenMouseLoc property in the docs :-) Le 8 juin 05 à 23:08, Roger Guay a écrit : Thanks, Xavier. I am aware of the ability to drag a tool from one point to another, But drag mouse does not work! And of course, this is

Re: Moving Stacks

2005-06-08 Thread Roger Guay
Thanks, Xavier. I am aware of the ability to drag a tool from one point to another, But drag mouse does not work! And of course, this is what I really want . . . I want to drag the mouse from one point to another across open stacks. Since I could not figure out how to do this specificall

Re: Moving stacks . . .

2005-06-08 Thread Klaus Major
Hi Roger, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Roger Guay Sent: Wednesday, June 08, 2005 18:43 To: use-revolution@lists.runrev.com Subject: Moving stacks . . . Sorry to bother you with what probably is simple. I am trying to move a tiny sta

RE: Moving stacks . . .

2005-06-08 Thread MisterX
Hi Roger Welcome to runrev ;) First you need to find more about mouse verbs like move and set then hte "mouse" properties like the mouseloc so you get to script this for xample: set the mouseloc to (x,y) you can also do: put x & comma & y into apoint set the mouseloc to apoint Simulat