Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Adobe AIR Development

Reply
Trusted Contributor
jetstreamblue
Posts: 112
Registered: ‎01-21-2011
My Carrier: Telus
Accepted Solution

Actionbar Actions Placement -- All go into overflow

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);

 

VENTURCON
For BB10: e-Mmanuel Bible Reader, e-Mmanuel Audio Bible, PM Assist
For PlayBook: e-Mmanuel Bible Reader, Business Analysis Toolbox
Please use plain text.
Trusted Contributor
jetstreamblue
Posts: 112
Registered: ‎01-21-2011
My Carrier: Telus

Re: Actionbar Actions Placement -- All go into overflow

Solved it!  Solution is to add:

appActionBar.showTabsFirstOnBar(false);

VENTURCON
For BB10: e-Mmanuel Bible Reader, e-Mmanuel Audio Bible, PM Assist
For PlayBook: e-Mmanuel Bible Reader, Business Analysis Toolbox
Please use plain text.