Book a Demo

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - rathomas@provismed

Pages: [1]
1
Suggestions and Requests / Re: Request: Actionscript Support
« on: September 24, 2004, 09:10:51 am »
Thanks Simon,

We are looking forward to that added functionality!


2
Suggestions and Requests / Re: Request: Actionscript Support
« on: September 17, 2004, 09:20:44 am »
Simon,

Absolutely!  I will give a try..  One question though, are the template used for both code generation and reverse engineering?  

Thanks,

Ryan Thomas

3
Suggestions and Requests / Re: Request: Actionscript Support
« on: September 16, 2004, 03:49:40 pm »
Simon,

Thanks for your reply.  I do not understand why you are saying the information that I provided is "not really relevant".   The data in the above link is a study that was conducted on the “penetration of various online media types among a representative Internet population”.  Keep in mind that those ubiquity percentages are for browsers running virtually all OS's (win, unix, mac, etc.) and many different types PDAs as well.  In fact, the number of eligible end users for flash applications has far exceeded the user base of the windows operating system.  Are you trying to say this number is not really relevant to the numbers of potential developers that could potentially buy your software?  

4
Suggestions and Requests / Request: Actionscript Support
« on: September 13, 2004, 12:38:17 pm »
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  

5
General Board / Re: errors actionscript
« on: January 24, 2006, 08:28:08 pm »
The Actioncript template should produce a valid return Type.  EA should also default to a valid return type for your default language.  The problem is that EA defaults to 'void' where AS2.0 needs 'Void' with a capitol

We are getting added charachters in the source files like this '?'.  Somtimes you will get somthing like' ~`?' It is always is written at the beginning of the file.  So, when you generate code then sychronize, EA will throw an error until you go and pull the '?' out of each source file.  Any Ideas?  We are using the windows version.

?///////////////////////////////////////////////////////////
//  ConnectLocation.as
//  Macromedia ActionScript Implementation of the Class ConnectLocation
//  Generated by Enterprise Architect
//  Created on:      20-Jan-2006 3:41:48 PM

Thanks for our help,

Ryan Thomas


6
General Board / Re: errors actionscript
« on: January 16, 2006, 09:56:01 am »
We just paid the to update to version 6.0 - build 781 and are experiencing the same issues with regards to Actionscript code generation as other posts:

- 'Void' should be corrected in the default templates shipped.  Most people writing code already don’t have the time to finish their own apps, let along having to rewrite the templates for their IDE for basic functionality to work correctly.  This is not BETA software.

- When using the export Dialog, the default path is not saved.

- When you select multiple class elements, you cannot export them.. the option is not available in the context menu.

- We are getting a '?' at the beginning of the file any time the code has been exported to actionscript

- Also the exporter is adding unsupported options into the class declaration like 'class Logical Model.bike'.  



Pages: [1]