With regards to Aptana support - we were approached by their team and asked to provide the necessary files to get autocompletion etc for MooTools. Long story short, it's a very long and arduous task, and I am waiting until MooTools 1.3 is out (which is not that far away) and once that is done or close it is worth me spending the time doing. Unfortunately it's not high enough priority for me to spend time on at the moment.
Cheers Darren On Jan 21, 8:22 am, Ren Yushiro <[email protected]> wrote: > /** > * @class shape > */ > var shape = new Class({ > getName : function() { > } > > }); > > /** > * @class polygon > * @extends shape > */ > var polygon = new Class({ > Extends : shape, > getWidth : function() { > }, > > getHeight : function() { > } > > }); > > /** > * @type polygon > */ > var myPol = new polygon(); > > /** > * @type shape > */ > var someShape = new shape(); > > I need something that can help me know what functions inside the > variable myPol. For example, when I type myPol. the IDE will show a > dropdown with 3 options: getWidth, getHeight, getName
