Reputation: 16716
I'm building Action Script project in Flash Builder. No flex, no third party libs. Pure actionscript - hierarchy of packages and classes. How do I include a plain external .as file, which is not a package or class, but just a set of statements?
Upvotes: 0
Views: 301
Reputation: 17217
i believe you'll have to package it as a class in order to call its elements. that doesn't mean you have to include a constructor, though. you can have a class that simply contains static constants, variables and functions.
Upvotes: 1