我的AIR應用程序出現錯誤,說它無法找到PNGEncoderOption
s類。我有一個參考,甚至宣佈在主應用程序實例,但在運行時我得到以下錯誤:VerifyError:錯誤#1014:無法找到類flash.display :: PNGEncoderOptions
VerifyError: Error #1014: Class flash.display::PNGEncoderOptions could not be found.
這裏是我的代碼:
var options:PNGEncoderOptions = new PNGEncoderOptions();
var hasJPEGEncoderOptions:Boolean = ApplicationDomain.currentDomain.hasDefinition("flash.display.JPEGEncoderOptions");
var hasPNGEncoderOptions:Boolean = ApplicationDomain.currentDomain.hasDefinition("flash.display.PNGEncoderOptions");
我使用Flash Builder 4.7。
我正在使用SDK /應用程序/ Adobe Flash Builder 4.7/sdks/4.6.0 AIR 3.6。
看起來像others也有同樣的問題未解決。
那麼,設置編譯器參數「-swf-version = 16」或更高似乎已經減少了測試應用程序中的這個錯誤。作爲一個方面說明,將其設置得太高會導致應用程序立即關閉。我正在嘗試版本25。 –