I have a namespace set up in;
com.teotiGraphix.core.teo_internal;
Copied the same thing Adobe is doing with mx_internal, which in my opinion is a great example of how programming languages can evolve positivly.
trying it here;
import com.teotiGraphix.core.teo_internal;
use namespace teo_internal;
public class WorkSpace extends Container
{
...
The above gives me errors on all the fields I have declared teo_internal. IE it can't find them(hidden).
but,
import com.teotiGraphix.core.teo_internal;
public class WorkSpace extends Container
{
use namespace teo_internal;
...
The above DOES work without errors. What am I not seeing ?
Peace, Mike
--
What goes up, does come down.
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
SPONSORED LINKS
| Web site design development | Computer software development | Software design and development |
| Macromedia flex | Software development best practice |
YAHOO! GROUPS LINKS
- Visit your group "flexcoders" on the web.
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

