Putting two groups onto the clipboard

Mike Bonner bonnmike at gmail.com
Tue Jun 11 20:17:44 EDT 2013


Yeah, as mark said, you can do the snapshot thing.  If you want to just get
the text you'd have to loop through the fields in each group, grab the text
and assemble it however you need it in a variable, then put it into the
clipboarddata["text"] or .. well something like that.


On Tue, Jun 11, 2013 at 6:12 PM, Mark Schonewille <
m.schonewille at economy-x-talk.com> wrote:

> Hi Charles,
>
> I wonder what you have tried to far and why it didn't work?
>
> One solution is
>
> on mouseUp
>    export snapshot from grp 1 to myPict as PNG
>    set the clipboarddata["image"] to myPict
> end mouseUp
>
> but because this doesn't always give nice results, you might try
>
> on mouseUp
>    export snapshot from rect (the rect of grp 1) of this cd \
>      to myPict as PNG
>    set the clipboarddata["image"] to myPict
> end mouseUp
>
> --
> Best regards,
>
> Mark Schonewille
>
> Economy-x-Talk Consulting and Software Engineering
> Homepage: http://economy-x-talk.com
> Twitter: http://twitter.com/**xtalkprogrammer<http://twitter.com/xtalkprogrammer>
> KvK: 50277553
>
> Use Color Converter to convert CMYK, RGB, RAL, XYZ, H.Lab and other colour
> spaces. http://www.color-converter.com
>
> Buy my new book "Programming LiveCode for the Real Beginner"
> http://qery.us/3fi
>
> Fill out this survey please
> http://livecodebeginner.**economy-x-talk.com/survey/<http://livecodebeginner.economy-x-talk.com/survey/>
>
> On 6/11/2013 21:57, charles61 wrote:
>
>> I have some edit fields that have been grouped into two separate groups.
>> How
>> can I placed the two groups onto the clipboard in an app that so that they
>> can be pasted (from the app) to a word processing document?
>>
>>
>>
> ______________________________**_________________
> use-livecode mailing list
> use-livecode at lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/**mailman/listinfo/use-livecode<http://lists.runrev.com/mailman/listinfo/use-livecode>
>



More information about the use-livecode mailing list