Hide Status Bar

I have a personal domain name from godaddy. I enabled masking and forwarding so that my .mac created pages can be accessed via my personal domain name. That works fine.
Here's where the problem is: When I'm at my personal domain name website and hover over pages created from .mac, the status bar first shows my .mac site (go to http://web.mac.com/username/......) and then loads the personal domain name.
I went to several sites but cannot figure out where to put the code to hide my web.mac.com.username site for the brief moment that it shows up in the status bar.
These are the sites that I visited for help:
http://www.javascriptkit.com/script/script2/hidestatus.shtml
http://rainbow.arch.scriptmania.com/scripts/hide_status.html
http://www.cryer.co.uk/resources/javascript/script2.htm
Can anyone help?
Thanks!

Hi there,
At form module level, go the property palette. The Console Window property is set to a window (eg WINDOW1). From the Drop down box, select NULL.
Regards,
John

Similar Messages

  • Used View menu to hide Status Bar...how get Status Bar back?

    Used View menu to hide Status Bar...how do I get the Status Bar back?

    to get back your status bar use this extension
    http://techdows.com/2010/10/bring-back-status-bar-functionality-to-add-on-bar-in-firefox-4-with-status-4-evar-extension.html
    hope this will help
    thank you..

  • My iTunes 11 Mac Install is Missing "View- Show/Hide Status Bar" Options

    All:
    Okay...this is weird.  I did an upgrade from iTunes 10 to 11 on my Snow Leopard MacBook Air.   Under the "View" menu, it has the "Show Sidebar" option.  However, it does NOT have the "Show Status Bar" or "Hide Status Bar" options at all (screen shot below).  What gives???
    - Billish

    Our two Macs also lack the "Show/Hide Status Bar" View menu item. This is a giant fail on Apple's part— I am being inundated with support calls about this. I have found a link to iTunes 10.7 and am advising all upset clients to dump iTunes 11 and download and re-install iTunes 10.7 until the issues are fixed.
    Among other issues: iTunes 11 no longer automatically imports mp3 optical disks into its library as it did in iTunes 10.7.
    Now, when we want to import mp3s from an optical disk, we have to do it manually:
    1) insert optical disk
    2) select File>Add to Library (or Command-O)
    3) click on the optical disk in in the Devices sidebar of the dialog box that opens
    4) select the tracks to install
    5) click "Okay" or hit the Return key
    5 steps to accomplish what once happened upon just inserting the disk!
    If my clients are any indication, this is a pretty big deal. Apple would be well-advised to fix this fast.
    Our Macs:
    2006 Core Duo Mini, 1.66 gHz, 2Gb RAM, 256 Gb Sandisk SSD, OS X 10.6.8
    2008 MBP OS X 10.6.8
    2002 iBook OS X 10.5.x

  • Feature Request: Microsoft Excel 2013 - Don't hide status bar text on focus lost (AVERAGE, COUNT, SUM)

    Could you please disable hiding of status bar text on focus lost.
    I use this in Excel 2013, where I select a few cells, then move to another Excel to write the sum of those cells as read from the status bar or to check with other values in the second window. This really makes my life easier and I see no reason to hide
    the status bar text when the window looses focus.

    Hi,
    Thanks for your suggestions.
    You can also send your feedback to the Office team by the steps as below:
    1. Inside any new Office application you’ll see a yellow smiley face in the top-right corner. Click on the face and choose either
    Send a Smile to send positive feedback or
    Send a Frown to send negative feedback.
    2. In the window that appears, provide details about your feedback or issue. Also, be sure to provide a link to this thread.
    3. Next, you can choose whether or not to send a screenshot. You can also enter your email address so the Office team can contact you directly if they have any questions.
    Note: Most feedback requests do not result in responses from the Office team.
    4. Click the Send button at the bottom of the form to send your feedback.
    Best Regards,
    Judy

  • Show/hide Status Bar permanently grey

    I have a Mac Mini G4 PPC and cannot find the command (anymore ;-) to hide/show the Status Bar in my Finder windows. Under 'View' it is permanently grey and I cannot find a keyboard command :-((

    Hello,
    It will be grayed out if the Toolbar is displayed, Hide TollBar & Status Bar should be available.

  • For the javascript content I am developing, the "hide status bar" option needs to be enabled; how do I access this option for FF4? If I cannot enable this option, can you provide tips on how I might get the page to run?

    I am working with datango producer (see datango.com) which depends on JavaScript to set up the training player that runs simulation content. Datango's browser check recognizes that I am running FF4.0, but indicates I should change the setting to hide the status bar, yet I cannot access that setting under Options > Content > Advanced JavaScript Settings. I could suggest an update to the preflight checks, but am not sure what to tell them. Can you help?

    https://support.mozilla.com/en-US/kb/what-happened-status-bar

  • How to show/hide status bar programatically in openGL ES app?

    Ok, I started with an openGL ES app and can draw my window where I want to display it.
    However, even though the xib file says <<no status bar>>, when I run my app, I get a status bar with a white background which overlays the top part of my graphics. In my app. I want to use all 320x480 pixels for the background tableau and have no need for a status bar...
    How can I enable or disable this programmatically?
    Thanks!

    The best way to hide the status bar for the life of your program is in Info.plist:
    1) Expand the Resources folder in the Xcode Group & Files tree and open Info.plist;
    2) If you already have a key named "UIStatusBarHidden", continue with step 5;
    3) Ctrl-click in the last row of the Key column and select Add Row from the floating menu;
    4) Copy and Paste UIStatusBarHidden into the edit cell for the new row and hit Return;
    5) Ctrl-click on UIStatusBarHidden and select Value Type->Boolean from the menu;
    6) A check box should now appear in the Value column; check that box;
    7) If unsure about what you've done, close the Info.plist window, select Don't Save, and start over;
    8) Cmd-S (File->Save from the top Xcode menu) to save Info.plist.
    If you want the status bar to return at some point:
    [[UIApplication sharedApplication] setStatusBarHidden:NO animated:YES];
    If you don't wish to change any of your OpenGL files to .m, just wrap the above in an extern C function (e.g. in main.m).
    - Ray

  • Hide status bar from start

    I'm having trouble getting the status bar to completely disappear. I have
    application.statusBarHidden = YES;
    as the first line of
    - (void)applicationDidFinishLaunching:(UIApplication *)application
    But, when I launch in the simulator (haven't tried a phone) the first thing that happens is that the status bar flies up to the top of the screen, followed by my Default.png (with the status bar still showing), and then finally my UIView appears, with no status bar.
    I've seen some reference to UIStatusBarHidden and Info.plist, but for the life of my I can't figure out how to get that to work. I did manage to make a key that is UIStatusBarHidden, and set the value to YES but no change.
    I know there must be a way to do this!

    Am I the only one who seems to have a blank space during the Default.png file loading? I've added the hidden status bar option everywhere yet every time my app launches, there is a blank black space where the status bar should be. Both simulator and the device... is there any way around this? Or do i need to wrtie my own splash screen?
    Thanks in advance!

  • How to hide status bar and get fullscreen?

    Hello,
    I have compiled to .ipa and loaded my app onto my iphone.  I have set the app to be fullscreen in the descriptor file, but it does not display fullscreen on my phone.  Initially the UIStatusBar gets hidden like it should, but after the Default.png goes away and the app loads, the status bar comes back.  I have tried setting the UIStatusBarHidden property in the InfoAdditions section, but when I do the PFI throws an error and does not compile my .swf to .ipa.
    Any ideas?  I have compile another app and successfully set it to fullscreen mode by making sure the fullscreen property is set to true.  For some reason it does not work on the current app I am working on.

    Hello,
    I have compiled to .ipa and loaded my app onto my iphone.  I have set the app to be fullscreen in the descriptor file, but it does not display fullscreen on my phone.  Initially the UIStatusBar gets hidden like it should, but after the Default.png goes away and the app loads, the status bar comes back.  I have tried setting the UIStatusBarHidden property in the InfoAdditions section, but when I do the PFI throws an error and does not compile my .swf to .ipa.
    Any ideas?  I have compile another app and successfully set it to fullscreen mode by making sure the fullscreen property is set to true.  For some reason it does not work on the current app I am working on.

  • Hide status bar buttons in transaction FBV2

    Hi,
       I want to hide BACK and CANCEL button in transaction FBV2.
       please give the solution.
    Thanks in advance.
    Regards,
    Arun.

    Hi
    check the program MF05VO00
    in the module status output you can add below statements
    set pf-status 'STD' excluding EF12
    set pf-status 'STD' excluding EF03
    let me know how it goes
    thanks

  • Any way to get rid of the status bar?

    hey there, i use safari 3.0.4 on my 10.4.11 macbook, and i know it's nothing really, but it bugs me from an aesthetical point of view.. i don't have the status showing ever, but sometimes when i click a link and a new window opens, the status bar will appear on the new window. i obviously close this, and again this isn't a big problem, just an irritation, but i'm wondering if there's anyway i can fix this so the status bar doesn't appear when i open a new window?
    thanks in advance, aaron.

    HI Aaron,
    Just use the keyboard shortcuts. Hide Status Bar Command + /
    Carolyn

  • Status bar in form runtime

    Hi,
    I have a form that executes without status bar...
    I even have message('xxx') commands and it never shows.
    any suggestions how to show the status bar?
    Thanks

    Hi there,
    You will be surprised by the results if you search the topic on the Forms forum.
    For your query....
    hide status bar
    Regards,
    John

  • How can I hide the java script status bar?

    I'm trying to hide the status bar using the feature in the advanced section of enable java script. I did a search in the help window of Firefox 5.0 and it shows the area in options to do this. I followed the instructions but the feature in my advanced area does not offer this selection. I'm trying to accomplish this in order to follow the recommendations of Pogo to enhance game playing experience.

    Hi. To remove the horizontal scrollbar you can do this:
    textArea.setWrapText(true);
    To remove the vertical scrollbar you can do this:
    ScrollBar scrollBarv = (ScrollBar)ta.lookup(".scroll-bar:vertical");
    scrollBarv.setDisable(true);  and set the opacity to 0 in the css file:
    //css file
    .text-area .scroll-bar:vertical:disabled {
        -fx-opacity: 0;
    }Here is an example:
    import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ContextMenu;
    import javafx.scene.control.MenuItem;
    import javafx.scene.control.ScrollBar;
    import javafx.scene.control.TextArea;
    import javafx.scene.input.ContextMenuEvent;
    import javafx.scene.layout.StackPane;
    import javafx.stage.Stage;
    public class TextAreaSample extends Application {
        @Override
        public void start(Stage primaryStage) {
        final TextArea textArea = new TextArea();
            textArea.setWrapText(true);
            StackPane root = new StackPane();
            root.getChildren().add(textArea);
            Scene scene = new Scene(root, 300, 250);
            primaryStage.setScene(scene);
            primaryStage.show();
            scene.getStylesheets().add(getClass().getResource("style.css").toExternalForm());
            ScrollBar scrollBarv = (ScrollBar)textArea.lookup(".scroll-bar:vertical");
            scrollBarv.setDisable(true);
        public static void main(String[] args) {
            launch(args);
    }

  • Now that the "Status Bar" is gone, is there a way to hide the "status notification" (bottom left corner) when a page loads? This is on Windows & FF5/6

    The so called "Status Bar" has apparently gone away since FF4, I'm now onto 6 I think, on my work machine. But one of the things I liked about the Status Bar was that it could be hidden entirely.
    With no Status Bar, now when a page is loaded in FF, you get a floating "Status Notification" in the bottom left corner for a second or two while the page is loading (this even happens in FullScreen F11, something I never had to deal with when the Status Bar existed).
    What I want to know is, is there a way to turn off this "Status Notification" entirely? A setting somewhere? Something in About:config? I haven't been able to find anything.

    1. Install the addon Status 4 evar, which puts the status text back in the status bar: https://addons.mozilla.org/en-US/firefox/addon/status-4-evar/
    2. Hide the status bar by right clicking the refresh button and unchecking "Addon bar"

  • Is there an app that hides the status bar?  Or permits customization of it?

    I'd like to hide the time in the status bar, or replace it with other information.
    Reason: I don't like being reminded what time it is when using a PDA type device, especially not in the middle of the night if I'm reading on it.
    Is there an app that hides the bar universally, or lets one replace the time, with say the date or other text?

    Are you sure about that? Several highly regarded, widely downloaded apps, e.g., eReader, have an option to hide the status bar. The developer forums are awash in discussions about the commands to hide the status bar-- it's built in to the SDK.
    I figure someone will have put out a small program that does nothing but hide the status bar or allow its tweaking... much like StatusBar does on the Palm OS 5 PDAs...

Maybe you are looking for

  • Query transport error message

    Dear All, Having trouble transporting a query.  In the log, it has the following error message:- "Start of the after-import method for object type R3TR ELEM (Activation Mode) Message no. R7501 " Not sure if this is the only problem, because there are

  • Windows 8.1 & IR C3100 not functioning together

    We have used our IR C3100 for years on our small business network through ethernet cable and wireless with Windows XP and 7.  September of 2013 I purchased a new laptop with Windows 8 (x64).  I set up the appropriate driver and it printed to the C310

  • How to wipe my mac?

    How do I wipe my mac it is really slow and i'm getting to the point where i would like to switch back to a windows computer

  • Satellite L500 - After Windows 7 upgrade games not run in fullscreen mode

    Hello.. I just got my windows 7 upgrade in the mail and I installed it and everything is fine.. But if I start a game which is not in the same screen resulution as the computer it is a square in the middle of the screen and it is two big black lines

  • Tips for import aspect ratio (4:3 & 16:9 widescreen)

    I have spent several weeks importing video footage from various types of DVDs (old, new, PAL, NTSC, 4:3 and 16:9), and have encountered just about every aspect ratio problem known to Mac. Along the way, I have discovered a few things by trial and err