Re: moveable

2003-04-04 Thread Paul Schulman
I'd like to thank everyone for their suggestions. It'll take me a while to sort through them. Thanks Paul [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL

Re: moveable

2003-04-03 Thread Howdy-Tzi
On Thursday, Apr 3, 2003, at 17:24 America/Chicago, Phil Gross wrote: This behavior is fine, but just for the sake of completeness, you might also take a look at the constraint sprite property. It allows you keep the movement of a sprite within the boundaries of another (possibly invisible) spr

Re: moveable

2003-04-03 Thread Buzz Kettles
= the mouseH - spr.locH repeat while the stillDown newOffset = (the mouseH - spr.locH) if newOffset <> initOffsetH then spr.locH = the mouseH - initOffsetH updateStage end if end repeat end & be sure to turn off 'the moveable of sprite' using the PI (pro

Re: moveable

2003-04-03 Thread Phil Gross
, Apr 3, 2003, at 17:06 America/Chicago, Paul Schulman wrote: I want to use the mouse to move a sprite horizontally--it is important that it not move vertically as well I've done this: sprite(3). moveable = TRUE Don't do that. Here's a behavior: PROPERTY pbDragging on

Re: moveable

2003-04-03 Thread Fabrice Closier
on mousedown sprite(me.spriteNum).locH = the mouseH end On Thursday, April 3, 2003, at 11:20 PM, Howdy-Tzi wrote: if pbDragging = TRUE then sprite(me.spriteNum).locH = the mouseH end if [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/li

Re: moveable

2003-04-03 Thread Howdy-Tzi
On Thursday, Apr 3, 2003, at 17:06 America/Chicago, Paul Schulman wrote: I want to use the mouse to move a sprite horizontally--it is important that it not move vertically as well I've done this: sprite(3). moveable = TRUE Don't do that. Here's a behavior: PROPERTY p

Re: moveable

2003-04-03 Thread Alex
Hi, to move a sprite only in the horizontal direction u can try this on mouseUp me sprite(3).locH = sprite(3).locH +10 end > I want to use the mouse to move a sprite horizontally--it is important that > it not move vertically as well > > I've done this: > > > s

moveable

2003-04-03 Thread Paul Schulman
I want to use the mouse to move a sprite horizontally--it is important that it not move vertically as well I've done this: sprite(3). moveable = TRUE But that moves in all directions Thanks Paul Schulman [To remove yourself from this list, or to change to digest mode, go to

Re: Swapping between a Movie set at full screen, to amovie which acts like a moveable application...

2002-06-11 Thread Howdy-Tzi
At 16:31 +0100 06/11/2002, Asha Hurree wrote: >I need to find a way to swap between a movie set at full screen, to a movie >which acts like a moveable application, rather like the default system CD >players found on both PCs and Macs. By the way it has to be cross platform. Do it via

Swapping between a Movie set at full screen, to a movie whichacts like a moveable application...

2002-06-11 Thread Asha Hurree
e also set at full screen. The problem I'm having is (once the user has clicked on the "CD player" option) making the CD player appear as a small moveable window with the user's desktop still present, but once quit is pressed to take the user back to the main menu at full scree