Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
I need to define 20 CAT, of course I need to use a WHILE or REPEAT loop but can't find the right implementation.
(action_tile "CAT1" "(setq CAT1 $value)")
(action_tile "CAT2" "(setq CAT2 $value)")
I tried to implement it in this way but there are errors:
(setq catCounter 1)
(repeat 20
(setq catSet (strcat "CAT" (itoa catCounter)))
(action_tile catSet "(setq catSet $value)")
(setq catCounter (1+ catCounter)))
Thanks 😉
Solved! Go to Solution.