--- In [email protected], "revelonshift" <[EMAIL PROTECTED]> wrote:
> Unless in Adobe plugin is required to use internal JS engine, should > be used browser's, right? But it is not always true, and I noticed this: > In my neverending race for performance I discovered that calling > setTimeout/setInterval function with some parameters results in > calling eval() internally what means some slowdown, of course. > In pure MSIE and HTML there are acceptable both strings and literals > as first argument to both setTimeout or setInterval functions. But it > seems to be not working in SVG in use (ASV). Do you know why? And > could tell me anyone if sending as first parameter string with > function name "foe()" results also in eval()? Thx for tips, setTimeout and setInterval are not implemented by the JavaScript engine (or JScript engine). These are functions the host environment (e.g. the browser or the SVG user agent) provides/exposes to script. If you have script in an SVG document rendered by the Adobe SVG viewer and the script uses setTimeout or setInterval then it uses the implementation the Adobe SVG viewer exposes to script. If you have script in a HTML document rendered in IE and it uses setTimeout or setInterval then it uses the implementation that IE exposes to script. ----- To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership" ---- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/svg-developers/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/svg-developers/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

