Solved
Forum Discussion
C-DP
3 years agoChannel Surfer
There are a few ways to do this but really removing/re-injecting the label is the primary way you would solve this.
There are some other hacks that involve setting the scale to [0,0] but that also requires you to populate the item spacing and update them as you do them.
Most times I would just make all the labels dynamically and remove them all on updates. I also would populate the item spacings as I do that.
cesarcarlos
3 years agoBinge Watcher
How would I remove the label programatically?
- C-DP3 years agoChannel Surfer
I tend to have a function something like this
function removeNode(node)
node.getParent().removeChild(node)
end function