You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SWF AssetLibrary bundles processed by openfl process command only have working AS Linkages if the source SWF file is of AVM2 (AS3) type. AVM1 SWF libraries don't have AS Linkages after being processed by openfl. The same thing happens when using swf-loader typescript package.
import*aslibraryAS3from"../../../assets/login-as3.swf";import*aslibraryAS2from"../../../assets/login-as2.swf";
...
letlibrary_as3=awaitUtilities.GetLibraryAsync(libraryAS3);letview_as3=library_as3.getMovieClip("com.clubpenguin.login.views.NewPlayer");//is a MovieClipletlibrary_as2=awaitUtilities.GetLibraryAsync(libraryAS2);letview_as2=library_as2.getMovieClip("com.clubpenguin.login.views.NewPlayer");//is null
The text was updated successfully, but these errors were encountered:
SWF AssetLibrary bundles processed by
openfl process
command only have working AS Linkages if the source SWF file is of AVM2 (AS3) type. AVM1 SWF libraries don't have AS Linkages after being processed by openfl. The same thing happens when using swf-loader typescript package.The text was updated successfully, but these errors were encountered: