External AS files

Hi,

i have a lot of code, and simply to make it easier to read i have broken it down into lots of different .as files which i then load like this:

#include “chan1.as”
#include “chan2.as”
#include “chan3.as”

is this bad practice? or does it not matter at all?

Its actually good practise as long as it doesn’t interfere with readability. Just keep it so that if anybody else has to edit you code, it’s easy to understand.:slight_smile:

cool, thanks!

np:)