-
Effects categories
Hi All !
I’m working on a basic script to create a user effects toolbar which would allow the user to quickly add the effects he uses the most on After Effects.
Of course this have been done and scripts exist such as Ft_Toolbar but this is part of a training exercise for me.Basically I want to allow the user to choose the effect he wants by choosing the effect category first. I’ve thought of two solutions:
– using two dropdownlist, one to choose the effect category and the other one to choose the effect in that category (This is the way Ft_Toolbar works)
– using a treeview and display categories as nodes and effects as items of these nodes.
Thanks to the scripting guide, I managed to get the list of effects using:
app.effects[i]and the effect category using:app.effects[i].categoryBut now I’d like to access the categories without having to specify the effect first. Is there an expression I missed or any other way to get a list of all effects categories and then access to their effects ?