function Test() constructor {
self.three = 0;
self.four = 0;
return self.three + self.four;
}
var _show_message:Test;
_show_message.( It doesnt show three and four for the intellisense )
Why in any events of an Object, "_show_message." doesn't give me three and four in the intellisense?
It work in Scripts but not in Objects.
Is this a bug or am I using it incorrectly? If I do the same thing with a structure instead of a constructor, it works.
Thank you.
