Re: background images

2021-01-19 Thread Jim At Consensus via use-livecode
I usually use the preOpenCard approach with background images but have occasionally wanted to have a set of images on individual cards that do not change dynamically over time. In that case I’ve used an image that was NOT part of the background group. To create a new card (with a new image), I u

Re: background images

2021-01-19 Thread Richmond via use-livecode
Just import an image for a card and set its level to 1: no 'nonsense' about background images at all. Richmond. On 19.01.21 2:44, Tim Selander via use-livecode wrote: Right, which is why this is so confusing. I do not want a 'shared text' image. Each card should keep it's own unique image, but

Re: background images

2021-01-18 Thread J. Landman Gay via use-livecode
That's what I do too. Each card has a custom property containing the name of the image that loads in preopencard. You may be remembering shared fields which can contain different text per card even if they're part of a group. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive So

Re: background images

2021-01-18 Thread Tim Selander via use-livecode
Thanks, Peter. I added a little opencard script to load the image for each card, which is fine and solves the immediate problem. But I was quite certain that in the past, I had a stack, with an image control in a background that would keep a unique image for each card without scripting. I must

Re: background images

2021-01-18 Thread Peter Bogdanoff via use-livecode
That’s where a image that is not part of the group is useful; it’s only on that card. Otherwise you would have to set the background image dynamically on preOpenCard based on stored data about that image/card combination. Peter Bogdanoff > On Jan 18, 2021, at 4:44 PM, Tim Selander via use-livec

Re: background images

2021-01-18 Thread Tim Selander via use-livecode
Right, which is why this is so confusing. I do not want a 'shared text' image. Each card should keep it's own unique image, but when I change the image on one card, all the cards end up with the same image. That is what I want to fix. Tim Selander On 2021.01.19 3:21, Klaus major-k via use-liv

Re: background images

2021-01-18 Thread Klaus major-k via use-livecode
Hi Tim, > Am 18.01.2021 um 19:12 schrieb Tim Selander via use-livecode > : > > This is driving me nuts. > > Have a 'background' group with an image. If I change the filename of an image > on one card, ALL the cards change to that image. Yet a field in the same > group properly will take uniqu