Re: Making an Image

2006-11-02 Thread Dar Scott
On Nov 1, 2006, at 10:46 PM, J. Landman Gay wrote: put image 2 into image 1 This feels more xtalk-y to me. You are right. Well, we already know I'm not a real card head. I do have an excuse in that I was right in the middle of a script that set several properties for images and there

Re: Making an Image

2006-11-01 Thread J. Landman Gay
Bridger Maxwell wrote: woops, I wrote that last email before I read carefully. Please disregard that. On 11/1/06, Bridger Maxwell <[EMAIL PROTECTED]> wrote: Is there a more effective way, besides the imageData? Besides using "the text" (which I never use for images, it sounds too weird) yo

Re: Making an Image

2006-11-01 Thread Bridger Maxwell
woops, I wrote that last email before I read carefully. Please disregard that. On 11/1/06, Bridger Maxwell <[EMAIL PROTECTED]> wrote: Is there a more effective way, besides the imageData? On 11/1/06, Dar Scott <[EMAIL PROTECTED]> wrote: > > > On Nov 1, 2006, at 9:26 PM, Bridger Maxwell wrote:

Re: Making an Image

2006-11-01 Thread Bridger Maxwell
Is there a more effective way, besides the imageData? On 11/1/06, Dar Scott <[EMAIL PROTECTED]> wrote: On Nov 1, 2006, at 9:26 PM, Bridger Maxwell wrote: > How can I make one image look like another image? I set the > imageData of > img 2 to the imageData of img 1, but that got really weird

Re: Making an Image

2006-11-01 Thread Dar Scott
On Nov 1, 2006, at 9:26 PM, Bridger Maxwell wrote: How can I make one image look like another image? I set the imageData of img 2 to the imageData of img 1, but that got really weird. set the text of img 2 to the text of img 1 What other data makes up an image? the rectangle the im

Making an Image

2006-11-01 Thread Bridger Maxwell
Hey, How can I make one image look like another image? I set the imageData of img 2 to the imageData of img 1, but that got really weird. What other data makes up an image? TTFN Bridger ___ use-revolution mailing list use-revolution@lists.runrev

Re: Making an image draggable

2005-07-09 Thread Douglas Gilliland
Thanks to all - it's great to have this as a resource for learning transcript. The following script works great. on mouseDown grab me end mouseDown I will also try the others just to learn more about Revolution. Thanks again. Doug Gilliland Sarasota, Fl dodging the bullet with hurricane Dennis :>

Re: Making an image draggable

2005-07-09 Thread Derek Bump
Douglas Gilliland wrote: I know it must be easy but I cannot figure out the script to make an image of a metric ruler draggable so my students can drag it around the screen to measure items in a quiz stack I am writing. You could try the following... 1. Create a separate stack. 2. Place the

Re: Making an image draggable

2005-07-09 Thread Bob Hartley
You wrote: > > Tried several variations of the following script: on mousedown make > > image "ruler.jpg" draggable end mousedown > > -- Script of ruler image on mouseDown > grab me > end mouseDown > > Now this doesn't have any constraints, but it works very well... Or only dragable when the c

Re: Making an image draggable

2005-07-09 Thread Eric Chatonet
Hi Doug, Here is a script I use in all my plug-ins to make their window "draggable": local lAllowDrag -- local variable used by all handlers in the script - on mouseDown put the mouseH & comma & the mouseV into lAllowDrag end mouseDown ---

Re: Making an image draggable

2005-07-09 Thread Ken Ray
> Tried several variations of the following script: > on mousedown > make image "ruler.jpg" draggable > end mousedown -- Script of ruler image on mouseDown grab me end mouseDown Now this doesn't have any constraints, but it works very well... Ken Ray Sons of Thunder Software Email: [EMAIL PROT

Making an image draggable

2005-07-09 Thread Douglas Gilliland
I know it must be easy but I cannot figure out the script to make an image of a metric ruler draggable so my students can drag it around the screen to measure items in a quiz stack I am writing. Tried several variations of the following script: on mousedown make image "ruler.jpg" draggable end mous