I have been successfully animating many dynamic components with no issues and have never had an issue since they were all at the parent or child level.
I have since designed a component that has multiple levels.
Parent = Main component that houses all the components
Child1 = Component
Child2 = Component
Child3 = Component
....
Child8 = Component
I can get all those to animate without issue.
Now I have a component inside Child2 (Grandchild) that I want to be the only component that can start the animation so I have this
Parent = Main component that houses all the components
Child1 = Component
Child2 = Component
-----Grandchild = Component (has onclick event) animatecustom(Child2!Animate,5,0,0,1,53)
Child3 = Component
....
Child8 = Component
Everything works fine except now I want to rotate the Parent 90 degrees as well. When I move the custom variable animate to the parent level how do I call it. I tried Parent!Animate which doesn't work and I can't see it in the Dynamic Attributes since its up another level!!!
Also, I have never worked with pauses or sequences, but if someone can shed some light on if I want the same onclick event to animate 1 component and then after the first animation completes animate another component I would appreciate help on that as well. I don't want to have to click it 2x, I just want one to follow the other with a single click.
I do know I can bring the onclick component up one level and make it work. However, I would think I could do it somehow that I am not aware of. I just don't see the point of having every component on the same level andnot be able to have other components inside of it to call the onclick event.
Thanks for any help,
Don