How to copy an image from an image object to clipboard
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
How to copy an image from an image object to clipboard
Hi everybody
I am fighting with Livecode to find a way to copy an image from an image object (which is filled by a user action through a popup menu) to the clipboard
Many thanks for your help
A MEGUIRA
I am fighting with Livecode to find a way to copy an image from an image object (which is filled by a user action through a popup menu) to the clipboard
Many thanks for your help
A MEGUIRA
Re: How to copy an image from an image object to clipboard
copy image "imageName"
Re: How to copy an image from an image object to clipboard
Thank you Magice
I have tried it already, may be may pathname is wrong
I have tried it already, may be may pathname is wrong
Re: How to copy an image from an image object to clipboard
Hi ameguira,
I tried magice's way and it work for me (OSX)
What didn't work and which error you got ?
Kind regards
Jean-Marc
I tried magice's way and it work for me (OSX)
What didn't work and which error you got ?
Kind regards
Jean-Marc
https://alternatic.ch
Re: How to copy an image from an image object to clipboard
Hi Jean Marc
I am using Livecode opensource on windows
This code works
lock screen
import snapshot from image "Imagefield"
set the clipboarddata["image"] to the last image
hide last image
I do not understand why copy image "Imagefield" doesn't work for me
All the best
I am using Livecode opensource on windows
This code works
lock screen
import snapshot from image "Imagefield"
set the clipboarddata["image"] to the last image
hide last image
I do not understand why copy image "Imagefield" doesn't work for me
All the best
Re: How to copy an image from an image object to clipboard
hi ameguira,
copy image work fine
I hope someone will clearing this point soon
All the best
Jean-marc
I tried also with LiveCode community edition v. 6.0.1-rc-1|Build 1512 andI do not understand why copy image "Imagefield" doesn't work for me
copy image work fine
I hope someone will clearing this point soon
All the best
Jean-marc
https://alternatic.ch
Re: How to copy an image from an image object to clipboard
Are you trying to use the path name instead of the image object name? If so, that is the problem. If the image is showing, the the path name is correct.ameguira wrote:Thank you Magice
I have tried it already, may be may pathname is wrong