2026-02-22 03:59 PM - edited 2026-02-22 04:02 PM
Is the default "Zone Name" list for the Zone Stamp editable? I'm not referring to the final "Personal" entry. Thanks.
2026-02-23 04:00 AM
yes. it's a Macro, I think. You may have to convert the lcf , make changes, and then re-convert the library to an lcf
2026-02-23 08:51 AM - edited 2026-02-23 08:55 AM
Refer to this recent post asking the same question:
Regarding the library container, I would advise not packing and repacking it as that will undo your changes when ever there is an update. I would extract the stamp object and it's macro to your local library, then rename the macro and relink it in the stamp.
Ling.
| AC22-29 AUS 3200 | Help Those Help You - Add a Signature |
| Self-taught, bend it till it breaks | Creating a Thread |
| Win11 | i9 10850K | 64GB | RX6600 | Win11 | R5 2600 | 16GB | GTX1660 |
2026-02-23
02:59 PM
- last edited on
2026-03-14
02:47 PM
by
Laszlo Nagy
Hi,
There's no need to make a copy of the macro!
You can make the modification directly in a copy of the Stamp object that you save in your personal library.
Just add these few lines before the macro call, like this.
And you simply need to add the stRoomNames[zn] lines as many times as necessary.
dim stRoomNames[]
zn = 1
stRoomNames[zn] = "Storeroom" : zn = zn+1
stRoomNames[zn] = "Residence" : zn = zn+1
stRoomNames[zn] = "Lift": zn = zn+1
stRoomNames[zn] = "Bathroom" : zn = zn+1
stRoomNames[zn] = "Meeting" : zn = zn+1
stRoomNames[zn] = "Restaurant" : zn = zn+1
stRoomNames[zn] = "Office" : zn = zn+1
values "ROOM_NAME" stRoomNames, custom
2026-02-23 08:17 PM
is there a reason you don't just have a handful of zone stamp attributes, then create favorites for each zone and info set?
...
seems like a more complex solution than you need for localized data management.