|
|
| FlashStore rating: |
|
| User rating: |
Not rated yet.
|
| Date: |
16-01-07 |
| Submited by: |
spiveyworks |
| Skill: |
intermediate |
|
|
|
|
|
About |
| The Tab Panel Builder allows complete custom-skinning scenarios for making a tab control. Use XML and a few lines of code to integrate this component in to your web site. |
UI Access |
| Components panel under SpiveyWorks category |
Support address |
|
|
Useful links |
|
Download documentation |
|
Tab Panel Builder SpiveyWorks Component documentation (33.45 KB)
|
Code samples |
//Put your product key in this String.
var pKey:String = "";
//Define your different tabs and the movie clips to skin each part.
//The attributes of the Tab XML elements contain linkage names of the
//corresponding movie clips in the Library.
var pXml:String = "<TabPanel><Background headerMC="TabHeader" PanelMC="TabPanel" /><Tabs><Tab tabMC="Tab1" panelMC="Panel1" /><Tab tabMC="Tab2" panelMC="Panel2" /></Tabs></TabPanel>";
//Unlock the component using a product key.
builder.unlock(pKey);
//Build the tab control at runtime with this line of code.
builder.build(pXml); |