I'm not sure if you're still interested in an answer to this, but I've
run into this on an intranet project I was working.  I'm working on a
slightly stale version of simile, but for me it was related to "this"
not eval'ing correctly in IE.  You can get around it by not passing
"this" and passing something else instead.  Alternatively I made this
change to the simile source that I point my app to

lens.js around line 501:

Youll find something like this:
eval("(function() {"+onshow+})").call(node);

wrap that in a try/catch, and do this in the catch:
var modOnshow = onshow.replace("this","node");
eval(modOnshow);

There's probably a much more correct way of doing it.  This solution
is sketchy in that you better not have the word "this" in anything you
put in onshow other than the variable "this" but for my purposes it
worked.

Take care




On Aug 28, 2:39 am, kmd <[EMAIL PROTECTED]> wrote:
> anyone ? getting "object Error" dialog boxes pop up on IE while using
> ex:onshow ?
> someone has got to be using the ex:onshow besides me ! :)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to