Use AS3 to embed the SWF in your code and encounter error:unable to resolve '. /resources/lv1.swf ' for transcoding this problem, check that the code does not have a problem:
public class Swfcontroller
{
[Embed (Source = ": /resources/lv0.swf ")] static private Var swf_0:class;
[Embed (Source = ": /resources/lv1.swf ")] static private Var swf_1:class;
[Embed (Source = ": /resources/lv02.swf ")] static private Var swf_2:class;
[Embed (Source = ": /resources/lv03.swf ")] static private Var swf_3:class;
[Embed (Source = ": /resources/lv04.swf ")] static private Var swf_4:class;
[Embed (Source = ": /resources/lv05.swf ")] static private Var swf_5:class;
But the error is not compiled, and finally carefully look at the original SWF name is wrong, [Embed (Source = "). /resources/lv1.swf ")] static private Var swf_1:class;
should be [Embed (Source = "). /resources/lv01.swf ")] static private Var swf_1:class;
The most painful thing in life is that the bugs you make are right in front of you and you can't find them.
AS3 Embed SWF