Is there a special reason why you use the nope property in your argument? I am the creator of the Edge Commons extension library for Edge Animate, and we constantly use CSS files in Animate. Here is the official documentation on how to load the lib and CSS dependent file: http://www.edgedocks.com/edgecommons#anchor_edgecommons_22
Our default yepnope call looks something like this:
// compositionReady yepnope({ load: "path/style.css", complete: function() { // Do something when loading is complete } });
Hope this helps.
By the way: you do not need the previous "sym" in "sym. $ ()". The latter is a special modified jQuery selection function from Animate to get children (elements) from a specific character. This is only necessary to resolve the real id in the DOM (which looks like "Stage_mySymbol_Rectangle" instead of "Rectangle"). But you can use the regular $ () function to use the global version of jQuery ...
source share