Code hints for own written classes?

I was wondering if there is someway to get code-hints from your own classes. For example MyClass:


class MyClass 
	var id:Number;
	var word:String;
	
	function MyClass(thisId:Number, thisWord:String):Void{
		id = thisId;
		word = thisWord;
	}
	
	function setWord(thisWord:String):Void{
		word = thisWord();
	}
}

When working in any AS edit window I would much like to have code hints for this class. Like this:


foo = new MyClass(1,"name");
foo.[codehint here]

Does anyone know if this is possible? I know it is possible to edit the codehint XML, but that is not quite what i’m looking for…