RE: Import as image as control. Where is it?

2015-04-08 Thread Ralph DiMola
Klaus,
I don't think I get it. 2 questions:

How is..
Set the filename of your image to the modified file on disk
Different from...
put url(binfile:  the filename of img Your image here“) into img Your 
image here“

This is for a mobile app. So even though the stack is carrying the weight of 
the imported image I still need to put the original imported image into the 
copy file pane of the standalone setting if I want change it and then return to 
the original image? 

Thanks!!

Ralph DiMola
IT Director
Evergreen Information Services
rdim...@evergreeninfo.net


-Original Message-
From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of 
Klaus major-k
Sent: Wednesday, April 08, 2015 1:59 PM
To: How to use LiveCode
Subject: Re: Import as image as control. Where is it?

Hi Ralph,

 Am 08.04.2015 um 19:52 schrieb Ralph DiMola rdim...@evergreeninfo.net:
 
 I have an image control that was created by Import image as control. 
 In some cases I want to change the image to one located on disk and 
 then back to the original. In the property inspector the filename is 
 empty. Where is the imported image and how do I reference it?

Import image as control“ will put a copy of the image file into your stack, so 
there is no reference to the file on disk anymore.

Do like this:
1. Set the filename of your image to the modified file on disk 2. Then later 
use the message box:
put url(binfile:  the filename of img Your image here“) into img Your 
image here“

 Ralph DiMola
 IT Director
 Evergreen Information Services
 rdim...@evergreeninfo.net

Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major-k.de


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Import as image as control. Where is it?

2015-04-08 Thread Ralph DiMola
I have an image control that was created by Import image as control. In
some cases I want to change the image to one located on disk and then back
to the original. In the property inspector the filename is empty. Where is
the imported image and how do I reference it?

Ralph DiMola
IT Director
Evergreen Information Services
rdim...@evergreeninfo.net


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Import as image as control. Where is it?

2015-04-08 Thread Klaus major-k
Hi Ralph,

 Am 08.04.2015 um 19:52 schrieb Ralph DiMola rdim...@evergreeninfo.net:
 
 I have an image control that was created by Import image as control. In
 some cases I want to change the image to one located on disk and then back
 to the original. In the property inspector the filename is empty. Where is
 the imported image and how do I reference it?

Import image as control“ will put a copy of the image file into your stack, 
so there is no reference to the file on disk anymore.

Do like this:
1. Set the filename of your image to the modified file on disk
2. Then later use the message box:
put url(binfile:  the filename of img Your image here“) into img Your 
image here“

 Ralph DiMola
 IT Director
 Evergreen Information Services
 rdim...@evergreeninfo.net

Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major-k.de


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Import as image as control. Where is it?

2015-04-08 Thread Klaus major-k
Hi Ralph,

 Am 08.04.2015 um 20:37 schrieb Ralph DiMola rdim...@evergreeninfo.net:
 
 Klaus,
 I don't think I get it. 2 questions:
 
 How is..
 Set the filename of your image to the modified file on disk

this will only reference the external image file.

 Different from...
 put url(binfile:  the filename of img Your image here“) into img Your 
 image here“

this will put a copy of that file on disk into the existing image object 
(again).
Just like „Import as control“ does.

 This is for a mobile app. So even though the stack is carrying the weight of 
 the imported image I still need to put the original imported image into the 
 copy file pane of the standalone setting if I want change it and then return 
 to the original image? 

No! 

Once the image has been „imported“, what: put url(„bifile: … into image XYZ 
does) you do not need the image file, 
since it is not referenced anymore.

Hope that helps! :-)

 Thanks!!
 
 Ralph DiMola

 Subject: Re: Import as image as control. Where is it?
 
 Hi Ralph,
 
 Am 08.04.2015 um 19:52 schrieb Ralph DiMola rdim...@evergreeninfo.net:
 
 I have an image control that was created by Import image as control. 
 In some cases I want to change the image to one located on disk and 
 then back to the original. In the property inspector the filename is 
 empty. Where is the imported image and how do I reference it?
 
 Import image as control“ will put a copy of the image file into your stack, 
 so there is no reference to the file on disk anymore.
 
 Do like this:
 1. Set the filename of your image to the modified file on disk 2. Then later 
 use the message box:
 put url(binfile:  the filename of img Your image here“) into img Your 
 image here“
 
 Ralph DiMola
 IT Director
 Evergreen Information Services
 rdim...@evergreeninfo.net

Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major-k.de


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Import as image as control. Where is it?

2015-04-08 Thread Mike Bonner
if the filename property is empty, store the text of the image to a
property or variable, pop in your new image, then to revert, set the text
of image whatever to the text you stored in the property.  If there IS a
filename set, and you want to do the flippy floppy, store the filename
instead, and set it back when you're done.

On Wed, Apr 8, 2015 at 1:47 PM, Klaus major-k kl...@major-k.de wrote:

 Hi Ralph,

  Am 08.04.2015 um 20:37 schrieb Ralph DiMola rdim...@evergreeninfo.net:
 
  Klaus,
  I don't think I get it. 2 questions:
 
  How is..
  Set the filename of your image to the modified file on disk

 this will only reference the external image file.

  Different from...
  put url(binfile:  the filename of img Your image here“) into img
 Your image here“

 this will put a copy of that file on disk into the existing image object
 (again).
 Just like „Import as control“ does.

  This is for a mobile app. So even though the stack is carrying the
 weight of the imported image I still need to put the original imported
 image into the copy file pane of the standalone setting if I want change it
 and then return to the original image?

 No!

 Once the image has been „imported“, what: put url(„bifile: … into image
 XYZ does) you do not need the image file,
 since it is not referenced anymore.

 Hope that helps! :-)

  Thanks!!
 
  Ralph DiMola

  Subject: Re: Import as image as control. Where is it?
 
  Hi Ralph,
 
  Am 08.04.2015 um 19:52 schrieb Ralph DiMola rdim...@evergreeninfo.net
 :
 
  I have an image control that was created by Import image as control.
  In some cases I want to change the image to one located on disk and
  then back to the original. In the property inspector the filename is
  empty. Where is the imported image and how do I reference it?
 
  Import image as control“ will put a copy of the image file into your
 stack, so there is no reference to the file on disk anymore.
 
  Do like this:
  1. Set the filename of your image to the modified file on disk 2. Then
 later use the message box:
  put url(binfile:  the filename of img Your image here“) into img
 Your image here“
 
  Ralph DiMola
  IT Director
  Evergreen Information Services
  rdim...@evergreeninfo.net

 Best

 Klaus

 --
 Klaus Major
 http://www.major-k.de
 kl...@major-k.de


 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode