Hi,
I am attempting to convert an app to use modules but I am seeing
strange behavior. For example, say I have a constant that I refer to
as (see Constants class below):
Constants.something
in my code. You would expect it to resolve to the string "someThing".
Unfortunately, after being loaded as a module, Constants.something is
undefined, not "someThing"!! Is there something magic about static
constants when they are used in modules? Has anyone ever seen this
issue?
Jim
---------------
package blah{
public class Constants
{
public static const something:String = "someThing";
}
}