Skip to content


Status: Fixing the compiler problem

I’ve located part of the problem. If I remove the reference to VMLRenderer.js, it suddenly starts working again. But how do I include it and get it to work still. I’m investigating.

EDIT 1:

Build 117 fixes the problem completely. it was simply because of mis-arrangement of the files. It was originally.

...
  <script type="text/javascript" src="../js/drawing/onlypaths.js"></script>
  <script type="text/javascript" src="../js/drawing/wrapper.js"></script> 
  <script type="text/javascript" src="../js/drawing/svgrenderer.js"></script>
  <script type="text/javascript" src="../js/drawing/vmlrenderer.js"></script>
...

for some reason, this messed up the compilier. I changed it to.

  <script type="text/javascript" src="../js/drawing/onlypaths.js"></script>
  <script type="text/javascript" src="../js/drawing/svgrenderer.js"></script>
  <script type="text/javascript" src="../js/drawing/vmlrenderer.js"></script>
  <script type="text/javascript" src="../js/drawing/wrapper.js"></script>

and now it works fine :)

Posted in Ajax Animator, OnlyPaths.

Tagged with , , , , , .


0 Responses

Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.



Some HTML is OK

or, reply to this post via trackback.