[FMX] accessing Btn from diff. timelines

I have a button instance mc “mcBtn”,
inside this instance i have the actual Btn graphic symbol and AS layer.
inside the AS layer i have defined onRollover, onRelease, onRollOut methods.

if i rollOver/Out/Press Btn it works fine and Btn animates in some way.

I needed to access mcBtn from _parent timeline AS WELL, so i defined a method mcBtn.onPress [one which is not defined inside mcBtn yet], and inside onPress told mcBtn to animate some other content…

What happened is, that onPress works fine and after pressing Btn, requested content is animated, BUT all other methods defined inside mcBtn stopped working! [no animation when rollOvered, rollOut-ed:), onRelease-d]

Q: how to make all those methods work?

Any help apprecciated :slight_smile: