Question
Use of wildcard(*) in import statement
I am a bit new in Actionscript 3.0 and I love to learn it.
I saw the following two import statements in an actionscript 3.0 code.
import flash.display.MovieClip;
import flash.display.SimpleButton;
In this case, can I use just juse * sign as in import.flash.display.*; ???
Is this change would cause any problem?
Sami