Does anybody know what or if there is a difference in the following; (Talking about the Utility class placement)
----------------------------------------------------------
package com.teotigraphix.core
{
public class Component
{
public function Component()
{
}
}
class Utility
{
}
}
AND ....
----------------------------------------------------------
package com.teotigraphix.core
{
public class Component
{
public function Component()
{
}
}
}
class Utility
{
}
I noticed this changed in the change from alpha to beta. What is the difference, either way the compiler dosn't complain. I understand namespaces but, is this what would change for the last example? I have tried to look in the AS3 docs but, they are not finished yet ;-)
Peace, Mike
--
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.

