How to create two tone text

How do you give a logo or a text a two tone look. i added an image from inc.com and wanted to know how can I do something just like that.

hey Jacky, there are some great tutorials on this subject. These three tutorials have a nice range in skill and effects.
please post back if you have any questions
janelle

Similar Messages

  • How to create two columns in a header?

    Can anyone tell me how to create two columns in a header please?
    Thanks!!

    Sandra,
    I'm suspicious about your motives.  It just doesn't seem logical to me to put so much content into a Header that two columns would be required.
    You might consider the alternate header-like approach; use a Text Box set to two-column format and Format > Advanced > Move Object to Section Master.
    Jerry

  • How to create a OTR Text in Web Dynpro ?

    Hi All,
    Please help, How to create a OTR Text in Web Dynpro ?
    Urgent.
    Thanks in advance.
    Kaleem.

    Hi Kaleemullah,
    To create OTR Text, T-Code is SOTR_EDIT. If you run this transaction then one screen will appear. There you can choose Long Text or Short Text based on your
    Text. You can choose language also. In Text field you can enter your text. You can put WDYV in your Object Type field. In Text block Length can be increased to 25 as it may be problem if language conversion of Text happens. You must fill your package field and save the OTR.
    I hope you can be able to create OTR Text now.
    Best Regards,
    bansidhar

  • How to create a LONG TEXT object in BAPI_ALM_NOTIF_CREATE

    Dear experts,
    Would you please give me a hand how to create a LONG TEXT object when creating a new Notification using BAPI_ALM_NOTIF_CREATE.
    The snapit of my code is below. The Notification is created but without a long text.
    THANK YOU!!
    Data:
        lv_it_longText type STANDARD TABLE OF BAPI2080_NOTFULLTXTI,
          lv_st_longText like LINE OF  lv_it_longText,
      lv_st_longText-OBJTYPE = 'QME'.
      lv_st_longText-TEXT_LINE = DESCRIPTIONLONG.
    CALL FUNCTION 'BAPI_ALM_NOTIF_CREATE'
      EXPORTING
      EXTERNAL_NUMBER          =
       notif_type               = 'M1'
        notifheader              = lv_header
      TASK_DETERMINATION       = ' '
      SENDER                   =
      ORDERID                  =
    IMPORTING
       NOTIFHEADER_EXPORT       = lv_header_import
    TABLES
    *NOTITEM                  =   lv_it_item
      NOTIFCAUS                =
      NOTIFACTV                =
      NOTIFTASK                =
      NOTIFPARTNR              =
       LONGTEXTS                = lv_it_longText
      KEY_RELATIONSHIPS        =
       RETURN                   = lv_it_return.

    Hi
    Make sure you have filled OBKEY.
    OBJKEY must have the corresponding sort field for the values named below :-
    1. QMEL - Notification header
    2. QMFE - Notification item
    3. QMUR - Notification cause
    4. QMSM - Notification task
    5. QMMA - Notification action
    The combination of sort field of item/cause, item/task and item/action must be unique within a notification. If you leave the sort field empty and the OBJTYP = QME, then a long text is created for the notification header.
    Regards
    Abhii

  • How to create Using Formatted Text Field with multiple Sliders?

    Hi i found the Java Sun tutorial at http://java.sun.com/docs/books/tutorial/uiswing/components/slider.html very useful, and it tells how to create one Formatted Text Field with a Slider - however i need to create Formatted Text Field for multiple Sliders in one GUI, how do i do this?
    my code now is as follows, and the way it is now is scroll first slider is okay but scrolling second slider also changes value of text field of first slider! homework due tomorrow, please kindly help!
    // constructor
    label1 = new JLabel( "Individuals" );
    scroller1 = new JSlider( SwingConstants.HORIZONTAL,     0, 100, 10 );
    scroller1.setMajorTickSpacing( 10 );
    scroller1.setMinorTickSpacing( 1 );
    scroller1.setPaintTicks( true );
    scroller1.setPaintLabels( true );
    scroller1.addChangeListener(this);
    java.text.NumberFormat numberFormat = java.text.NumberFormat.getIntegerInstance();
    NumberFormatter formatter = new NumberFormatter(numberFormat);
            formatter.setMinimum(new Integer(0));
            formatter.setMaximum(new Integer(100));
    textField1 = new JFormattedTextField(formatter);
    textField1.setValue(new Integer(10)); //FPS_INIT
    textField1.setColumns(1); //get some space
    textField1.addPropertyChangeListener(this);
    //React when the user presses Enter.
    textField1.getInputMap().put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0),  "check");
            textField1.getActionMap().put("check", new AbstractAction() {
                public void actionPerformed(ActionEvent e) {
                    if (!textField1.isEditValid()) { //The text is invalid.
                        Toolkit.getDefaultToolkit().beep();
                        textField1.selectAll();
                    } else try {                    //The text is valid,
                        textField1.commitEdit();     //so use it.
                    } catch (java.text.ParseException exc) { }
    label2 = new JLabel( "Precision" );
    scroller2 = new JSlider( SwingConstants.HORIZONTAL, 0, 100, 8 );
    scroller2.setMajorTickSpacing( 10 );
    scroller2.setMinorTickSpacing( 1 );
    scroller2.setPaintTicks( true );
    scroller2.setPaintLabels( true );
    scroller2.addChangeListener(this);
    textField2 = new JFormattedTextField(formatter);
    textField2.setValue(new Integer(10)); //FPS_INIT
    textField2.setColumns(1); //get some space
    textField2.addPropertyChangeListener(this);
    //React when the user presses Enter.
    textField2.getInputMap().put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0),  "check");
            textField2.getActionMap().put("check", new AbstractAction() {
                public void actionPerformed(ActionEvent e) {
                    if (!textField2.isEditValid()) { //The text is invalid.
                        Toolkit.getDefaultToolkit().beep();
                        textField2.selectAll();
                    } else try {                    //The text is valid,
                        textField2.commitEdit();     //so use it.
                    } catch (java.text.ParseException exc) { }
    // State Changed
         public void stateChanged(ChangeEvent e) {
             JSlider source = (JSlider)e.getSource();
             int fps = (int)source.getValue();
             if (!source.getValueIsAdjusting()) { //done adjusting
                  if(source==scroller1)   {
                       System.out.println("source ==scoller1\n");
                       textField1.setValue(new Integer(fps)); //update ftf value
                  else if(source==scroller2)     {
                       System.out.println("source ==scoller2\n");
                       textField2.setValue(new Integer(fps)); //update ftf value
             } else { //value is adjusting; just set the text
                 if(source==scroller1)     textField1.setText(String.valueOf(fps));
                 else if(source==scroller2)     textField2.setText(String.valueOf(fps));
    // Property Change
        public void propertyChange(PropertyChangeEvent e) {
            if ("value".equals(e.getPropertyName())) {
                Number value = (Number)e.getNewValue();
                if (scroller1 != null && value != null) {
                    scroller1.setValue(value.intValue());
                 else if (scroller2 != null && value != null) {
                    scroller2.setValue(value.intValue());
        // ACTION PERFORMED
        public void actionPerformed(ActionEvent event) {
        if (!textField1.isEditValid()) { //The text is invalid.
            Toolkit.getDefaultToolkit().beep();
            textField1.selectAll();
        } else try {                    //The text is valid,
            textField1.commitEdit();     //so use it.
        } catch (java.text.ParseException exc) { }
             if (!textField2.isEditValid()) { //The text is invalid.
            Toolkit.getDefaultToolkit().beep();
            textField2.selectAll();
        } else try {                    //The text is valid,
            textField2.commitEdit();     //so use it.
        } catch (java.text.ParseException exc) { }
    ...

    if :p3_note_id is null
    then
    insert into notes (project_id, note, notes_month, notes_year) So, p3_note_id is NULL.
    Another option is that you have a trigger on table NOTES that generates a new note_id even for an update.

  • How to create and read text file using LabVIEW 7.1 PDA module?

    How to create and read text file using LabVIEW 7.1 PDA module? I can not create a text file and read it.
    I attach my code here.
    Attachments:
    File_IO.vi ‏82 KB

    Well my acquisition code runs perfect. The problem is reading it. I can't seem to read my data no matter what I do. My data gets saved as a string using the array to string vi but I've read that the string to array vi (which I need to convert back to array to read my data) does not work on the pda. I'm using version 8.0. So I was trying to modify the program posted in this discussion so that it would save data from my DAQ. I did that but I still can't read the data after its saved. I really don't know what else to do. All I need to do is read the data on the pda itself. I can't understand why I'm having such a hard time doing that. I found a possible solution on another discussion that talks about parsing the strings because of the bug in the "string to array" vi. However, that lead me to another problem because for some reason, the array indicators or graphs don't function on the pda. When i build the program to the pda or emulator, the array indicators are faded out on the front panel as if the function is not valid. Does this kind of help give a better picture of what I'm trying to do. Simply read data back. Thanks.

  • How to Create all Pages text in Outline

    Adobe Indesign CS5 : How to Create all Pages text in Outline
    or how to Create Scripts for Create Outline Text
    One step Solution
    plz Freinds....
    thnx
    [email rmoved by forum host]

    Oh and sorry I don't know of a script.
    My last post was just a "warning" to whomever else may stumble on this thread. It was more for posterity, if it helps you then great. If it helps others then great.
    There are certain circumstances and unusual times where you'd need to do this. And I don't know of a way to automate it.
    You can get 3rd Party Acrobat PDF plugins that will do it (my mind has gone blank on their names?)
    Here's a nice tut with a transparency script also added http://www.stevewareham.com/text2outlines.php
    BUT if you want to do this in Acrobat Pro
    Add a Watermark under Document>Watermark>Add
    Make sure the text covers all the space in the PDF where text could lie
    Or you could use an image - say a full page black JPG or something
    Set the Opacity to 0
    the watermark will be added to all pages
    Then Advanced>Flattener Preview
    make sure Convert text to outlines is selected
    Select the option for All Pages in Document
    Click Appy
    Flatten the PDF and all the text should convert under the flattening

  • How to train two line texts in NI Vision assistant ?

    Hi guys,
    I have managed to train single line of text in OCR (NI Assistant)..as attached..however I dont know how to train two (or more) line of texts..for example the car's plate number below:
    WDP
    3194            - as attached 
    I want my script.scr file to be abled to read any type of line/string..whether it's single, double, triple etc..
    Can anyone show me the way how to do it.
    Thank you in advance
    Suliadi

    Starting with Vision Development Module 2013, OCR supports multi-line reading. You can create a single region of interest that emcompasses all of the lines that you need to read along with the expected number of lines and it will output the text for the best lines. If you are using an earlier version, you will need to have a separate region of interest for each line of text. If you don't know how many lines you will have, one method is to do an edge detection to determine if text is present.
    You can learn more about the multi-line support in this white paper and even more information in the Vision Concepts Manual.

  • How to create two instances of a midlet

    Hi!
    I've programmed a MIDlet that can organize a tournament (save player datas, show rankings...). Right now it can only manage one tournament at a time but now I'd like to be able to manage two simultaneous. I designed the midlet like the famous "Smarticket"-Midlet: a "wrapper" midlet class and a controller class that handles the events. For those of you who dont know the Smartticket example here is my subclass of MIDlet:
    public class MagicTOMIDlet extends javax.microedition.midlet.MIDlet {
        private TOUIController controller;
        public void startApp() {
            new Thread() {
                public void run() {
                    controller = new TOUIController(MagicTOMIDlet.this);
                    controller.init(); // setCurrents() to MainMenu - the entry point of the program
            }.start();
        public void pauseApp() {
        public void destroyApp(boolean unconditional) {
    }The problem is: How can I create two midlets so that I can switch between the 2 tournaments to enter for example new Data (resuts...)? The tournaments don't affect each other, they just have to run simultaneously. My phone is a Nokia 3510i and it can't just run 2 copies of the MIDlet.
    I had two solutions in mind but both didn't work:
    1.) Declare 2 controller classes controller1 and controller2 and a switch Command, that can switch between both. After starting the midlet ask the user if he wants to organize one or two tournaments.
    Here is the code for the MIDlet subclass:
    public class MagicTOMIDlet extends MIDlet implements CommandListener {
        public TOUIController controller1, controller2;
        private List list;
        private Command okCommand;
        private Command exitCommand;
        private Display display;
        private Thread t1, t2;
        private MagicTOMIDlet midlet;
        public void startApp() {
            display = Display.getDisplay(this);
            list = new List("Choose # of Drafts", List.IMPLICIT);
            okCommand = new Command("OK", Command.OK, 1);
            exitCommand = new Command("Exit", Command.EXIT, 5);
            list.append("1 Draft", null);
            list.append("2 Drafts", null);
            list.addCommand(okCommand);
            list.addCommand(exitCommand);
            list.setCommandListener(this);
            display.setCurrent(list);
        public void commandAction(Command command, Displayable displayable) {
            if ((command == okCommand) || (command == List.SELECT_COMMAND)) {
                String label = list.getString(list.getSelectedIndex());
                if (label.equals("1 Draft")) {
                    t1 =  new Thread() {
                        public void run() {
                            midlet.controller1 = new TOUIController(midlet, TOUIController.DRAFT_SINGLE);
                            midlet.controller1.init();
                    t1.start();
                } else if (label.equals("2 Drafts")) {
                    t1 = new Thread() {
                        public void run() {
                            midlet.controller1 = new TOUIController(midlet, TOUIController.DRAFT_1);
                            midlet.controller1.init();
                    t2 = new Thread() {
                        public void run() {
                            midlet.controller2 = new TOUIController(midlet, TOUIController.DRAFT_2);
                            midlet.controller2.init();
                    t2.start();
                    t1.start();
            } else if (command == exitCommand) {
                destroyApp(true);
        }And here parts of the controller class:
    public class TOUIController implements CommandListener {
        public TOUIController(MagicTOMIDlet midlet, byte id) {
            this.midlet = midlet;
            this.draftId = id; // DRAFT_1 = 1, DRAFT_2 = 2, DRAFT_SINGLE = 0
            if (id == DRAFT_SINGLE) {
                singleDraft = true;
            } else if (id == DRAFT_1) {
                otherDraftId = DRAFT_2;
                singleDraft = false;
            } else if (id == DRAFT_2) {
                otherDraftId = DRAFT_1;
                singleDraft = false;
        public void commandAction(Command command, Displayable displayable) {
          else if (command == switchCommand) {
                if (draftId == DRAFT_1) {
                    setCurrent(midlet.controller2.display.getCurrent());
                } else if (draftId == DRAFT_2) {
                    setCurrent(midlet.controller1.display.getCurrent());
        }Somehow it doesn't work. If I try to Switch I land in the MainMenu of the same Tournament (here called: draft).
    My 2nd solution would be to declare two midlets in MagicTOMIDlet and to pass both midlets to the controller class:
    public class MagicTOMIDlet extends MIDlet implements CommandListener {
        public TOUIController controller;
        private List list;
        private Command okCommand;
        private Command exitCommand;
        private Display display;
        private Thread t1, t2;
        public MagicTOMIDlet midlet1;
        public MagicTOMIDlet midlet2;
        public MagicTOMIDlet() {
            midlet1 = this;
            midlet2 = this;
        public void startApp() {
            // as above
        public void commandAction(Command command, Displayable displayable) {
            if ((command == okCommand) || (command == List.SELECT_COMMAND)) {
                String label = list.getString(list.getSelectedIndex());
                if (label.equals("1 Draft")) {
                    t1 =  new Thread() {
                        public void run() {
                            midlet1.controller = new TOUIController(midlet1, TOUIController.DRAFT_SINGLE);
                            midlet1.controller.init();
                    t1.start();
                } else if (label.equals("2 Drafts")) {
                    t1 = new Thread() {
                        public void run() {
                            midlet1.controller = new TOUIController(midlet1, midlet2, TOUIController.DRAFT_1);
                            midlet1.controller.init();
                    t2 = new Thread() {
                        public void run() {
                            midlet2.controller = new TOUIController(midlet2, midlet1, TOUIController.DRAFT_2);
                            midlet2.controller.init();
                    t2.start();
                    t1.start();
    public class TOUIController implements CommandListener {
        public TOUIController(MagicTOMIDlet midlet, MagicTOMIDlet otherMidlet, byte id) {
            this.midlet = midlet;
            this.otherMidlet = otherMidlet;
            this.draftId = id;
            if (id == DRAFT_SINGLE) {
                singleDraft = true;
            } else if (id == DRAFT_1) {
                otherDraftId = DRAFT_2;
                singleDraft = false;
            } else if (id == DRAFT_2) {
                otherDraftId = DRAFT_1;
                singleDraft = false;
        public void commandAction(Command command, Displayable displayable) {
            } else if (command == switchCommand) {
                setCurrent(otherMidlet.controller.display.getCurrent());
    }It same the same wrong behaviour as my first solution.
    I'm tankful for any advise or solution you might give me!
    Marko

    The first way should be correct, but what do these
    lines:
    setCurrent(midlet.controller2.display.getCurrent());
    setCurrent(midlet.controller1.display.getCurrent());do?Sorry, I didn't want to make the post too long...
    public void setCurrent(Displayable displayable) {
            display.setCurrent(displayable);
        }If you are sure that my 1st solution should work I'll try to find the error.
    Thanks!
    Marko

  • How to create two different implementation class for a Control

    Hi,
    I am a newbie to beehieve. I want to know that is it possible to create two different 'Impl' classes for a Control. If yes then how do we instantiate them ? How can we chain them (something like calling one 'Impl' from the other one? Thanks in Advance!!!
    Regards,
    Abhishek

    You are sure you are in the right forum?
    This is the JDeveloper and ADF forum...
    Timo

  • How to create Two Week View of Calendar in Sharepoint 2010.

    There is an option of Week View when i am using Calendar web part, it is showing 1 week view.
    I want to create Two(2) week view of Calendar.
    How can i create Two week view of Calendar.
    Please Help.
    Thanks.

    Hi Priyeshrawat,
    Calendar web part doesn’t provide settings to display two weeks view.
    Based on my understanding, you need to custom a server control to show as the calendar, just like the default calendar control. B y default calendar web part doesn’t contain property to set this.
    Thanks,
    Qiao Wei
    TechNet Community Support

  • How to create column header text while downloading file

    How can we create column header text while downloading file using function GUI_DOWNLOAD(in SAP Release 4.6c) because there is no FIELDNAMES parameter in
    4.6c version.

    Hii,
      Check this sample code. I have called GUI_DOWNLOAD twice. Onetime to download header of table and next time data of table
    REPORT  z_file_download.
    DATA: w_name(90) TYPE c.
    DATA:
      BEGIN OF fs_flight,
        carrid   LIKE sflight-carrid,
        connid   LIKE sflight-connid,
        fldate   LIKE sflight-fldate,
        price    LIKE sflight-price,
        currency LIKE sflight-currency,
      END OF fs_flight.
    DATA:
      BEGIN OF fs_head,
        carrid(10) TYPE c,
        connid(10) TYPE c,
        fldate(10) TYPE c,
        price(10) TYPE c,
        curr(10) TYPE c,
      END OF fs_head.
    DATA:
      t_head LIKE
       TABLE OF
             fs_head.
    DATA:
      t_flight LIKE
         TABLE OF
               fs_flight.
    fs_head-carrid = 'CARRID'.
    fs_head-connid = 'CONNID'.
    fs_head-fldate = 'FLDATE'.
    fs_head-price  = 'PRICE'.
    fs_head-curr   = 'CURRENCY'.
    APPEND fs_head TO t_head.
    SELECT-OPTIONS:
      s_carrid FOR fs_flight-carrid.
    START-OF-SELECTION.
      SELECT carrid
             connid
             fldate
             price
             currency
        FROM sflight
        INTO TABLE t_flight
       WHERE carrid IN s_carrid.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
    *   BIN_FILESIZE                  =
        filename                      = 'D:\flight.xls'
       FILETYPE                      = 'ASC'
    *   APPEND                        = ' '
        WRITE_FIELD_SEPARATOR         = 'X'
    *   HEADER                        = '00'
    *   TRUNC_TRAILING_BLANKS         = ' '
    *   WRITE_LF                      = 'X'
    *   COL_SELECT                    = ' '
    *   COL_SELECT_MASK               = ' '
    *   DAT_MODE                      = ' '
    *   CONFIRM_OVERWRITE             = ' '
    *   NO_AUTH_CHECK                 = ' '
    *   CODEPAGE                      = ' '
    *   IGNORE_CERR                   = ABAP_TRUE
    *   REPLACEMENT                   = '#'
    *   WRITE_BOM                     = ' '
    * IMPORTING
    *   FILELENGTH                    =
      tables
        data_tab                      = t_head
    EXCEPTIONS
       FILE_WRITE_ERROR              = 1
       NO_BATCH                      = 2
       GUI_REFUSE_FILETRANSFER       = 3
       INVALID_TYPE                  = 4
       NO_AUTHORITY                  = 5
       UNKNOWN_ERROR                 = 6
       HEADER_NOT_ALLOWED            = 7
       SEPARATOR_NOT_ALLOWED         = 8
       FILESIZE_NOT_ALLOWED          = 9
       HEADER_TOO_LONG               = 10
       DP_ERROR_CREATE               = 11
       DP_ERROR_SEND                 = 12
       DP_ERROR_WRITE                = 13
       UNKNOWN_DP_ERROR              = 14
       ACCESS_DENIED                 = 15
       DP_OUT_OF_MEMORY              = 16
       DISK_FULL                     = 17
       DP_TIMEOUT                    = 18
       FILE_NOT_FOUND                = 19
       DATAPROVIDER_EXCEPTION        = 20
       CONTROL_FLUSH_ERROR           = 21
       OTHERS                        = 22
    IF sy-subrc NE 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                = 'D:\flight.xls'
          filetype                = 'ASC'
          append                  = 'X'
          write_field_separator   = 'X'
        TABLES
          data_tab                = t_flight
        EXCEPTIONS
          file_write_error        = 1
          no_batch                = 2
          gui_refuse_filetransfer = 3
          invalid_type            = 4
          no_authority            = 5
          unknown_error           = 6
          header_not_allowed      = 7
          separator_not_allowed   = 8
          filesize_not_allowed    = 9
          header_too_long         = 10
          dp_error_create         = 11
          dp_error_send           = 12
          dp_error_write          = 13
          unknown_dp_error        = 14
          access_denied           = 15
          dp_out_of_memory        = 16
          disk_full               = 17
          dp_timeout              = 18
          file_not_found          = 19
          dataprovider_exception  = 20
          control_flush_error     = 21
          OTHERS                  = 22.
      IF sy-subrc EQ 0.
        MESSAGE 'Download successful' TYPE 'I'.
      ENDIF.
      IF sy-subrc NE 0.
    *  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Regards
    Abhijeet

  • How to create a new Text Object to be used for SAVE_TEXT FUNCTION

    hi,,
    can anyone tell how can i create a new text object and text id for saving text by using function SAVE_TEXT.
    Thanks

    hi,.
    try out this 
    DATA: header LIKE thead.
    DATA: newheader LIKE thead.
    DATA:lines LIKE tline OCCURS 0 WITH HEADER LINE.
    header-tdobject = 'VBBK'.
    header-tdname = delivery number.
    header-tdspras = language.
    lines-tdformat = '*'.
    header-tdid = text id. "for example: Z022
    lines-tdline = your text that you want to write .
    APPEND lines. CLEAR lines.
    CALL FUNCTION 'SAVE_TEXT'
    EXPORTING
    client = sy-mandt
    header = header
    savemode_direct = 'V'
    IMPORTING
    newheader = newheader
    TABLES
    lines = lines
    EXCEPTIONS
    id = 1
    language = 2
    name = 3
    object = 4
    OTHERS = 5.

  • How to create a moving text in APEX forms?

    Hi
    Can anyone help me with the procedure and the code for creating a moving text in APEX.
    Thanks in advance.

    marquee was introduced with IE (Internet Explorer) and certain versions of Firefox, Opera, Chrome and Safari web browsers support it.
    tell me how do you want the text to work. the easiest way will be to create an HTML region and put the marquee tag code in it
    if you fear about the compatibility of marquee with browsers or have a browser version with which marquee does not work then use JQuery
    check the following
    http://plugins.jquery.com/marquee/
    let me know if this answers your query in the current thread
    Regards,
    Vishal
    Oracle APEX 4.2 Reporting | Packt Publishing
    Vishal's blog

  • How to create a long text

    Want to create a long text field in Module pool table.
    How to create object, Object id? As text description for the Object id is to be copied into report.
    Ex. Form Header text is maintained in sales documents.This text is copied when description for object idis copied into report, if selected.

    Hi ABHISHEK,
    long texts can be created using FM SAVE_TEXT. Because text handling goes through special text memory, you need additional COMMIT_TEXT to store it on database.
    Object an ID are created in customizing.
    SAVE_TEXT will take ID, OBJECT, NAME, LANGUAGE and the textlines for import.
    Regards,
    Clemens

Maybe you are looking for

  • File in use by Finder

    I recently discovered that overwriting files selected in Finder with the little preview expanded is not possible because finder keeps the file in use. When preview is collapsed the problem does not occur. This happens i.e. when exporting a pdf in Ind

  • Help.required.spaces&some.letters.'ot.worki'g

    please.help. as.you.ca.see.my.spaces.ad.the.letter.after.comig.after.m.i.the.alphabet.ist.wor kig.ad.some.others. ahhhhh i.tried.a.plug.i.keyboard.but.o.differece. i.have.a.imac

  • I am using JComboBox.i want ihe JComboBox popup always in top direction.

    Hi friends, i am using JComboBox.i want ihe JComboBox popup always in top direction(like mobile options ).by default JComboBox popup always in down direction.plz help me

  • What is X11 and Why does GIMP require it

    Hello all, I use GIMP at work on a Windows workstation, and love it.  I have just downloaded the mac version but on boot up it prompts me to locate the 'X11'. What is X11? where is it located? and Why does GIMP need it so badly? Thanking you all in a

  • I want to give enable a button for a user and disable for others in tcode

    Hi all , I want to give authorisation based on user for TCODE : CCO02 where i enter Production Order. After clicking enter button in the next screen for the Total order quantity Icon i want to assign Authorisation to enable to one user and to set in