作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为 Android 在 Flash 中制作一个应用程序,我想要一些文本出现,所以我认为使用 XML 是一个很好的方法,但我发现这并不像我想象的那么简单。我有一个代码,但那是针对 as2 的,但没有用,所以我的问题是有人有好的工作代码来从 xml 文件中加载一些文本,还是有人知道在 flash 中加载文本的更好方法???谢谢回复
最佳答案
下面的代码从您的应用程序目录加载一个 xml 文件(您必须将 xml 文件添加到您的应用程序目录)到 _myXml 属性中。
private var _myXml : XML;
private var _file : File;
public function loadXML() : void {
_file = File.applicationDirectory.resolvePath("myXml.xml");
if (_file.exists) {
var stream : FileStream = new FileStream();
stream.open(_file, FileMode.READ);
var str : String = stream.readUTFBytes(stream.bytesAvailable);
stream.close();
_myXml = new XML(str);
} else {
trace("WARNING file:" +_file.nativePath + " does not exist");
}
}
此代码显示了如何实际使用 XML 文件并从中提取数据
public function loadScenes(lang : String) : Vector.<Scene> {
var scenes : Vector.<Scene> = new Vector.<Scene>();
for each (var scene : XML in _myXml.children()) {
var sc : Scene = new Scene(loadImage(scene.background.@imageName, scene.background.@width, scene.background.@height), LibraryManager.getFurnitureById(scene.furniture.@furnitureId),scene.furniture.@furnitureId,lang);
sc.furniture.x = scene.furniture.@x;
sc.furniture.y = scene.furniture.@y;
sc.furniture.scaleX = scene.furniture.@scaleX;
sc.furniture.scaleY = scene.furniture.@scaleY;
sc.furniture.rotation = scene.furniture.@rotation;
sc.furniture.gotoAndStop(scene.furniture.@currentFrame);
sc.setup = true;
scenes.push(sc);
}
return scenes;
我的 xml 看起来像这样
<scenes>
<scene>
<furniture furnitureId="13" currentFrame="1" rotation="0" scaleY="0.4021450653932559" scaleX="0.4021450653932559" y="510.7" x="468.7" id="1"/>
<background height="640" width="980" imageName="Garden2"/>
</scene>
<scene>
<furniture furnitureId="8" currentFrame="1" rotation="0" scaleY="0.5015106201171875" scaleX="0.5015106201171875" y="516.9" x="488.55" id="2"/>
<background height="640" width="980" imageName="Garden3"/>
</scene>
<scene>
<furniture furnitureId="15" currentFrame="1" rotation="-0.06605712343630953" scaleY="0.4068730437596716" scaleX="0.4068730437596716" y="454.85" x="518.5" id="1"/>
<background height="640" width="980" imageName="Garden1"/>
</scene>
</scenes>
关于android - 如何在 as3, air for android 中加载 xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19862327/
我正在开发一个需要能够平均三个数字的 Facebook 应用程序。但是,它总是返回 0 作为答案。这是我的代码: $y = 100; $n = 250; $m = 300; $number = ($y
我只是无法弄清楚这一点,也找不到任何对我来说有意义的类似问题。我的问题:我从数据库中提取记录,并在我的网页上以每个面板 12 条的倍数显示它们。因此,我需要知道有多少个面板可以使用 JavaScrip
我是一名优秀的程序员,十分优秀!