Subj : Class properties To : netscape.public.mozilla.jseng From : Niklas Lindquist Date : Thu Oct 28 2004 02:47 pm Hi all Is it at all possible to create class properties (as oppose to instance properties). What I would like to achieve is something similar to C enums to use as parameters for certain functions. Example: var s = new Stream; s.open(Stream.modeOut); Today I can fix this by doing s.open(s.modeOut); but it's not as appealing. regards /Niklas .