The -> operator (for retrieval) corresponds to the getq() function, which means that the argument is implicitly quoted. So the property name is not evaluated if you do it this way - it would try to retrieve a property called "x". Instead use get(dpl1 x) which does exactly what you want. Regards, Andrew.
↧