Enterprise Architect Developers,
Will you please consider adding the templates for actionscript 1.0, 2.0.
Both these languages, although especially AS 2.0, support OOP functionality.
There is quite a large, and rapidly growing, development community for the macromedia languages, which would broaden your potential customer base! Please see the following link, a survey "Flash Player Version Penetration".
http://www.macromedia.com/software/player_census/flashplayer/version_penetration.html . Those are some astonishing figures.
Just as a sample.. here is the code needed for a ParentTempClass and TempClass
////////////////////////////////////////////////////////////////////////////
//-- ParentTempClass Class ----------------------------------------------------------
function ParentTempClass(){
this.init();
}
ParentTempClass.prototype.init = function(){
}
////////////////////////////////////////////////////////////////////////////
//-- TempClass Class Extends ParentTempClass ----------------------------------------
function TempClass(){
this.init();
}
TempClass.prototype = new ParentTempClass();
TempClass.prototype.init = function(){
super.init();
}
__________________
Ryan Thomas
Provis Media Group, LLC
888.880.6682
910.401.1300 fax
www.provismedia.com