2023-03-19 06:35 AM - edited 2023-03-19 06:35 AM
dim WallskinThk[4]
WALL_SKINS_NUMBER = 4
i use WallskinThk[4]
Sometimes the error message doesn't come out, then it comes up again.
Saving is possible, but it doesn't feel good.
Solved! Go to Solution.
2023-03-19 04:30 PM
The array is defined by the number of skins in the wall. So if at any time it's related to a wall with less than 4 skins you will get this error
2023-03-19 05:48 PM
So how should I set it up?
2023-03-20 12:19 AM
Assuming you always want the last skin,
WallSkinThk[WALL_SKINS_NUMBER]
Seeing the actual code would make it much easier to help.
2023-03-20 05:23 AM
thank you so much