Hi,
Do you know a method to change dynamically branch or variable substitution into a symbol ?
Thanks
[Edit BL 14:32] Looks like I dreamt that feature. Does not exist in v12. Sorry
If I am not mistaken, everywhere you can put a variable name in an animation, you can alternatively put the name of a text variable that contains the name of the variable you want to animate (aka indirection on a text variable). Along with a well chosen scope for the text variables you will need, you probably have the solution.
If you like Nk's way of life, go for VBA, and there is probably a way to change the branch property of your symbol on the mimic open event.
Good luck, the scripts behind may not be funny 😉
If I am not mistaken, everywhere you can put a variable name in an animation, you can alternatively put the name of a text variable that contains the name of the variable you want to animate (aka indirection on a text variable).
I think that's wrong Benoit...
[Edit BL 14:32] Looks like I dreamt that feature. Does not exist in v12. Sorry
If you like Nk's way of life, go for VBA, and there is probably a way to change the branch property of your symbol on the mimic open event.
Good luck, the scripts behind may not be funny 😉
NK's way to run on Mimic open
Sub ChangeBranchForSymbol()
Dim g As Graphic
For Each g In Me.Graphics
If TypeOf g Is Symbol Then
g.LocalBranch = "myNewBranch"
End If
Next
End Sub
Hi Anthony,
What is the need ?
BR


