I would like to animate(Move) a node from a different ux file.
So the question now is how can I access this node? I thought you just make the node global with ux:Global="…".
But in my case if I declare the node global it will disappear.
Is this the right approach? If yes, why is the node not visible then anymore?
Here is the code:
<App>
<Outer />
<PageControl>
<A />
<B />
</PageControl>
</App>
A.ux
<Panel ux:Class="A">
<Text Value="This is A" />
</Panel>
B.ux
<Panel ux:Class="B">
<Text Value="This is B" />
<ActivatingAnimation>
<Move Target="MyCircle" X="50" />
</ActivatingAnimation>
</Panel>
Outer.ux
<Panel ux:Class="Outer">
<Circle ux:Global="MyCircle" Height="50" Width="50" Color="Red" />
</Panel>
Here are the files: