Flash to html5 conversion - How to fix "missing name after . operator"?
Converting an animate CC project from flash to html5 and the first console error I get when running the app in FF is "
(lib. = function(options) {
this._element = new $.(options);
this._el = this._element.create();
var $this = this;
this.addEventListener('added', function() {
$this._lastAddedFrame = $this.parent.currentFrame;
$this._element.attach($('#dom_overlay_container'));
});
}).prototype = p = new cjs.MovieClip();
p.nominalBounds = new cjs.Rectangle(1,1,98,20);
p._tick = _tick;
p._handleDrawEnd = _handleDrawEnd;
p._updateVisibility = _updateVisibility;
I have searched through my AS3 code and cannot find any classes that would match up to this and am at a loss how to correct the error. Any insight into where I should be looking would be much appreciated. Thinking that some high level class declaration might be missing?