[Fwd: Re: clipboardData imageSource]

2005-08-19 Thread Chipp Walters
Yep, Yours won't copy the image to the clipboard for pasting into another (different) program. best, Chipp Brian Yennie wrote: Chipp, Any reason why this: on copyToClip pImage choose select tool drag from topleft of image pImage to botright of image pImage copy choose browse tool

Re: [Fwd: Re: clipboardData imageSource]

2005-08-19 Thread Brian Yennie
Good reason =P! Is there a good reason why using the select command has to be simulated by dragging the select tool in order to make a copy? Wouldn't this fail for anything offscreen, invisible, or layered? - Brian Yep, Yours won't copy the image to the clipboard for pasting into another

Re: clipboardData imageSource

2005-08-19 Thread Chipp Walters
Hi Kathy, So, you are trying to capture images from within a field? The routine I showed you only captures from a named image. So, if you had an image on your card named fred then: create a button named Copy Image Fred to Clipboard on mouseUp copyToClip fred end mouseUp on copyToClip

Re: [Fwd: Re: clipboardData imageSource]

2005-08-19 Thread Chipp Walters
=P! back atcha!!! Yes, I believe it's because you have to be in 'image edit' mode to really copy it, and the only way to do that is with dragging the select tool. best, Chipp Brian Yennie wrote: Good reason =P! Is there a good reason why using the select command has to be simulated by

clipboardData imageSource

2005-08-18 Thread Kathy Jaqua
Hi y'all I am trying to place an imageSource in the clipboard. I have a number of imageSources lined up in a field. I want to place 1 clicked-on imageSource into the clipboard. The following is not working. Help? local tImageSourceCopy put the clickCharChunk into tImageSourceCopy set the

Re: clipboardData imageSource

2005-08-18 Thread Chipp Walters
Hi Kathy, Here's the fix... http://lists.runrev.com/pipermail/metacard/2003-March/004340.html -Chipp Kathy Jaqua wrote: Hi y'all I am trying to place an imageSource in the clipboard. I have a number of imageSources lined up in a field. I want to place 1 clicked-on imageSource into the

Re: clipboardData imageSource

2005-08-18 Thread Brian Yennie
Chipp, Any reason why this: on copyToClip pImage choose select tool drag from topleft of image pImage to botright of image pImage copy choose browse tool end copyToClip can't be just: on copyToClip pImage select image pImage copy choose browse tool end copyToClip Hi Kathy,

clipboardData imageSource

2005-08-18 Thread Kathy Jaqua
Hi Chipp Thanks... I changed the script to the following and got an error saying 'no such object'. I might add that I am clicking on 1 of over 300 imageSources of verying sizes in a field. Any other Ideas? on mouseDoubleDown local tIndex if the mouseCharChunk is empty then exit