12-02-2012 09:32 AM
I've added in an application meny for my app, it contains help and settings. I also have a tabbed pane with my main nav in.
On click of either help or settings I set off a method.
My question is, how do I get each of the help or settings pages to display? Do I push them to a navigation pane?
12-02-2012 07:28 PM
You can pretty much do anything you'd like.
In my project I've opened up a sheet based on my app and blackberry user guidlines.
Page {
Menu.definition: MenuDefinition {
helpAction: HelpActionItem {
onTriggered: {
helpSheet.open();
}
}
}
.....
attachedObjects: [
Sheet {
id: aboutSheet
AboutSheet {
}
}
]
} //end of page
Btw, in Beta 4 there seems to be an issue with application menu or maybe it's only with Beta 3 apps running built in Beta 4 - not 100% sure but you can check out this thread
Hope that helps.
12-03-2012 12:28 PM
Do you/can you use peek with a sheet?
12-03-2012 02:29 PM
12-03-2012 03:52 PM
But how do you code this? C++ preferably.
After setting:
Application::instance()->setScene(tabbedPane);
How to I set a navigationPane to go over the top?