how to put tabs in application using only actionscript, there are lot of examples there using flex mx controls for tabnavigator, but i want to use only actionscript or flashscript, please help
|
|
You would need to roll your own, but it's really easy. If the number of tabs is to be static, I would recommend doing the tab design/layout in the Flash IDE. Make a container symbol and a tab symbol, then repeat the tab symbol horizontally inside the container symbol. Give each tab instance a logical name like "tab1", "tab2", etc. In code, you can instantiate the container symbol and add listeners to each tab like so:
In the handler for each is where you would be setting what view appears under the container. If the number of tabs needs to be dynamic, then you will have other architectural considerations I wont go into, but suffice to say, you would use a layout algorithm to place each new tab after that last tab's x + width, and map tab order (childIndex inside the tab container) to view index (perhaps an index in an array of views) |
|||
|
|
|
I'm sure there are many ways you could achieve this with AS3. Try to break it down in terms of functionality, then in terms of display. From the functionality point of view, you don't have much more than a menu and a set of DisplayObjects. Most of your efforts will be spent on the view, where the main challenge is simply to frame your selected tab and content so that they appear to be on the same page. Edit: You could use a CustomEvent to carry your forms data, each time you move to the next tab , dispatch an Event with the updated values.
|
||||
|