I'm trying to make use of the new Flash Media Server Interactive Edition. Brought out recently by Adobe.
I've written quite a few classes to make a game in a nice and object oriented way. All of them in Actionscript 2 style:
class myClass{
private var _aVar:String;
public get aVar():String{
return this._aVar;
}
}
Now when I'm in my 'main.asc' (the file actually executed by FMS. I can't find a way to import these classes.
when using:
import package.Class;
The server can't resolve the package name.
When using:
load("dir/file.asc");
The server doesn't allow me to use the 'class' keyword.
Does anyone have any experience using FMS in this way? A small hint would help me on my way :-)
I find it hard to believe Adobe didn't implement AS2 in their server...
B
