I am using D2007 for a project that has a number of actions in an actionmanager that are then used in actiontoolbars and menus. I have also placed them in categories (eg. File, Tools, Input, etc...). I would like to enable/disable individual actions or a group of actions (eg. input) by iterating a list in actionmanager. The actions property in actionmanager returns TContainedAction which is not what is needed to complete my task. Does anyone know where the correct collection is that I need to iterate? Thanks in advance.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

This is because TContainedAction does not have Enabled property. Try this: (ActionManager1.Actions[i] as TAction).Enabled := False

link|improve this answer
Thank you very much. I will give that a try. – AlienHeadDiscs Feb 16 '10 at 0:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.