So I’ve gotten the XML code hint installer to work for functions of a custom class like so:
<folder VERSION="CS3" id="com.flexgraphix.util" index="true" name="com.flexgraphix.util" tiptext="Contains info for com.flexgraphix.util package">
<folder VERSION="CS3" id="[com.flexgraphix.util.MultiLoader]" name="MultiLoader" tiptext="MultiLoader">
<folder VERSION="CS3" id="Methods" name="Methods" tiptext="MultiLoader methods">
<string
object="[com.flexgraphix.util.MultiLoader]"
text=".addClip(% URL:String, Target:MovieClip, [Handlers:Object] %)"
type="procedure"
version="CS3"
name="addClip"
tiptext="String: URL of clip to be added"
codehint="true" />
</folder>
</folder>
</folder>
and if I do some_object:myClass = new myClass(), i successfully get
some_object.||CODE HINTING LIST INCLUDING addClip AND ITS PARAMS!
The thing is, I want a code hint for a constructor so that I get this:
some_object:myClass = new myClass(|| CODE HINTING FOR CONSTRUCTOR WITH PARAMS
All the examples I find are just what I have above, though. Anyone gotten this to work before? I’m assuming it has something to do with adding the method outside the actual package object but I’m really just cracking back into OOP after a few years and all that is still a little raw syntax to me.