Change an image I set in layout

In everyone of my apps, in layout setting, I have the same image set in bottom right corner of footer. It is a logo image.

I now want to change the logo for each implementation and am looking for a way to reset the image in every app, without having to do one at a time.

Any suggestions?

Screen Shot 2022-07-25 at 4.08.33 PM

In the Image box put in: [imagePath]
as a session var
and then change it accordingly.

So, in each app I do this?

And if so, how do I change it easily at will?

Once you have changed the image to the [imagePath] all you have to do now is set that session var at Login, or on the first page they visit.
You hard code it:
[imagePath]=’./whatever/’;
If you have to change it… then all you have to do is change that one line of code.

You could also save the path in a table somewhere and do a Lookup to retrieve it… and you can then edit the path via database interface

Simple.
Overwrite the old logo image with the new logo image.
Use an identical name. And that’s that.

I add to Menu
[imagePath]=’./public_html/scriptcase9/devel/conf/sys/img/img/sc_restaurant.png/’;

hen added the image as follows to footer.Is what you propose? It s not finding the file

I could be wrong, but it seems as if the app does not store the image name, but some other identifier. When I change another image to the name I was using, the image displayed is still the old one

I even re-gen before running

You’re right. The app generates its own image name.
So you have to find it in the folder:
C:\Program Files (x86)\NetMake\V9_PHP7_3\wwwroot\scriptcase\app\NAME_OF_YOUR_APP_lib\img
When you find the name, you can continue.

Let’s say my image name was: backery_shop.jpg.
Scriptcase made name: grp__NM__ico__NM__backery_shop.jpg

Thanks I will try that

Did not try yet, but that explains a lot