Add Symbol in Scene with Actionscript
Hi,
I want to add symbol in scene use actionscript. How can i do it? Can you help me?
Thanks.
Hi,
I want to add symbol in scene use actionscript. How can i do it? Can you help me?
Thanks.
you can use addChild() to add objects that you create in the ide and were once on stage (so they have an instance name) or that you created with actionscript.
if it's a library symbol, you'll need to assign a linkage id and create an instance using that id (using the new constructor) and then apply addChild() to the instance:
var mc:MC = new MC(); // where you have a symbol in the library with linkage id = MC
addChild(mc);
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.