I’m editing actionscript with an external editor.
If I include these files with this code:
#include “as/init.as”
#include “as/xml_pre.as”
#include “as/funzioni.as”
#include “as/xml.as”
all works fine, but if I simply remove one line break like this:
#include “as/init.as”
#include “as/xml_pre.as”
#include “as/funzioni.as”
#include “as/xml.as”
I get this on my Output:
Gonzo:Users:antonio:Documents:PRJ:UNISI:MARVIN_CAMPUS:030616_redesign_agenda:as:funzioni.as: Line 1: ‘;’ expected
It’s not the first time I get something similar… for example I was trying to use a setRGB method in one of my external as but it does’nt work. The funny (!) thing is that the file doesn’t work even if I comment the code line with // […] or /* […] */. I just have to REMOVE the word “setRGB” from my file if I want to make it work!
Am I the only stupid guy with this kind of problem?