Subj : Access a property faster To : netscape.public.mozilla.jseng From : Egor.Senin Date : Wed Nov 17 2004 03:43 am Hi! Suppose I have the following call: ctx.evaluateString(myScriptable, "properyName", "JustPropertyAccess", 1, null); It just reads a property named "propertyName" starting from myScriptable. As I understand first "propertyName" script is compiled into script-class and then is executed. Is there any other way to retrive property without a script-class compilation but with all required traverses of prototype chain and parent scopes, something like ctx.getProperty(myScriptable, "propertyName"); Thanks in advance, Egor. .