Formatting / coding text in the Lyrics field

As we all know, when creating a AAC audiobook with chapters/ or chaptered podcasts, you can include the text in the semeingly unlimited LYRICS FIELD. On an iPod touch for example, you can then read the text as it's being spoken. This is particularly good in the Educational model.
My problem: The text always appears CENTERED, not left justified as say lines in a poem should be.
Is there coding one can use so that the poem's lines/line breaks are displayed properly. I've tried <left> and etc with no success.
Thanks for any help or direction pointing you can come up with.
PS Question: Is there a limit to the number of characters one can put in the Lyric's field. It's nice to see them scroll over the album cover on your iPod.

Yes, thanks, a whole buncha codes seem to work including H1, H2, H3... <center></center> and etc... <hr>... and others. Thanks for the heads up...

Similar Messages

  • Append hyphen automatically after the wrapping of text in the dimension field

    Post Author: Nita_here
    CA Forum: WebIntelligence Reporting
    I want to Append hyphen automatically after the wrapping of text in the dimension field.
    e.g the text reads "I want to wrap this text". then if cell width exceeds after "I want to wrap" then it should be displayed like this "I want to wrap-" "this text".
    Thanks in advance,
    Nita

    Post Author: Nita_here
    CA Forum: WebIntelligence Reporting
    Thanks for your input.
    Let me tell you what I have understood. I will create a variable having the formula (which i have earlier written) in universe. Whenever i need to use the formula in infoview, I will call the variable instead. That's fine. But again, I will have the same problem. If I do any change in infoview level, the cell width is bound to change as it is not the free standing cell, its a column among othe one. e.g.
    A  B  C
    1  2  3
    4  5  6
    (you can think B as the column). Any change(addition, deletion of columns) will certainly change the cell width of B. So, again I need to calculate the things, which i dont want.
    Nita_here: I manually calculated that after 12 characters, the cell wraps the text.
    I wonder if there would be a way to do the things dynamically.
    Thanks in advance,
    Nita

  • Changing color of  text in the input field

    hi
    when i disable the input field , the text written in it has very light color. How can i change the color of the displayed text in the input field.

    Hi Harsimran,
    changing the text color of an input field is not possible. However, you can build a workaround:
    1. take an expression box, place it exactly over your input field
    2. change its text color and take the value of your input field as value being displayed
    3. instead of making your input field disabled, make it hidden and show the expression box instead.
    Thus, instead of enabling/disabling your input field, switch between expression box/input field to be displayed. I hope it's clear what I mean. If not, don't hesitate to ask again.
    Best regards,
      Benni

  • How to get label text  for the Input Field in code

    Hi,
    I have created Two UI elements InputField  and Label.  I set the property 'labelFor' of the UI element Label to 'InputField'.
    This is my requirement .  I am having the Id of InputField in the code . I want to get the value of 'text' of  the UI element Label.
    Please suggest how to proceed.
    Points will be rewarded for helpful answers.
    Best Wishes
    Idhaya R

    Not sure why you really need this, but you could do something like
    IWDInputField field = (IWDInputField) view.getElement("inputFieldID");
    IWDLabel fieldLabel = null;
    for (Iterator children = field.getContainer().iterateChildren(); children.hasNext(); )
      IWDUIElement child = (IWDUIElement) children.next();
      if (child instanceof IWDLabel)
        IWDLabel  label = (IWDLabel) child;
        if ( field.getId().equals(label.getLabelFor())
          fieldLabel = label;
          break;
    Armin

  • Customize Basic Search iView with some text above the Search field

    Hello *,
    we are using the sap.km.cm.basicsearch iView for searching some things. Is it possible to write some text for description above the search field inside the iview?
    Regards,
    Björn,

    Hi Adam,
        U can add a description to the search field in the search iView by customizing the sap.km.cm.basicsearch iView.Download the PAR file from the server machine or from System Administration>support>Portal Runtime>Browse Deployment>Save the PAR file in local machine and import the same to NWDS and customize according to ur requirement.
    Hope this Helps.
    Regards,
    Vinoth.M

  • AS2 contact form and php - works fine but only sends half of the text in the comments field ???

    hi all - i have an AS2 contact form using php to send the info to my email address - it all works fine except this ..... rather than having an empty comments box in the flash movie i had added a whole bunch of feedback questions that the user can comment yes/no to in the comments box (my feedback questions were added into the input text box in cs3 so are there when the user opens the contact page .. i have set the maximum characters to 10000 so no worries that its that that is stopping it all coming through in the email ..... basically when i go to my form online and send it i get it through as an email but with only three quarters of the feedback text in it ...... i have tried a zillion ways a round this, tried other contact forms and php and always end up with the same problem ... any ideas any one ?
    this is the AS....
    stop();
    a =0;
    function validate () {
        if (from.length>=7) {
            if (from.indexOf("@")>0) {
                if ((from.indexOf("@")+2)<from.lastIndexOf(".")) {
                    if (from.lastIndexOf(".")<(from.length-2)) {
                        a = 1;
                        // email is fine
    function formcheck () {
        validate ();       
        trace(a);
        if (fname = "" or telno eq "" or comments eq "" or from eq "") {
            stop();
            error = "You have left blank fields, please fill in all fields, thank you";
        } else {
            emailcheck ();
    function emailcheck (){
        if (a != 1){
            stop();
            error = "Email address not valid";
            } else {
            loadVariablesNum("mail.php3", 0, "POST");
            gotoAndStop(2);
    ..........this is the php
    <?php
    $adminaddress = "[email protected]";
    $sitename = "Flash Site Form Mailer";
    mail("$adminaddress","Info Request",
    "A customer at $sitename has made the following enquiry\n
    First Name: $name
    Company Name: $company
    Telephone: $telno
    Email: $from\n
    The visitor commented:
    $comments
    Logged Info :
    Using: $HTTP_USER_AGENT
    Hostname: $ip
    IP address: $REMOTE_ADDR
    Date/Time:  $date","FROM:$adminaddress");
    ?>
    any help much appreciated

    i think you should not use $HTTP_USER_AGENT.
    and use loadvars instead of loadvariablesnum:
    stop();
    a =0;
    function validate () {
        if (from.length>=7) {
            if (from.indexOf("@")>0) {
                if ((from.indexOf("@")+2)<from.lastIndexOf(".")) {
                    if (from.lastIndexOf(".")<(from.length-2)) {
                        a = 1;
                        // email is fine
    function formcheck () {
        validate ();       
        trace(a);
        if (fname = "" or telno eq "" or comments eq "" or from eq "") {
            stop();
            error = "You have left blank fields, please fill in all fields, thank you";
        } else {
            emailcheck ();
    var sendLV:LoadVars=new LoadVars();
    function emailcheck (){
        if (a != 1){
            stop();
            error = "Email address not valid";
            } else {
    sendLV.name=fname;
    sendLV.telno=telno;
    sendLV.company=company;  //assuming company is a variable in your flash
    sendLV.comments=comments;
    sendLV.send("mail.php3", "POST");
            gotoAndStop(2);
    //..........this is the php
    <?php
    $adminaddress = "[email protected]";
    $sitename = "Flash Site Form Mailer";
    $from=?;//you need to define this variable
    $name=$_POST['name'];
    $telno=$_POST['telno'];
    $company=$_POST['company'];
    $comments=$_POST['comments'];
    $body=
    "A customer at $sitename has made the following enquiry\n
    First Name: $name
    Company Name: $company
    Telephone: $telno
    Email: $from\n
    The visitor commented:
    $comments";
    mail($adminaddress,"Info Request",$body);
    ?>

  • Anyone have a tip or app for removing unwanted formatting from text on the iPad?

    I have text that was created in Word, sent via email, received on my iPad. I need to get all of the hidden formatting stripped out of this text before pasting into another application. The Notes app works in plain text, but it does not strip all the formatting out of text that has been pasted into it.  Anyone have a solution? I have looked at online services and searched for apps but can't seem to find anything that does this.

    I also am looking for a better email client. I need the ability to use folders and have email go directly to these folders when checking email. Just sending all email to only one inbox folder is just to confusing. I like the ability to search for email but this feature only helps to a degree. An example would be... I like all my email from tennis friends on my team to go to a separate email folder. I can do this in Microsoft Outlook and this feature makes it a lot easier to view things. Right now the email client is like a physical filling cabnet that has only one folder. The email client does try to group related emails together that I don't think works very well. So far not all email from one person are being grouped together. Some are but not all so I don't know what criteria it is using to determine what is grouped together. To work better I would like every piece of email from the same person to be grouped together. But then again wouldn't it be easer to just have a separate folder for each person or group of people. The reason for this is at a glance there are so many emails in my inbox that I sometimes miss an email. Using folders would allow me to check and scan my inbox a lot easier when there are only maybe a dozen email to view.
    Anyone else would like to see this feature?
    John

  • PS CS6 pasting text in the wrong field

    If you copy any text to rename your file before exporting..it works fine, but it you adjust the quality setting first, it retains focus and accepts the paste..see video of the bug on my blog:
    http://kuzey3d.blogspot.com/2013/06/photoshop-cs6-exoprt-for-web-bug.html
    Mac OS X 10.7.5
    Photoshop CS6
    Thanks,
    Kuzey

    Yes, thanks, a whole buncha codes seem to work including H1, H2, H3... <center></center> and etc... <hr>... and others. Thanks for the heads up...

  • Is there a way to have the description field in a calendar list item to support enhanced rich text?

    We have a user who has a few hundred calendar items created in outlook. If you open the calendar item, the description includes tables with borders, shading, etc. It seems that the description field in Sharepoint calendars only support basic rich text,
    so if I copy the items from the user's calendar to the sharepoint calendar, the formatting is lost. Is there any way to create a custom calendar with enhanced rich text for the description field?

    This is a workaround that is working for us.  I created a new column "Event Description", selected "Plain Text" and then created a basic workflow that updated Description from Event Description.  #160 is no longer showing.
    Please be aware that the trick to this is that you must write everything in a string.  In other words, don't use the Enter key. 
    In my case it was worth it as we couldn't rebuild and the user needed a valid and quick fix.
    Cynthia Duke
    Cynthia Duke

  • How do you wrap the text on an input field with type="button"

    I want to put 2 lines of text on an input field.
    The button size is fixed at 75 and if there is more than 10 characters it truncates the text.
    The input field is defined as :
    <input type="button"
    value="CI<br>Discrepency"
    class="buttons75x75"
    onclick="javascript:callForm('ciDiscrepency');"/>
    If you can show me how, I would really appreciate it.
    -Gary

    Dug up the code I used to do this a while back:
    //The style sheet
      <style type="text/css">
        .buttonUp {
          border-style:outset;
          border-width:2px;
          width:3em;
          float:left;
          padding:2px;
          background-color:#ccc;
          text-align:center;
        .buttonDown {
          border-style:inset;
          border-width:2px;
          width:3em;
          float:left;
          padding:2px;
          background-color:#ccc;
          text-align:center;
    </style>
    //... Example buttons
      <div class="buttonUp" onmousedown="this.className='buttonDown';"
                            onmouseup="this.className='buttonUp';"
                            onclick="alert('Clicked on Small One');">He</div>
      <div class="buttonUp" onmousedown="this.className='buttonDown';"
                            onmouseup="this.className='buttonUp';">Hello</div>
      <div class="buttonUp" onmousedown="this.className='buttonDown';"
                            onmouseup="this.className='buttonUp';">Hello World</div>
      <div class="buttonUp" onmousedown="this.className='buttonDown';"
                            onmouseup="this.className='buttonUp';">Hello<br/>World</div>
      <div class="buttonUp" style="width:5em;" onmousedown="this.className='buttonDown';"
                            onmouseup="this.className='buttonUp';">Hello World</div>You could put any javascript you want on the onclick event, so you would call the javascript you previously used to submit the form and set the input name. In this example I had all the buttons be a fixed width, if you leave out the width in the style sheet then the block will snap to fill the same width as the text inside it, much like normal buttons do. The difference is, with a fixed width then text wrapping occurs automatically (like in the 3rd button) while without a defined width the div will only display a second line when the line break is added. Note the the fixed width can be over-ruled by an inline style if needed (last sample).
    The website I pointed to before has a simpler solution (less javascript events needed). An implementation for his approach would be:
    //The style sheet
      <style type="text/css">
        .button {
          border-style:outset;
          border-width:2px;
          color:#000;
          float:left;
          padding:2px;
          background-color:#ccc;
          text-align:center;
          text-decoration:none;
          display:block;
        .button:active {
          border-style:inset;
          border-width:2px;
          color:#000;
          float:left;
          padding:2px;
          background-color:#ccc;
          text-align:center;
          text-decoration:none;
          display:block;
      </style>
    //... Example buttons
      <a class="button" href="#" onclick="this.blur();alert('Now you clicked linkey');return false;">Hello<br/>World</a>Same deal here with the fixed-width vs.fit-to-content. I add the 'return false;' to the list of the onclick commands so IE doesn't make the 'link clicked' noise and the URL doesn't go to thispage.html#.
    All these buttons work in FireFox 2, IE 7, and Safari 3 if they are running in STRICT mode. The button colors and borders don't precisely match FF and IE buttons, but they are close (although they aren't close at all to Safari buttons).

  • Chaning the text of the field name in CAT2 transaction

    Hi experts,
    I want to change the text of the standard field in the modifiable fields list under the worklist screen group. Is there any way to do this. If there is please let me know.
    Thanks and Regards,
    Asha

    I have looked at the code again, and here's how I think it should work (but I can't run it to proof this):
    In subroutine "get_ddic_information" (include LCATSF3Z), there is logic that starts:
    * read ddic for CI_CATSDB
      IF add_fields EQ yx.
    ... this reads in TCAFI and then gets the DDIC info for each field there.  Within this "if" is some code:
    * bring text on dynp
              uaddfield = ncats_addfi_text.
    that will set the value of "CATS_ADDFI_TEXTx" where "x" is the column number.  These "DATA: cats_addfi_text1 LIKE cats_addfi-field1." through to "DATA: cats_addfi_text10 LIKE cats_addfi-field10." are defined in the top include, LCATSTOP and they show in screen 2100 as the column headers in the table control for the worklist columns CATS_ADDFI-FIELD1_W -_ CATS_ADDFI-FIELD10_W, so putting values in them should fill your custom column headers.
    So if you set a soft breakpoint in that "get_ddic_information" form, you should be able to see these column headers getting set for each of your CATSDB custom fields... and if they are not getting set, work out why!  You could also use debug to pop a value into, say, CATS_ADDFI_TEXT1, and check it appears in the table control column header.
    Jonathan

  • Length of lyrics field

    How long text can be put into the lyrics field? It seems to be that 3rd gen iPod has a limit of 5 kB. Does anyone know the limit on other models? Is there a workaround? iTunes shows longer lyrics without problems.

    You can use the object/method version of the file F4 help and there is one for directory and one for file name i think. directory_browse for the directory and FILE_OPEN_DIALOG
    ***************************directory
    *Selecting a Directory
    data: gd_path(500) type c.
    parameters: p_path like rlgrap-filename.
    at selection-screen on value-request for p_path.
        CALL METHOD cl_gui_frontend_services=>directory_browse
            EXPORTING window_title = 'File Directory'
                            initial_folder = 'C:'
            CHANGING selected_folder = gd_path.
        CALL METHOD cl_gui_cfw=>flush.
        concatenate gd_path '' into p_path.
    file
    *Selecting a File, plus inserting default file extension
    tables rlgrap.
    data: it_tab type filetable,
          gd_subrc type i.
    select-options so_fpath for rlgrap-filename.
    at selection-screen on value-request for so_fpath-low.
    REFRESH: it_tab.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_OPEN_DIALOG
        EXPORTING
            WINDOW_TITLE = 'Select File'
            DEFAULT_FILENAME = '*.txt'
            MULTISELECTION = 'X'
        CHANGING
            FILE_TABLE = it_tab
            RC = gd_subrc.
    loop at it_tab into so_fpath-low.
        so_fpath-sign = 'I'.
        so_fpath-option = 'EQ'.
        append so_fpath.
    endloop.
    Hope this helps
    Regards mart

  • How many characters are allowed in the memo field?

    how many characters are allowed in the memo field? In iTunes in the get info section to add data to this field.

    It is 255, as are most text fields. Use the lyrics field if you want to record a large amount of information.
    tt2

  • Search doesn't include text in calendar notes fields

    I have a calendar created in iCal that includes about 90 entries with text in the notes field of each. Spotlight on the Mac searches that text fine.
    I've synched that calendar to my iPhone - and search there doesn't include text in that field, though it does for the title field.
    Its a great feature - but to keep calendar entries usable the titles need to be short with most details in the notes, but still searchable

    http://www.apple.com/feedback/iphone.html

  • Can text in the URL line be enlarged?

    I was trying to show an elderly man how to use Safari at a local Apple Store.
    When he complained that he was having trouble reading the text in the URL line because it was too small (a problem he said he does not have when using IE on a PC at a local public library), I tried to enlarge it using standard OS X 'zoom' techniques. These didn't work. After consulting a number of Apple Store employees who tried various methods (including changing screen resolution), no solution could be found.
    Is there no way to change the size of text in the URL line?
    Thanks.

    Did you try using the Zoom feature found under System Preferences > Universal Access > Seeing, or were you relying solely on Safari's own View menu > Zoom In? You might have better results using the Universal Access feature.
    After turning on Zoom under Universal Access > Seeing, use the keyboard shortcuts indicated in order to enlarge everything on your screen -- including the text within the address field. Also, if you're using a mouse with a scroll wheel, try scrolling forward and back while holding down your Control key. This works for me. Good luck.

Maybe you are looking for