How to Put scrolling text below masthead?

Hi,
I have written a portal component which has got marque text.
I want to display this marque text just above the top level navigation and below the masthead.
I added my component in the framework but then when I login only my component is displayed.
Regards,
Anagha

Hi,
    If it is a portal component, you can create iView from the component directly. Open default framework page (DFP) and right click the iView and add it to DFP. Make sure you have set entry point property of iView to Yes. In the DFP, click on page layout radio button and arrange the iView next to masthead and save it. Logout and login back to check. I would advise to check these with copy of DFP since any wrong changes done to standard DFP can cause other portal problems.
Regards,
Harini S

Similar Messages

  • How to automatically scroll text in JScrollPane

    Hi there
    I have a very simple question...
    How to automatically scroll text in JScrollPane?
    Text in the TextArea is constantly getting updated... but the scroll bars dont' move as the text changes. Instead I ahve to scroll and see the changes everytime. How can I make the viewport or the scrollpane to show the latest content?
    Thanks in advance.
    Dexter

    This question is asked daily (it seems) on the forum. Hopefully the TextAreaScroll class will explain whats going on:
    **  Short answer is to use the following after the append:
    **  textArea.setCaretPosition(textArea.getDocument().getLength()
    **  However, if you really want to know what is going on, then I have
    **  I have observed the following behaviour in JDK1.4.2
    **  JTextArea will scroll automatically when text is appended, if:
    **  a) the caret is at the end of the text area, and
    **  b) the append is done in the event thread
    **  Note: Initializing a text area at creation time by any of the following
    **  aproaches will cause the caret to be positioned at the start and therefore
    **  scrolling will not happen automatically:
    **  a) JTextArea textArea = new JTextArea("Initial text", ...);
    **  b) textArea.setText("Initial text");
    **  c) textArea.read(someFile, null);
    **  The append method can be forced to execute in the Event thread by using
    **  SwingUtilities.invokeLater();
    **  Alternatively you can force a scroll by repositioning the caret.
    import java.awt.*;
    import java.awt.event.*;
    import java.util.Date;
    import javax.swing.*;
    import javax.swing.text.*;
    public class TextAreaScroll
         public static void main(String[] args)
              final JTextArea textAreaWest = new JTextArea(10, 25);
              JScrollPane scrollPaneWest = new JScrollPane( textAreaWest );
              final JTextArea textAreaEast = new JTextArea(10, 25);
              JScrollPane scrollPaneEast = new JScrollPane( textAreaEast );
              JFrame frame = new JFrame();
              frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              frame.getContentPane().add(scrollPaneWest, BorderLayout.WEST);
              frame.getContentPane().add(scrollPaneEast, BorderLayout.EAST);
              frame.pack();
              frame.setVisible(true);
              //  The West text area will be updated by a Timer. Timer code is
              //  executed in the Event thread so it will scroll correctly.
              new Timer(1000, new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        if (textAreaWest.getDocument().getLength() == 0)
                             textAreaWest.append("West will scroll correctly");
                        textAreaWest.append( "\n" + new Date().toString());
              }).start();
              //  The East text area is not updated in the Event thread.
              //  It will not scroll correctly.
              while (true)
                   try
                        if (textAreaEast.getDocument().getLength() == 0)
                             textAreaEast.append("East will not scroll correctly");
                        textAreaEast.append( "\n" + new Date().toString() );
                        //  Using this method causes the text area to scroll because
                        //  this method will invoke SwingUtilities.invokeLater(...)
                        textAreaEast.setCaretPosition( textAreaEast.getDocument().getLength() );
                        //  Using SwingUtilities.invokeLater causes the code to execute
                        //  on the Event thread
                        //  (comment all the above lines before testing)
                        SwingUtilities.invokeLater( new Runnable()
                             public void run()
                                  textAreaEast.append( "\n" + new Date().toString() );
                        Thread.sleep(1000);
                   catch (InterruptedException ie) {}
    }

  • How to put a text in Child query

    HI,
    I need to put a text when dont find child records which says "PO not found",
    Oracle 10G
    report design consist of one man group and child records
    ex:
    main subquery
    P44001 desc BOMqty total date1 qty line1 ponum1
    ....................................date2 qty line12 ponum1
    ....................................date2 qty line3 ponum2
    P44002 desc BOMqty total “no po found”
    P44003 desc BOMqty total date4 qty line4 ponum1
    ....................................... date2 qty line2 ponum1
    ....................................... date2 qty line5 ponum2
    Thanks,
    Harsha

    Hi, Harsha,
    That sounds like a job for OUTER JOIN.
    For example, using scott's tables:
    SELECT       d.deptno
    ,       d.dname
    ,       NVL2 ( e.deptno
                , e.ename
                , 'No emp found'
                )     AS ename
    FROM              scott.dept  d
    LEFT OUTER JOIN      scott.emp   e  ON  e.deptno  = d.deptno
    ORDER BY  d.deptno
    ;Output:
    `   DEPTNO    DNAME             ENAME
            10    ACCOUNTING        CLARK
            10    ACCOUNTING        KING
            10    ACCOUNTING        MILLER
            20    RESEARCH          JONES
            20    RESEARCH          FORD
            20    RESEARCH          ADAMS
            20    RESEARCH          SMITH
            20    RESEARCH          SCOTT
            30    SALES             WARD
            30    SALES             TURNER
            30    SALES             ALLEN
            30    SALES             JAMES
            30    SALES             BLAKE
            30    SALES             MARTIN
            40    OPERATIONS        No emp foundNote deptno=40, which occurs in dept, but not in emp.
    If ename happened to be NULL in emp, then the NULL would appear in the ename column. If ename can not be NULL, then you can replace the NVL2 expression witH
    NVL (e,ename, 'No emp found') 
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved, and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    If you can show the problem using commonly available tables (such as those in the scott schema) then you don't have to post any sample data: just post the results and the explanation.
    Always say which version of Oracle you're using (e.g., 10.2.0.4.0). There is no version 10<b>F</b> or 10<b>H</b>, so it's kind of silly to say you have 10<b>G</b>
    See the forum FAQ {message:id=9360002}

  • Dvt:barGraph how to put anotation text at multiple positions

    We are rendering some data in the form of bargarph using dvt:barGraph.
    Here we want to achieve couple of usecases which are as following
    1) we need to put anotation text at multiple positions on the graph.
    2) We are using Reference Objects in the bar graph. The text that appears as tooltip for these Reference Objects, we want to render that text embedded in the reference objects as static text.
    how to acheive the above?
    I am using Jdev 11.1.1.3.0
    Thanks
    Ajay
    Edited by: Ajay on Mar 13, 2012 6:06 AM

    The "clipboard" service for copy and paste between applications on a PC is usually a built-in function of the operating system - Mac, Windows, Linux, etc. There are applications available for extending the clipboard feature; I use one named Clip Trakker which allows me to save multiple "text clips" of ''[say]'' text from the internet which are saved in Clip Trakker, and then paste each of those "text clips" into a different program like Word ''[I actually use Libre Office]''.
    I am not familiar with applications for Mac OSX, so I can't make any recommendations about an application.
    As far as extensions for Firefox, there are many extensions that come up in a [https://addons.mozilla.org/en-US/firefox/search/?q=clip&appver=any&platform=all search for "clip"] at the Add-ons Mozilla Org website. You can look to see if you can find any that will do what you want to do, like maybe this one: <br />
    https://addons.mozilla.org/en-US/firefox/addon/clipboard-plus/

  • How to put a text in upper left hand corner for all the application?

    I want to put a text in upper left hand corner for all the pages on application?
    I don't want to put one page by another.
    Thank you.

    If you put it in a region on page zero, it will be inherited by all pages of the application.. Literally in the upper left corner? Even the login page? You could also modify the template page that your using from your theme, so that all pages would have this attribute, whichever you are more comfortable with..
    Thank you,
    Tony Miller
    Webster, TX

  • How to put digital text on ipod? playing video on tv?

    I WANTED TO KNOW HOW TO TRANFER DIGITAL TEXT TO AN IPOD.I DOWNLOADED IT FROM ITUNES AND IT CAN'T BE DRAGGED ON MY IPOD. also do i need a special cable to play videos on a tv or will a stereo audio cable work?
    thanks

    I WANTED TO KNOW HOW TO TRANFER DIGITAL TEXT TO AN IPOD.
    What is digital text?
    I DOWNLOADED IT FROM ITUNES AND IT CAN'T BE DRAGGED ON MY IPOD.
    Do you mean you downloaded it form the iTunes Music Store? (iTunes is a program. You cannot download from it.)
    What is it?
    also do i need a special cable to play videos on a tv or will a stereo audio cable work?
    An audio cable will get the audio but not the video.
    That is why it's called an AUDIO cable.

  • How to put a text into a picture package.

    I want to print a set of 6 pictures onto a single sheet of paper with a heading on the top.  I can do this by exporting all 6 pictures as jpegs, creating a page in my favourite word processor or publishing package and doing it all there.
    However, Lightroom 3 allows me to create a page with the 6 photos, but I can't see any way to put a heading on top.  Is there any way to do this?
    While on the subject, is there any way to put a freeform text label below each picture?
    Thanks
    Tony

    If you put it in a region on page zero, it will be inherited by all pages of the application.. Literally in the upper left corner? Even the login page? You could also modify the template page that your using from your theme, so that all pages would have this attribute, whichever you are more comfortable with..
    Thank you,
    Tony Miller
    Webster, TX

  • How to create scrolling text  (overflow)

    I think I may have posted this in the wrong forum to begin with...so I'm posting it here.
    I am new to Dreamweaver and new to web creation in general. I am currently working on creating a new website and have run into some issues with large amounts of text. I have created a template for the main layout of my site and have added an editable area within the template. One of the pages I have is our Privacy Policy which is a large amount of text. Here is what I'm trying to do...I need to have the text scroll down only within the editable area. I'm not sure if I need to create a DIV to put stuff in, or a table but I need to have the Overflow function and not have it push the page down.
    Any suggestions or solutions would be great.
    Thanks.

    #DivName {
    height: 400px; /**adjust height & width to suit your needs**/
    width: 100%;
    overflow: auto;
    Working Demo:
    http://alt-web.com/DEMOS/multi-scrollbars.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • How to put long text by idoc into FB01?

    Hi,
    I am using Idoc ACC_DOCUMNENT to create FB01 transaction but there is place to put the long text for the item.
    Do you know how to update the long text using an Idoc?
    please do Not reply "try using function SAVE_TEXT".
    Thanks guys...

    I'm having what I think is a similar problem but haven't found a soulution...
    I have a phone number for a contact that is 41 characters long (it's numbers and a couple commas (",") for pauses.
    When I touch the number to have my iPhone dial it - the iPhone does nothing.
    If I touch other numbers for the same contact (that are shorter) - it works.
    Is there a maximum lengh for phone numbers?
    Or is there something I should do? (ie. is there a way to dial the first half, and then press something ?? that would have the iPhone dial the remainder of the number?)
    Thanks!

  • How to put the text "BottomCENTER" from inside JLabel1 out of  Jlabel1??

    Dear friends:
    I have following code,
    It can run.
    I hope to move the text "BottomCENTER" from inside JLabel1 out of Jlabel1,
    I mean Text "BottomCENTER" should be display outside of JLabel1
    import java.awt.Color;
    import java.awt.GridLayout;
    import javax.swing.BorderFactory;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.SwingConstants;
    public class AlignmentExample {
      public static void main(String[] args) {
        // Create the labels and set alignment
        JLabel label1 = new JLabel("BottomCENTER", SwingConstants.CENTER);
        JLabel label2 = new JLabel("CenterLeft", SwingConstants.LEFT);
        JLabel label3 = new JLabel("TopCenter", SwingConstants.CENTER);
        label1.setVerticalAlignment(SwingConstants.BOTTOM);
        label2.setVerticalAlignment(SwingConstants.CENTER);
        label3.setVerticalAlignment(SwingConstants.TOP);
        // Add borders to the labels . . . more on Borders later in the book!
        label1.setBorder(BorderFactory.createLineBorder(Color.black));
        label2.setBorder(BorderFactory.createLineBorder(Color.black));
        label3.setBorder(BorderFactory.createLineBorder(Color.black));
        label1.setBounds(10, 10, 200, 150);
        // Put it all together . . .
        JFrame frame = new JFrame("AlignmentExample");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        JPanel p = new JPanel(new GridLayout(3, 1, 8, 8));
        p.add(label1);
        p.add(label2);
        p.add(label3);
        p.setBorder(BorderFactory.createEmptyBorder(8, 8, 8, 8));
        frame.setContentPane(p);
        frame.setSize(400, 500);
        frame.setVisible(true);
    Thanks so much!!

    change following JLabel1
    | |
    | |
    | |
    | JLabel1 |
    | |
    | |
    | |
    into following Jlabel1:
    | |
    | |
    | |
    | |
    | |
    | |
    | |
    JLabel1
    Thanks

  • How to put my text messages in order by timestamp?

    I noticed today that some of my text messages lost their time order. A few of them I sent yesterday and now they appear with yesterdays timestamp but, they are arranged after the texts I've sent today. Why is this?

    A text message is listed in the Messages app based on the last text received. If you started a thread yesterday, or last week, then started another one with someone else later, when you start the next one, it appears on top. However, if someone responds to yesterday's thread, then it would move to the top. Is that what you are referring to?

  • How to put header text in a PO programatically.

    Hi everybody ,
    Is there anyway in which I can update Header Text in PO using BAPI_PO_CHANGE or some other function module.
    Thanks in advance for your help .
    Regards
    Saurabh

    I think I have found  out !!
    Regards
    Saurabh

  • How to put in text mark in some points in AreaSeries?

    I have a AreaSeries, I'd like to mark some of the points, either with text or image. I am not sure which method to use, I'd like to use default behavior for most of the other series points.
    Thanks in advance.

    I tried to create a customized itemRenderer, but failed
    Here is the piece of code:
    <mx:Script><![CDATA[
    public function myRenderer(item:Object): ClassFactory {
         if (item.type == "1") {
                return new ClassFactory(CrossItemRenderer);
         } else {
                 return new ClassFactory(BoxItemRenderer);
    ]]></mx:Script>
    <mx:AreaChart>
        <mx:series id="testseries" itemRenderer="myRenderer"
    Error message: Definition of myRenderer could not be found
    Implicit coercion of a value of type Function to an =unrelated type Class
    </mx:AreaChart>
    Please advise.
    Thanks.

  • How can I capture text below mouse pointer

    Hi all
    I need to capture a word when mouse pointer click on it (like babylon application does), this text is not only placed into any swing text component, It could be from a pdf doc, html page or anywhere across the desktop (windows or linux).
    I don't know if this is reachable via Swing. I don't know when to start.
    If someone has any clue, please reply.
    Thanks in advanced.
    David.
    Edited by: davidwizo on Jun 4, 2009 2:32 PM

    davidwizo wrote:
    Hi all
    I need to capture a word when mouse pointer click on it (like babylon application does), this text is not only placed into any swing text component, It could be from a pdf doc, html page or anywhere across the desktop (windows or linux).You can capture the screen image and do ocr... very much a pain.
    I don't know if this is reachable via Swing. I don't know when to start.NO, it is not, nor is it doable in Java or in a crossplatform compatible environement, you're either going to look at OCR or some JNI.
    If someone has any clue, please reply.
    Thanks in advanced.
    David.Narrow your scope to make it doable, the project is probably too broad for you to fit in comfortably.

  • How to put text line just for a moment ?

    Hi,
    Do you know how to put a text line  just  for one photo? I mean I have more photos  in one portfolio but i need the text line to be seen just for one photo for the others no.
    Thank you in advance.

    You can use composition for this , where you can insert text frame for that specific photo where you want to add some description and for rest dont use text frame.
    Thanks,
    Sanjit

Maybe you are looking for

  • Windows 7 Bootcamp refuses to format 20-gig partition to NTFS.

    I just recently purchased a Macbook Pro 13-inch Retina at the close of 2012.  Have wanted to install Bootcamp (5.1) on it, since I installed Bootcamp on my old Macbook Pro from 2007.  Ran into a number of errors and roadblocks, but all were bypassed

  • How to Create IS in IR with BPM

    Hi Bhavesh, please refer this URL before you start "Webservice1 TO RFC TO Webservice2 ----all Synchronous I hope u remember you have guided me to do the scenario Webservice1 (EP)— RFC-WebService2 (Client)— all synchronous. I am successfull in designi

  • Cannot use the same page template in panel tabbed

    Hi, I have a panel tabbed with region in each tab. And all the jsff uses the same pageTemplate, but the jsff displays only a blank with no error . So I apply refresh condition on the Region thinking it might be the cause, initially the two region loa

  • [sovled] gnome3.12 locale issue, cannot open gnome-terminal

    I update gnome from 3.10 to 3.12, everything works fine except that I cannot open gnome-terminal, the error message shows (process:2410): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. Error constructing proxy for o

  • Has Mavericks removed the Reminder List sidebar option from Calendar?

    Before I upgraded to Mavericks, I found this feature very helpful - I had my general reminders (essentially a to-do list of items not yet tied to a specific date) sitting in the sidebar of Calendar - so that I could drag and drop them into a specific