We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2021-07-12 06:20 PM - last edited on 2021-09-14 09:00 AM by Noemi Balogh
myDict.myArray[1] = 1 REMOVEKEY(myDict.myArray[1])but that does not seem to remove it.
2021-07-12 11:57 PM
dim arr[] arr[1] = 0.1 arr[2] = 0.2 arr[3] = 0.3 ! index of the item you want to delete todelete = 2 dim new_arr[] check = 0 for i = 1 to vardim1(arr)-1 if i = todelete then check = 1 new_arr = arr[i+check] next i arr = new_arr print arr !>>> will print: "0.1 0.3"
2021-07-13 06:24 AM