@Trevor Orr: Yes, I will get round to it soon enough, promise.

@Pete Duncanson: I have already written Intellisense for Visual Studio
for use with MooTools: http://code.google.com/p/mootoolsintellisense/.

On Jan 21, 7:24 pm, Pete Duncanson <pete.duncan...@googlemail.com>
wrote:
> This is way old now but still shows whats possible but with in Visual
> Studio:
>
> http://weblogs.asp.net/scottgu/archive/2007/04/24/javascript-intellis...
>
> Seems you can comment up your JS just as you would for .net apps. "Might" be
> possible to create a patch doc file from the existing docs just for VS?
>
>
>
> On Thu, Jan 21, 2010 at 3:55 PM, Trevor Orr <fract...@gmail.com> wrote:
> > So then sometime in the near future Aptana will have auto completion and
> > object property introspection for mootools?
>
> > On Thu, Jan 21, 2010 at 4:53 AM, fakedarren <darren.wadd...@gmail.com>wrote:
>
> >> 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 <vochin...@gmail.com> 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

Reply via email to