Hi!
Is it possible for a zimlet to support multiple resources like that:
<resource>handlers/*.xml</resource>
and access the list using
Code:
var res = new Array();
res = this.getResources("handlers/*.xml");
for (handler in res) {
var myhandler = this.getResource(handler);
alert(myhandler);
} Would then alert "handlers/handler1.xml", "handlers/handler2.xml", etc.
Kind regards
Dennis