English 中文(简体)
Avatar 制造者 w/ XML/AS3
原标题:Avatar maker w/ XML/AS3

因此,我还有另一个与这个问题有关的问题,但我想问一些一般的建议,以了解最好的办法。我正试图做一个阿凡达创造者,它从XML文件(头、头发、眼睛、鼻子等)中抓取元素,并相互覆盖。

我对行动手稿比较新,所以我所做的就是 跟着一帮Xml照片画廊的教程 和一些例子, 并按我的需求来修改它, 这可能不是从一开始最好的方法, 但我从中学到了很多东西。

Here s currently what it looks like: i.imgur.com/HRxNi.jpg There s a scrollpane element which thumbnails get loaded into, a combo box to switch between elements, and a save button that does nothing as of now, but eventually I ll want it to send what s on the stage to my server and let php save it as an avvie.

我所完成的基本上就是让拇指加载一个元素(头), 你可以点击它们之间来改变它们, 仅此而已。

我需要做的 需要我的建议

(1) 根据组合框(例如,从组合框中选择“hair”,在滚动窗格中显示毛发选项),获得不同缩略图以装入不同元素(例如,从组合框中选择“hair”)

(2) 当一个毛发元素或任何元素被点击时,它下方的层层上都有

以下是我至今所获得的信息, 三个文件包含在我的项目中, 完成所有的工作, 您可以在这里查看它们 : < a href="http://pastebin.com/Jy9HPNWH" rel=“ nofollow” >http://pastebin.com/Jy9HPNW ( 对所有三个文件都进行了浏览, 评论了它, 让你知道发生了什么)

您可以在这里查看我的 XML 文件 : < a href="http://pastebin.com/nbaUAUryUk" rel="nofollow" >http://pastebin.com/nbAUryUk , 这样就可以使用结构

如何以最好的方式做到这一点?我真的处在一个路障,我所在的地方,理论上似乎很简单,但我对AS的场景很陌生,也许你们中有些人有更好的想法。

我肯定我能以非常程序性的方式完成这个任务,但对我来说,这似乎只是一种编码罪。

如有任何帮助,请:)

问题回答

< enger> 获取不同的拇指以装入组合框下的不同元素( 例如, 从组合框中选择“ hair ”, 并在滚动窗格中显示毛发选项 。

将事物分解为两个级别。 类别和项。 类别包含它自己的细节( 例如, 类别Name = "hair", 类别Id = 1, 类别Image = "cat-hair.jpg" )

现在创建所有项目都知道它们属于哪个类别。 当一个类别是单击以相同类别 ID 查找项目时, 您现在有了您的项目 。

创建一个框,您可以将项目细节传送到该框中( 图像 URL、 分类 id 等), 它会依附地装入项目的 jpeg 。

当用户点击此框时。 使用 ID 将项目装入预览窗格 。

<强 > 当按下毛发元素或任何元素时,它下方的层层上都有

我的 Maman. add Child( 装载的Hair DisplayObject )

但事情是这样的。你需要检查层层(如果你有大头发遮住眼睛等等), 头发总是在眼睛上。 眉毛总是在眼睛上, 一切东西都放在洞里。 只有当你有东西遮住它们的时候, 才能这样做, 否则你就是好的了。





相关问题
how to represent it in dtd?

I have two element action and guid. guid is a required field when action is add. but when action is del it will not appear in file. How to represent this in dtd ?

.Net application configuration add xml-data

I need to add xml-content to my application configuration file. Is there a way to add it directly to the appSettings section or do I need to implement a configSection? Is it possible to add the xml ...

XStream serializing collections

I have a class structure that I would like to serialize with Xstream. The root class contains a collection of other objects (of varying types). I would like to only serialize part of the objects that ...

MS Word splits words in its XML format

I have a Word 2003 document saved as a XML in WordProcessingML format. It contains few placeholders which will be dynamically replaced by an appropriate content. But, the problem is that Word ...

Merging an XML file with a list of changes

I have two XML files that are generated by another application I have no control over. The first is a settings file, and the second is a list of changes that should be applied to the first. Main ...

How do I check if a node has no siblings?

I have a org.w3c.dom.Node object. I would like to see if it has any other siblings. Here s what I have tried: Node sibling = node.getNextSibling(); if(sibling == null) return true; else ...

Ordering a hash to xml: Rails

I m building an xml document from a hash. The xml attributes need to be in order. How can this be accomplished? hash.to_xml

热门标签