Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
it says i cant make an choice list ??? is it because its an entity list or am i using this wrong?
reset localvars
if not entity_exists('featureset',"") {
message info "No Feature-set in session"
return
}
//Filters for only Drilling Programs
entity list $temp = filter(folder("toolpath\"),'strategy == "drill"')
//dummy list
entity list $Selected = {}
foreach i in $temp {
int f = add_last($Selected, entity('toolpath',''))
}
string $finalSelection = input choice $Selected ""
foreach i in $Selected {
ACTIVATE TOOLPATH $i
}
Solved! Go to Solution.