Is it possible to use the "_" underscore prefix for your own MovieClip names? (AS2)
i.e. Can you name a created/attached MovieClip "_feature" or "_bug" ?
Typically this is reserved for internal properties like _x or _visible.
|
|
Is it possible to use the "_" underscore prefix for your own MovieClip names? (AS2) i.e. Can you name a created/attached MovieClip "_feature" or "_bug" ? Typically this is reserved for internal properties like
|
||
|
|
|
|
The "_" prefix has no technical significance - you can use it your own names for MovieClips, text fields, or any other variable or method you like. As a convention, it used to be common for the names of "built in" properties (like There also used to be a fairly widespread convention to prepend |
||
|
|
|
|
Yes this is fine. Not really sure you should be doing it but if you have a case for it it won't error out. I tend to reserve _ to prefix private members of a class. |
||||||
|
|
|
Yes it is possible to use MovieClip names like _myclip, you can reference it statically |
||||||||
|
|
|
It is fine, but proper as3 practice is to use the "" for only internal, private/protected variables, and then write getters and setters without the "". eg:
A little verbose, but it makes for a nice API. |
||
|
|