--- In [email protected], "brucexs" <bswit...@...> wrote:
> In case you ever decide to implement pproshutdown processing in a plugin you
> also manual load elsewhere, I did implement a plugin load. The last few
> entries of pproservices are now (wrapped in yahoo!)
> Load plugin loads the plugin (if not already loaded) and returns its hmodule.
> If you r need to unload, use Do("xxx.unload")
> Again, as per previous notes, I would not bother with this unless someone
> reports issues in one of your plugins related to shutdown and you need
> pproshutdown processing in this plugin which you manually load from one of
> your other plugins.
ok, thanks.
> BTW, if you are looking at enumerators, did you ever consider implementing
> foreach for them?
No, I hadn't. That would require control over syntax I ain't got
myEnum = com.get_enumerator(some_obj_handle)
for each(obj in myEnum)
obj.blah
obj.splat
....
endfor
Or had you something else in mind?