Hide Custom Menu Bar

Hi All,
Ours is a custom application, which requires to have the menu and tabs to be hidden when a particular page is opened. Please let me know how to accomplish the same.
Thanks

Welcome to the Apple Discussions. I don't know if you can turn off the old navbar with iWeb 1 but with V2 you can via the Inspector/Page/Page pane.
In V2 you can select the text you added to the shape and, using the Inspector/Link/Format pane, you can remove the underline and make any color changes to the link, i.e. rollover, visited, unvisited, etc., that you want. This demo page has such a link.
If you're needing to change it before you get the new version perhaps you should post in the iWeb (Previous to iWeb '08) forum.
OT
Message was edited by: Old Toad

Similar Messages

  • Is there any way to hide the menu bar?

    I've been trying to find out if there's a way to hide the menu bar unless the mouse pointer is pushed up to the upper edge of the screen, I know there are third-party applications that let you do this (Menufela which uses Application Enhancer that I prefer to avoid as it is causes more problems than it solves as far as I'm concerned), I also know that it's possible to write applications that cause the menu bar to exhibit this behaviour while they're focused.
    But what I'm looking for is a way to make it behave this way all the time without installing Application Enhancer and having to deal with all the headaches that come with it.

    serioustrouble wrote:
    It does seem odd that you can't get the menu bar to hide itself though, I seem to recall something about editing certain files in .app directories to make it hide itself on an app-by-app basis.
    To hide the menu bar for a single application, you need to modify the Info.plist, as described -> here <-.
    This will work on nearly every application. Only on a very few applications it will cause incorrect behaviour, mainly Finder.app.
    So a simple way to realise your wishes, is to create an Applescript, that will "hide and unhide" the menubar for a couple of apps at one time.
    Here a demonstration example: Choose one or more apps. Menu bar will be hidden/unhidden:
    <pre style="
    font-family: 'Courier New', Courier;
    font-size: 12px;
    line-height: 1;
    border: 2px solid #1E90FF;
    width: 700px; height: 200px;
    color: #000000;
    background-color: #F5FFFA;
    overflow: auto;">
    on run
    set xyz to choose file default location (path to "apps" as alias) with multiple selections allowed without invisibles
    repeat with i in xyz
    set appName to name of (get info for i)
    if appName ends with ".app" then set proName to text 1 thru -5 of appName
    tell application "Finder"
    try
    if exists (process proName) then
    set x to display dialog "Is " & "\"" & proName & "\"" & " still running? If so, please quit it now!" buttons {"Cancel", "Quit it!", "No! Not running!"} default button 2 with icon 0
    end if
    end try
    end tell
    try
    if button returned of x is "Quit it!" then
    tell application appName
    quit
    end tell
    end if
    end try
    try
    ((i as Unicode text) & "Contents:Info.plist") as alias
    set infoPlist to quoted form of POSIX path of ((i as Unicode text) & "Contents:Info")
    try
    do shell script "defaults read " & infoPlist & " LSUIPresentationMode"
    do shell script "defaults delete " & infoPlist & " LSUIPresentationMode"
    on error
    do shell script "defaults write " & infoPlist & " LSUIPresentationMode -int 4"
    end try
    end try
    end repeat
    end run
    </pre>
    Spażek

  • When I maximize my screen on my Mac it hides the menu bar and the typed tool bar at the top of the screen - how do i fix this

    When I maximize the screen on my Mac Book Pro it hides the menu bar and the typed tool bar at the top of the screen as well.  How do I undo this?

    10.7 "Full Screen" is a feature imported from IOS, the land of tiny screens.
    To use a larger window on a REAL computer, adjust the Window's size to suit your needs. Do not use "Full Screen".

  • How can I hide the menu bar of better a specific option without using an addon?

    For security purpose on my environment, I would like to hide the Menu Bar option or (better) restrict the right to install an add-on, change the proxy configuration etc..
    I dont want to use an add-on for that as it will perhaps not work anymore if I update my firefox.
    So i am searching for a registry/file user preference solution or anything else that will let me doing that.
    Thank you for your help
    == This happened ==
    Every time Firefox opened
    == everytime ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; MS-RTC LM 8; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

    You can hide the menu bar and other toolbars with code in [http://kb.mozillazine.org/UserChrome.css userChrome.css] below the @namespace line.
    See http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #toolbar-menubar {display:none!important;}</nowiki></pre>
    See also http://kb.mozillazine.org/Locking_preferences

  • Any way to auto hide the menu bar on the home scree?

    Any way to Auto Hide the menu bar at the top of the home screen?

    Use
    http://www.macupdate.com/app/mac/22217/menufela
    read Previously discussed
    https://discussions.apple.com/message/4727389#4727389

  • Looking for a way to hide the menu bar

    hey all, i've been looking for a way to hide the menu bar completely and then mouse over it to bring it back, like how the dock is when it's hidden. i want the same thing for the menu bar to free up a little more space and make it a little cleaner looking. i'm currently using eclipse just to black it out completely but there's just a black bar across the top of my screen with it and i just want it gone. any suggestions?

    As an aside; if you need to keep several apps fairly close to hand without cluttering the menu bar or dock, create a folder within your Applications folder, and place aliases of the apps in there, then drag the folder to the dock below the divider (next to the trash). Right click on the folder in the dock to get a pop-up list to choose from. I use the same idea for frequently used files and games too (seperate folders)

  • How to hide the menu bar and Dock

    Howto hide the menu bar and Dock on Mac, I found a tutorial that addfunctions esto info.plist this
    <key> LSUIPresentationMode </ key>
    <integer> 4 </ integer>
    But does not work  which you know another way to do this?

    I have played with 'LSUIPresentationMode' in the past - I may be wrong but I think a value of "1" (and "2" for that matter) only really works in combination with 'LSUIElement' set to a string value of "1". The 'LSUIElement' property of course does away with the application's own menu items so isn't ideal for most applications and since you mentioned using "1" instead of "4", I assume you want your menu items visible all the time.

  • I accidently Hid The menue bar and Navigation bar and only left with the bookmarks...I tried right click but cant find the right spot for the box to pop up to check menue bar, i also tried pressing alt and it did nothing. what else can i do? I need this a

    I was trying to hide just my clock for the history and the menu bar(file,edit all that), I dont know what i clicked but it got rid of everything except for the bookmark tabs. I know if you right click on the menu bar you can fix it, but since there is no menu bar anymore, this isnt working. i looked up how to do it in the forum found out you can press alt and do it that way, maybe i didnt do right, but that didnt work either.please help me!
    == This happened ==
    Just once or twice
    == I tried to hide my history and menu bar, and it jost got rid of it all. ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)

    If that still doesn't work then see http://kb.mozillazine.org/Corrupt_localstore.rdf
    (caution: do not delete the localstore.rdf file in the Firefox program installation folder)
    Note:
    Deleting the file [http://kb.mozillazine.org/localstore.rdf localstore.rdf] will reset the customizations of the toolbars to the defaults.
    You can rename ''localstore.rdf'' to '''localstore.rdf.sav''' to test if that solves it.
    Then you can restore the customization by copying ''localstore.rdf.sav'' to ''localstore.rdf'' if it didn't work.
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • Return to Widget Browser for editing a customized Menu Bar?

    How to edit a Spry Menu 2.0 _after_ customizing with the Adobe Widget Browser and inserting the menu and further structural customizing via DW CS5?
    Yes, the new Browser and the new Menu 2.0 are a large step forward - thanks! But no resources (searched high and low ...) show how to return to the Widget Browser, and all its wonderful configuration tools, once a menu is inserted.
    The Widget Browser apparently does not allow setting up correct button labels, levels, etc.; instead the Widget Browser is where all the 'style' configuration is done. So, we use the Widget Browser to configure / style a Spry Menu 2.0 and then insert it into a page with DW CS5.  Of course, then the menu has to get the correct button labels, levels, etc.  So further structural customization, in DW.
    Now, we decide we want to try out some alternative styling, to compare and contrast options. Of course, that means we want to return to the Widget Browser again and use it. That CSS is hard in a widget such as this, and the whole point of the Widget Browser is to make that styling accessible.
    How to do that, to return to the Widget Browser - and at the same time not lose all the structural customization done in DW?
    What are we missing? Your help is most greatly appreciated.  David Allen

    Yes, of course! Add an ID to each main menu bar item (customize...) and in the CSS, make descendant selectors that include the ID and indicate the background color for that section.
    For this set of menu items:
      <li id="food"><a class="MenuBarItemSubmenu" href="#">Food</a>
        <ul>
          <li><a href="#">Item 1.1</a></li>
          <li><a href="#">Item 1.2</a></li>
          <li><a href="#">Item 1.3</a></li>
        </ul>
      </li>
    these selectors:
    ul.MenuBarHorizontal li#food a.MenuBarItemHover,
    ul.MenuBarHorizontal li#food  a.MenuBarItemSubmenuHover,
    ul.MenuBarHorizontal li#food  a.MenuBarSubmenuVisible
        background-color: green;
    will add the background-color 'green' to all hovered menu list items (and submenu list items) of the list item with the id="food".
    If you want yet another color for the submenus, do it this way:
    ul.MenuBarHorizontal li#food a.MenuBarItemHover
        background-color: green;
    and
    ul.MenuBarHorizontal li#food  a.MenuBarItemSubmenuHover,
    ul.MenuBarHorizontal li#food  a.MenuBarSubmenuVisible
        background-color: lightgreen;
    this latter will catch all the submenus's hover background-color.
    Beth

  • Labview - How to create custom menu bars, drop down menus, pop ups etc.

    Hi,
    I have  a very naive question. How does one create menu bars with custom labels (not NIs defaults), drop down / side menus, pop ups etc.?
    Thanks in advance
    Paul

    Search for the following on the NI website: Run-Time Menus, Run-Time Shortcut Menus.
    For pop ups, search for 'dialog' in the Examle Finder (Help -> Find Examples)
    Adnan Zafar
    Certified LabVIEW Architect
    Coleman Technologies

  • Customized Menu Bar

    Is there a away to create a custom Spry Menu Bar where each item has it's own specific rollover color by editing it with CSS?
    An example of what I am talking about can be found here: http://pittpropertymanagement.com/
    I know you can all of the item rollovers by editing the ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarHorizontal            a.MenuBarItemHover rules, but I want to target specific list items. Is this possible?
    Thanks.

    Yes, of course! Add an ID to each main menu bar item (customize...) and in the CSS, make descendant selectors that include the ID and indicate the background color for that section.
    For this set of menu items:
      <li id="food"><a class="MenuBarItemSubmenu" href="#">Food</a>
        <ul>
          <li><a href="#">Item 1.1</a></li>
          <li><a href="#">Item 1.2</a></li>
          <li><a href="#">Item 1.3</a></li>
        </ul>
      </li>
    these selectors:
    ul.MenuBarHorizontal li#food a.MenuBarItemHover,
    ul.MenuBarHorizontal li#food  a.MenuBarItemSubmenuHover,
    ul.MenuBarHorizontal li#food  a.MenuBarSubmenuVisible
        background-color: green;
    will add the background-color 'green' to all hovered menu list items (and submenu list items) of the list item with the id="food".
    If you want yet another color for the submenus, do it this way:
    ul.MenuBarHorizontal li#food a.MenuBarItemHover
        background-color: green;
    and
    ul.MenuBarHorizontal li#food  a.MenuBarItemSubmenuHover,
    ul.MenuBarHorizontal li#food  a.MenuBarSubmenuVisible
        background-color: lightgreen;
    this latter will catch all the submenus's hover background-color.
    Beth

  • Hide custom menu's

    When adding menu's to the 'main menu' there doesn't seem to be a way to hide them from certain users like we can do with the standard menu's.
    The new custom menu does show up in the 'settings' from of the main menu and when unchecking certain sub menu's the do disappear but this isn't saved to the database. Since on next login the menu's are visible again.
    Is there any way to force this to be saved or am I going to have to make my own form to save / apply these settings?

    Hello
    Yes, you have right.  To do in this case:
    1. Create Additional Authoritzation . Itself it will not solve the problem
    2. When you creating the menu, You can Query the Additional Authorization, and make Menu Item Disabled/Enabled depending from the authorization.
    Use the UserPermission object to query the Users Authorization
    3. By Disableing a menuitem -> will hidden from the Main Menu Panel.
    Use the MenuItem.Enabled property to enable/disable the menuitem
    Regards,
    János

  • Acrobat 9.0 Std - How do I create a button that will show / hide the menu bar?

    In Adobe Acrobat 8, I was able to create a button that would show the menu bar using Link Properties. In version 9.0, the option I used is missing.
    The other view options are there under "Execute a menu item": View > Toolbars > File, Edit, etc.
    Any help would be greatly appreciated - thanks!

    In Adobe Acrobat 8, I was able to create a button that would show the menu bar using Link Properties. In version 9.0, the option I used is missing.
    The other view options are there under "Execute a menu item": View > Toolbars > File, Edit, etc.
    Any help would be greatly appreciated - thanks!

  • How to hide the menu bar from a Transaction iView (SAP GUI for HTML).

    Hello all,
    I have created a simple SAP Transaction iView of type SAP GUI for HTML.  This iView has the Menu bar that has the buttons: Menu, Back, Cancel, and System.  My requirement is, I dont want to see the menu bar that has these buttons.  How do I go about it?  Please advice.
    Note:  My iView is a SAP Transaction iView and not IAC service related iView. 
    Thanks
    Vicky R.

    You'll want to set the parameter ~webgui_simple_toolbar in your webgui service.
    It is a binary parameter with the following values/options:
    0  : Hiding the page header completely (not recommended)
    1  : Standard setting
                        This is the recommended standard setting in which the title and the menu bar below it with the [Exit] and [Help] button and the application buttons are displayed.
    2  : Displaying the title line
    4  : Displaying the buttons [Exit] and [Help]
    8  : Displaying the active system buttons on the screen ([Back] and [Cancel])
    16  : Displaying the system menu
    32  : Displaying the application buttons
    128 : Deactivating the information block in the status bar (new)

  • How do I hide the menu bar on Safari when watching videos on full screen mode?

    Hey guys,
    I have a mid 2010 macbook pro (Snow Leopard OS X 10.6.8) which I have recently restored from time machine after installing a new hard drive.
    However, now when I watch flash videos on putlocker or hulu etc the menu bar on safari on the top left of the screen and the icons on the top right (airport, battery, date/time etc) does not disappear as it used to.
    When I am on youtube I have a similar problem but this time the video only occupies the window so tabs (and everything above) in safari and my dock still appear. I know this may be a youtube related query, but if anyone knows how to change this I would appreciate any guidance.
    This is my first post so sorry if this in the wrong forum (feel free to move it) or if my description is unclear, I can provide further information if needed.
    Many thanks!
    Tom

    You're welcome and only on my first cup of coffee

Maybe you are looking for

  • IPhone 4 will not connect to Apple

    No matter how hard I try, or how many times I try I cannot get my sister in law's iPhone 4s to update it's software to 5.1  Despite it being connected to a strong wireless signal that I managed to update mine from on my laptop, it downloads the updat

  • PDF colour shows in Acrobat X1 in wrong way

    When comparing the Printed Magazine with the dokument in Indesign (CC 2014), Photoshop (CC 2014) and Acrobat (X1) the colours is not the same. Its all been setup from Bridge. Everything is matched except Acrobat that shows the PDF i wrong way. Why?

  • Inkjet Cartridge Warranty - HP DENIES CLAIM - HOW TO FILE A CLAIM?

    I have a genuine 75XL cartridge which is 50% full.  It no longer prints correctly, and cleaning has not helped in any way.   The date on the cartridge is 6 months in the future. The HP Web site states that the warranty is as follows: Ink Cartridges -

  • Business Catalyst Help | Transferring Sites between Partners

    This question was posted in response to the following article: http://helpx.adobe.com/business-catalyst/partner-portal/transferring-sites-partners.html

  • How to copy calendar fom on ID to another

    I tried to copy a calendar from one  icloud to another The calendar was disabled in the cloud and saved  local. Then i changed the apple-id and activated the calendar in the cloud again. I expected that the entire cal. with all contents was copied to