I have a page made of custom components. In that page I have a button, if I click the button I have to call another page(page.mxml consisting of custom components). Then click event handler is written in Action-script, in a separate file.
My question is how to make a object of mxml class, in ActionScript and how to display the object(i.e the page).
my code
page1.mxml
<comp:BackgroundButton x="947" y="12" width="61" height="22"
paddingLeft="2" paddingRight="2" label="logout" id="logout"
click="controllers.AdminSession.logout()"
/>
this page1.mxml has to call page2.mxml using Actionscript code in another class
static public function logout():void {
var startPage:StartSplashPage = new StartSplashPage();
}
