5000: The class '..' must subclass 'flash.display.MovieClip' since it is linked to a library symbol of that type

前端 未结 7 661
梦如初夏
梦如初夏 2021-01-13 00:15

Here is the title error with complete paths:

\\\\psf\\Home\\Dropbox\\Development\\Repositories\\GIT\\i-cc\\Powerhouse\\Notes\\master\\flash\\lib\\libnote\\         


        
7条回答
  •  死守一世寂寞
    2021-01-13 00:25

    I had this same issue. This might seem stupid (i'm new to AS3), but having this:

    class test extends shape {

    caused the issue.

    I changed it to

    class test extends sprite {

    and the issue was resolved.

提交回复
热议问题