Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试导入一个 .as 引用我的变量名称/值
import "net.chars."+adc;
您不能通过字符串动态导入路径,因为 AS3 导入是在编译时发生的。它们只是告诉编译器您正在使用哪些类/包的指令,仅此而已。
如果您确实需要此功能,则可以使用getDefinitionByName该功能,如本答案中所述。但是,您应该注意,您仍然必须在代码中的某处引用该类,否则它不会被编译到 SWF 中。Flash 无法在运行时从外部加载类,因此您必须确保编译器知道要包含它。
getDefinitionByName
有关详细信息,请参阅本文。