Writing a specific text in the title bar of a content area

Hallo,
We have created several Content Areas which will be published as Webpage (NOT as Portlet to a Portal-Page! As example you can visit our Project Homepage http://pan.wsr.ac.at:7778/pls/portal30/url/FOLDER/ACCESSLAB/).
Unfortunatly in the Title bar of the Browser there is always displayed the Title "Portal Content Area Builder".
How can we change this Title to a more descriptive one for each specific Content Area respectively each Folder of a specific Content Area?
Thanks,
Christian

The frame title is (typically) set in a native OS frame, which is not controlled by Java.
Perhaps if you tell Java to let the L&F control the frame decorations it might work, but probably not, as it would probably just try to mimic what the OS does anyway, which is to not support HTML.
So basically, you can't.

Similar Messages

  • Text in the title bar of an Accordion component

    Hi -
    I have an accordion component on my swf. Its working right
    but the text in the title bars (where I click to flip the accordion
    pages) is coming up bold when I want it normal. How do I change
    this?
    Thanks.
    D2

    If you are using Windows, you do it through the Control Panel tool for customizing your desktop display. If you are using some other system, I don't know. You can't do it from your Java program.

  • Change the color of text in the title bar

    Hi,
    I have a JFrame. I want to be able to change the color of the text in the title bar. Do any of you know how to do this ?
    Please let me know.
    Thanks
    Sangeetha

    If you are using Windows, you do it through the Control Panel tool for customizing your desktop display. If you are using some other system, I don't know. You can't do it from your Java program.

  • The Title Bar and its controls are superimosed on the navigation toolbar

    the Question is it. the overlap prevents me from easily accessing controls on the navigation bar. I don't understand this. I asked this earlier and got dumped because i changed all the files as requested and the problem hasn't gone away. I downloaded and installed Firefox 17 and it is still there! I also upgraded my operating system to mac OS 6.8 with no help at all. I can get you a copy of the start up reading from the console if you want. I've included a screen shot below..... wait.
    I just reverted to the default persona from a musical one - the problem disappeared. Why do I get this when I add personas? Let me try others.... That is the focus of the problem! The personas for some reason exclude some of the toolbars and "shove" the title bar down onto and superimpose it upon the navigation bar. That may not make sense, but that is what it looks like from this end. Curious, though, the drop down options are still in a strange configuration, a different typeface than they were before, which happened when the personas superimposed the title bar on the navigation toolbar. So, obviously I can't use the personas. Is there a way around this, please? there is obviously a conflict somewhere, bit I can't figure it as this is a new development ever since I tried to install a new glims version for Safari and this problem appeared after that. De-installing glims did not eliminate the problem so it obviously changed something in the Firefox configuration files. The guy at glims was mystified, too. Any suggestions?
    thanks.

    Whenever I even mouse over the pesonas in the dropdown tools menu, the title bar at top and the buttons thereupon drop down and superimpose onto the navigation bar just below it. I also have an arial or helvetica font on the right click drop downs where it was gill sans before. Just changing with the mouse-over causes this. And it still happens now that I've upgraded to MAC OS 10.8. New version 17, new MAC OS and this still happens and is not a hardware acceleration issue. I'm stumped.
    What can we do? Do you want me to copy off the Firefox initiation lines from the console log?

  • Remove (Private Browsing) in the Title bar

    When in Private Browsing mode is there any way to remove the identifying text in the Title bar?

    Enter Private Browsing mode this way and close and restart Firefox (File > Exit) by starting Firefox automatically in Private Browsing mode.
    To see all History settings, choose: Tools > Options > Privacy, choose the setting '''Firefox will: Use custom settings for history'''
    Check: [[ ] "Automatically start Firefox in a private browsing session"
    See also [[Private Browsing|#Always_start_Firefox_in_a_private_browsing_session|Always start Firefox in a private browsing session]]

  • How to change the title bar wdith , scroll bar widths in tune with a 7" screen

    can you please help me customize my user chrome section so that I can REDUCE the WIDTH of the scroll bar ( horizontal and vertical ) . That is , at max the scroll bar can be ___ pixels of __ % of total width. ( prefer the relative reference )
    Also the title bar ( that black surrounding area that bears the minimize, maximize,close buttons ) needs its width reduced to half of what it is now. How do I do this ?

    No. That doesn't work any more. In current Firefox versions native scroll bars are used and you can't do style those via userChrome.css (user interface; chrome windows) and userContent.css (websites). You can try a large theme if you do not want to make the changes via the Control Panel

  • A notepad in the title bar of an event means not visible

    Hi,
    Using iCal 3.05 notepads in the title bar of an event are not visible. Enlarging the event (e.g. changing to "day" presentation an enlarging with the mouse), which is advised does not help.
    Willem

    you can use a listener like tih one below...it works if you don't move to quickly.....
    class SynchroMover extends ComponentAdapter{
      private JFrame master;
      private JFrame[]slaves;
      private int currentX;
      private int currentY;
      public SynchroMover(JFrame master,JFrame[]slaves){
        this.master = master;
        this.slaves = slaves;
        currentX =(int) master.getLocation().getX();
        currentY =(int) master.getLocation().getY();
      public void componentMoved(ComponentEvent e){
        int dx = (int)master.getLocation().getX() - currentX;
        int dy = (int)master.getLocation().getY() - currentY;
        System.out.println(dx+" "+dy);
        for(int i=0;i<slaves.length;i++)
          slaves.setLocation((int)(slaves[i].getLocation().getX()+dx),(int)(slaves[i].getLocation().getY()+dy));
    currentX = (int)master.getLocation().getX();
    currentY = (int)master.getLocation().getY();
    the code isn't optimized...so you can probably do better

  • How do you make the title bar display different text than the page title?

    I'm looking for a way for the title bar display of my web page to be different than the text in the actual nav bar created by iWeb. For instance, I'd like the nav bar to just say Home for my main page, but in the title bar in the browser say "blah blah blah."
    I know there has to be a way to do this. iWeb has actually done it on one page already, but I can't figure out how. I think it picked up the title bar text from the first text box in the page. For instance, the page name in the navigation bar is "blahs for today" but the browser title bar when you open that page says "blah blah," which happens to be the first line of text on the page. The page title in iWeb.app, though, is "blahs for today." But if I look at the source code it lists title as "blah blah."
    I'm guessing I might be able to work around by making an invisible text box with the text that I want in the title bar as the very first thing on the page, and hope iWeb makes that the title bar text. I'd rather have a more correct way of doing it.
    Is there a way of doing this in the source code without having to change a lot of stuff?
    Thanks for any help.

    Richard Kirkman1 wrote:
    I think it picked up the title bar text from the first text box in the page. (...) I'm guessing I might be able to work around by making an invisible text box with the text that I want in the title bar...
    Richard ~ The key is the default Title box that iWeb creates for every new page — it's that which you need to edit, not another text box you've created. And to make the text in that Title box invisible, see here.

  • How can I change the width and color of the title bar of the JFrame

    I would like to use the UImanager to change the look and feel of the title bar on all of my JFrames. How is this possible.
    Thanks in advance.

    I appologize for being rude, and thank you for your response.
    The reason I did not respond was that I don't think that your answer solves the question of top level containers (specifically JFrame). I have been researching the net and some of the text books to come up with an answer before I respond. To this point, I believe that the answer has something to do with changing the boundary. If this is the case I'm within four or five hours of the solution, and will publish. If not, back to the drawing board.

  • Is there a way to modify the name displayed in the Title Bar at the top of the Audition Window?

    It's not uncommon for me to have a copy of Audition versions 1.5, 2.0 and 3.0 all open at the same time if I'm doing some editing for a complex project. 
    It would be handy for me to quickly see which window I have open without having to recognise the icons of the different versions.  At the moment, each Title Bar just displays the Audition icon and the words "Adobe Audition".  I'd like to add the version number to the name, if it's possible.  I'm happy to edit the Windows Registry, if that is what is needed.
    Does anybody know where the Title Bar information is stored?

    I have an answer you might like Howard.
    You could simply export one title to a PRTL file, then duplicate it using an Excel VB macro to change the name of the file based on a list in an excel file. You could type in a couple of dates, then just drag down to the 365th row and all of the dates would be there waiting for the macro to rename the file. Then, if you are really talented, you could find the appropriate text in the XML file and change it to match the name of the title, but without the PRTL extension.
    That way the font and position and style would all be right and the effort would be in a file you could share with the world.
    Hmmm. I might have to try that myself one of these days. Could come in handy. If you are more comfortable with Word than Excel, create the dates in Excel and paste them into a table in Word. Just be careful not to mess up the
    Edit: Oh, and of course, you import the titles back into Premiere Pro.

  • How to change the position of the title bar in XFCE?

    I hate widescreens, but I bought one because only those are sold. There's a problem with them - The amount of text you can fit on the screen horizontally is quite low which means less lines of text and more scrolling. Also, I noticed that at least 50px is taken up by misc title bars and menus. There would be much more space if I got rid of them.
    Unfortunately, getting rid of them is not an option. I need them. I was thinking that it perhaps would be possible to move the title bars of the windows to the side of the window. Mockup of how it would work included. Do you know of any such solution? That would really help.
    Mockup: http://yfrog.com/j4screenshotesp

    Already been requested ( http://xfce.wikia.com/wiki/Wish_List ) but not yet available AFAIK.

  • Can't drag windows around using the title bar-CS4

    I just upgraded to CS4 at work last week and I'm already regretting it. Firstly, using two monitors, CS4 must like my graphics card becasue as soon as I open a document and it begins to render the window, the main monitor loses it's signal and cuts off. So I have to hard shut down and make my 2nd monitor the main one, open CS4 and a file on that monitor, then make it the 2nd monitor and pass it over to my real first monitor with a file open and make that monitor the main one again. Added to that, randomly, files will open as tabs even though I have the option unchecked in prefs. I hate tabs, I want my windows floating. But I digress.
    My current issue is the file windows are not movable using the title bar. I can expand/contract every side grabbing the edge, but clicking, holding and dragging any of the title bar is ineffective. I can drag to tab to undock it, but once floating, the title bar is non-funtional for grabbing. I can also double click on it to tab, just not to drag.
    I use a mac at home and thankfully Adobe hasn't forced the edge to edge palette background on that platform. On the mac we get a 'classic view' or something that does away with the desktop blocking grey window background. Seriously, I can't stand the full screen look. Why can't windows have that option to have just the menu bar, palettes and file windows allowing the desktop to be visible? /rant

    A new video card is often a good idea if yours is over 2 years old.  Even the modern "budget" (e.g., ~$100) cards are hugely powerful nowadays.
    This page, I believe, could be a good starting point for everything you want to know:
    http://kb2.adobe.com/cps/404/kb404898.html
    This page, specifically, talks about tested video cards with Photoshop CS4:
    http://kb2.adobe.com/cps/405/kb405711.html
    A similar page for Photoshop CS5:
    http://kb2.adobe.com/cps/831/cpsid_83117.html
    -Noel

  • TextEdit won't let me rename duplicated .html files as a .html file (manually typing it) either in the Finder or the Title Bar by selecting Rename or Save.

    TextEdit won't let me rename duplicated .html files as a .html file (manually typing it) either in the Finder or the Title Bar by selecting Rename or Save.
    I am only able to rename a duplicated .html file right after I create it, because the file name gets highlighted in the Title Bar, but after that there is no recourse. I I can Rename or Save the file if I want to just save it as a .txt, but I need it to be .html. I guess I can manually change the file later, but it's really annoying.

    I remember long ago a similar issue with TextEdit, but I can't remember if there was a solution or not.
    Do you have it set to Display HTML files as HTML code and also deselect "When Saving a File: Add ".txt" extension to plain text files"

  • Removing the title bar

    Hello,
    I saw in an earlier post that it is much easier to remove the title bar
    in 2.0 and that how to do it is in the documentation. Where would this
    be documented? All I've figured out how to do so far is make the title
    bar, title text, and banner bar be the same color as the background. So
    they look invisible, except there is an icon that shows up even though
    there is no reference to an icon.
    Thanks,
    Leila

    Hi Leila.
    If you edit your portlet through the admin tool - just don't specify a
    title bar url or delete the one that is there. This will get rid of the
    title bar.
    Cindy
    Leila Schneberger wrote:
    Hello,
    I saw in an earlier post that it is much easier to remove the title bar
    in 2.0 and that how to do it is in the documentation. Where would this
    be documented? All I've figured out how to do so far is make the title
    bar, title text, and banner bar be the same color as the background. So
    they look invisible, except there is an icon that shows up even though
    there is no reference to an icon.
    Thanks,
    Leila

  • User-defined F4 Search - cancel button in the title bar

    Hi,
    I implement user-defined F4 search for my WD application. F4 view comes from another component (as described in the tutorial). Everything is fine, I see that view popuped when F4 is clicked for an input field. My problem is, how to make visible the Close button in the title bar of that popup window.
    I was able to set window's title text, but have no idea how to control those buttons. I only see maximize button which comes by default.
    Also would be nice to create kind of standard OK and Cancel buttons on the bottom bar instead of creating them manually on my view... I've tried set_button_kind(), it works somehow: displayes three empty buttons without icons - need more info about it too...
    Thanks

    Hi Serguei,
    The empty buttons are worth a ticket.
    The behavior for the close button in popups is that the application developer can determine its visibility independent from the buttons in the lower row.
    The second aspect is the action that is triggered if someone clicks that button. There the application developer is able to bind a separate action to that close button. If no action was bound and if a cancel button is visible, clicking the close button will trigger the same action as it would have been the case for the cancel button. A bit complicated, I know. We had to do the latter for backwards compatibility.
    Best regards,
    Thomas

Maybe you are looking for

  • Is there a way to access photo information when viewing on iPhone?

    Using iPhone 5S/ IOS 7.1.1.   In iPhoto I have edited my pictures with information (i.e., name of photo, description).  I would like to access (at least) the name of photo/file on my iPhone.  Any way to see the photo file name on phone?

  • Solaris 8 x86 & Checkpoint FW1 ver 4.0

    It looks like checkpoint fw1 ver 4.0 does not run on Solaris 8 for Intel. I have done three installs on three separate hardware platforms Compaq, HP and DELL I get the same error message Something regarding "No Interface " Please note that when I sto

  • (Automated) Tables in RoboHelp

    So we have this table on Excel. It's a table with different amounts  spread across multiple columns and multiple rows over many pages. The  way this table is set up is that we change one amount (which is hidden)  and then all other amounts change. In

  • Notification for password change in SU01

    Hai geeks,          Could any one give me the idea for catching password change in SU01. I have to use it to send notification to concerned person. Regards, Kumar.

  • Re-Orientation

    I've been using Dreamweaver since 2002, and I've been subscribed to CS6/Creative Cloud for a year. However, it's time to pause to see where I'm going. I just bought a new MacBook Pro and updated all my software (along with a massive website upgrade).