I try to create a Whislist of all feature i would like in FMS 3 :)
If you want complete my list answer this message :)
1 - Use a Javascript 1.7 or 1.8 core Engine with E4X, Generator,
Iterator, etc.
2 - class mapping with no anonymous class
for the moment we can use class mapping only with anonyme function, i
would like register a class with a namespace :
{{{
namespace = {} ;
namespace.myConstructor = function()
{
}
application.registerClass( "myConstructor" ,
namespace.myConstructor ) ;
}}}
For the moment FMS send the error message :
Sending error message: Error registering class: line name mismatch
(myConstructor, anonymous): name mismatch (myConstructor,
anonymous).
3 - class mapping with complexe ids to register the class :
{{{
function MyConstructor()
{
}
application.registerClass( "test.myConstructor" , MyConstructor ) ;
}}}
For the moment FMS send the error message :
Sending error message: Error registering class: line name mismatch
(test.myConstructor, MyConstructor): name mismatch
(test.myConstructor, MyConstructor).
4 - Server side byteArray, int, uint; Dictionnary... same type in AS3.
5 - FMS console with debug level mode based on the mx.logging package
and AIR external console.
6 - Server side SQLite DB api (like AIR API)
7 - mail() method to send mail server side.
EKA+ :)