我正在尝试遵循本教程
http://tv.adobe.com/watch/starting-with-starling/starting-with-starling-welcome-screen/
当我尝试创建 Assets.as 类(大约 7 分钟开始)时,FB 无法识别某些关键字。特别是字典、纹理和位图。听到密码...
private static var gameTextures:Dictionary = new Dictionary();
public static function getTexture(name:String):Texture
{
if (gameTextures[name] == undefined)
{
var bitmap:Bitmap = new Assets[name]();
gameTextures[name] = Texture.fromBitmap(bitmap);
}
return gameTextures[name];
到目前为止,我一直密切关注本教程系列,但我仍然遇到这些错误。
未找到对字典类型的可能未定义方法的调用或不是编译时常量:纹理、字典和位图访问可能未定义的属性:纹理
我将不胜感激任何可以解决此问题的帮助,谢谢。