If something is visible, does calling
movieclipname.visible = true;
each frame do anything performance wise?
If something is visible, does calling
movieclipname.visible = true;
each frame do anything performance wise?
If the item is already visible, then setting it visible at each frame will not produce any performance. From what I know there is a check inside and if the component is already visible then the call is ignored. But you make extra calls for the compiler which in any case is leading to lower performance.
If there is a high number of such components where you keep setting visible to true... then it may lead to performance issues.