使用 Flash Builder for PHP 在移动应用程序中使用 FXG 的启动屏幕
我想在我使用 Flash Builder for PHP 构建的 Android 应用程序上使用 .FXG 资源。
它给我一条错误消息,说我的 asset.MyResource 类不存在。
为 SplashScreenImage 属性指定的类名 {assets.MyResource} 无效
I want to use a .FXG asset on my android application that I am building using Flash Builder for PHP.
It gives me an error message saying my assets.MyResource class does not exist.
ïnvalid class name {assets.MyResource} specificied for SplashScreenImage attribute
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,您的解决方案的主要焦点是移动应用程序上的预加载器属性。请参阅下面的 preloader="CustomSplashScreen":
CustomSplashScreen 扩展并覆盖了 spark.preloaders.SplashScreen 类和 getImageClass 函数。
返回类(splash)中的启动画面是一个简单的 fxg 文件,如下所示:
这就是它的全部内容。玩得开心!
——艾伦
OK, the primary focus for your solution is the preloader attribute on a mobile application. See the preloader="CustomSplashScreen" below:
The CustomSplashScreen extends and overrides the spark.preloaders.SplashScreen class, and the getImageClass function.
The splash in the return Class(splash), is a simple fxg file, like so:
That's all there is to it. Have fun!
-- Allen