Our project is a MMORPG, using scaleform to render UI. Now we use Flash CS5 to create UI panels with scaleform CLIK. With the development of this project, we encountered some problems:
CLIKis not skinned, we have to create separate symbols for each component with different disappearance, so we havePushButton1,PushButton2,RadioButton1,RadioButton2...Flash CS5is not a What You See is What You Get tool. For instance, we have a shared component namedWindow, it has aclosebutton as it's child. In afla, we first pull aWindowon the stage, and modify its size, theclosebutton will be scaled in the stage. We can constrain theclosebutton in as code, but artists have to see the right result inGfx Playeron runtime.We have some common components
flalikecommon_button.flawith most of button components in it. Common components are runtime shared in differentfla. In a UIfla(e.g.friendpanel.fla), when we need a common component, we copy it fromcommon_xxx.flaand paste it in the newflalibrary. If a panel is complex, it's library will be confused and not easily managed. If the common one is not satisfying requirement, we will double-click the pasted component and modify it in the localfla, and this caused more resource management troubles.
So I consider if we should create a skinned UI component lib and an UI editor to handle this problems. Does any one has similar experience?