09-26-2012 11:10 AM
I'm using the latest Beta 3 SDK, and all my actions now go into the overflow, with nothing on the bar itself. I've used the actionBarPlacement property to set it on the bar without success. Any ideas?
// set actionbar
appActionBar.removeAll();
appActionBar.reserveActionSpace(true);
[Embed(source="PayPal.png")] var donateIcon:Class;
[Embed(source="Facebook_Logo.png")] var facebookIcon:Class;
[Embed(source="QMark.png")] var aboutIcon:Class;
var donate:Action = new Action("Donate",new donateIcon());
var facebook:Action = new Action("FaceBook",new facebookIcon());
var about:Action = new Action("About", new aboutIcon());
donate.actionBarPlacement = ActionPlacement.ON_BAR;
facebook.actionBarPlacement = ActionPlacement.ON_BAR;
about.actionBarPlacement = ActionPlacement.ON_BAR;
appActionBar.backButton = null;
appActionBar.addAction(donate);
appActionBar.addAction(facebook);
appActionBar.addAction(about);
Solved! Go to Solution.
09-26-2012 04:15 PM
Solved it! Solution is to add:
appActionBar.showTabsFirstOnBar(false);