jayarjo
jayarjo

Reputation: 16716

How do I include external plain .as file in pure actionscript project (packages/classes)?

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

Answers (1)

Chunky Chunk
Chunky Chunk

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

Related Questions