import classes by * opertator or importing exact class name from Library is better performace In FLa
Posted
by coderex
on Stack Overflow
See other posts from Stack Overflow
or by coderex
Published on 2010-04-23T07:37:15Z
Indexed on
2010/04/23
8:03 UTC
Read the original article
Hit count: 339
hi
// method I
import flash.display.*;
or
// method II
import flash.display.Sprite;
import flash.display.MovieClip;
Is method I or II is good in performance.
© Stack Overflow or respective owner