• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

Hide the status bar/ toolbar

New Here ,
Nov 18, 2010 Nov 18, 2010

Copy link to clipboard

Copied

Anyway to hide the status/toolbar?

TOPICS
Development

Views

5.9K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Adobe Employee , Nov 18, 2010 Nov 18, 2010

Hi Bobby,

Try setting the fullScreen property to true in your application descriptor.  You can find additional details on our Setting application properties page.

Chris

Votes

Translate

Translate
Adobe Employee ,
Nov 18, 2010 Nov 18, 2010

Copy link to clipboard

Copied

Hi Bobby,

Try setting the fullScreen property to true in your application descriptor.  You can find additional details on our Setting application properties page.

Chris

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 18, 2010 Nov 18, 2010

Copy link to clipboard

Copied

Sweet Thanks

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 19, 2010 Nov 19, 2010

Copy link to clipboard

Copied

You also might want to make sure you include these lines of ActionScript:

stage.scaleMode = StageScaleMode.NO_SCALE;

stage.align = StageAlign.TOP_LEFT;

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Jun 02, 2011 Jun 02, 2011

Copy link to clipboard

Copied

that doesnt work in a Flash Builder mobile project I have set up. am i missing something

?

I did what was suggest by all parties, scratching my head?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jun 02, 2011 Jun 02, 2011

Copy link to clipboard

Copied

When you say "Flash Builder Mobile project", are you using Flash Builder 4, or did you mean ActionScript Mobile Project in Flash Builder 4.5?

If it's FB4.5, AS mobile project, there's an app descriptor file, it'll be called something like myproject-app.xml. If you look in there, set to Source view, you should find this line:

<!-- <fullScreen></fullScreen> -->

You would need to put 'true' in there, and uncomment the line, to give you:

<fullScreen>true</fullScreen>

That should make the status bar hide.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Jun 08, 2011 Jun 08, 2011

Copy link to clipboard

Copied

Colin,

Many thanks for the info. Yes its FB 4.5. Was already aware of this and have tried this but it does not seem to work on the Motorola Xoom. I did manage to hide the title bar though, as I am developing my app using the ViewNavigatorApplication format, I used navigator.actionBar.visible = false. Wish it was this easy with the status bar.

Any other ideas?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jun 08, 2011 Jun 08, 2011

Copy link to clipboard

Copied

LATEST

I believe that with Honeycomb, and devices that don't have physical buttons, you can't hide the button bar at the bottom.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines