How do i know if keyframe is blank or not with actionscript 3
Thanks for help.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you mean a frame in a layer in Flash IDE, the one with white circle, the answer is
you can't. Layers in AS3 are not saved. They are merely converted to depth order.What you can find out is if
this particular frame doesn't contain any children(when all layers are combined) as it was already mentioned usingnumChildrenproperty. If you have any shapes, bitmaps or movieclips on stage they all will be listed as children.But you also might have something drawn in your sprite’s
graphicsobject which makes it non-empty in some way. If you want to check that you have to draw it in aBitmapDataand examine its content.