Reputation: 9466
I've noticed that when I create a new canvas file in flash and publish that file out that all of the script tags needed don't always seem to be added. For some reason it seems to not always add these tags:
<script src="http://code.createjs.com/tweenjs-0.6.1.min.js"></script>
<script src="http://code.createjs.com/movieclip-0.8.1.min.js"></script>
I try to set up my files, publish out and then turn the overwrite html option off. But it seems when I do this that not all the createjs files have been added. Does it only add these files when you start to write code? I'm not sure the process of how the script tags get added to the html file.
Upvotes: 1
Views: 44
Reputation: 2488
It tries to optimize the included libraries to only those that are necessary for your export. So, if there are no multiframe MovieClip symbols exported, it does not include Tween and MovieClip.
Upvotes: 3