Graphics

 View Only
  • 1.  Word Wrap not Creating Lines Correctly

    Posted 05-02-2017 21:54
    I've been trying to create a fullscreen with three bullet points that wrap into no more than two lines. When I build in the Layout, I can create two even lines for each of the three bullet points. However when my producers use the ENPS plugin and they try to put in the same text, the template creates three lines with one line being a tiny one word line even though there is room for text all on the second line. Any ideas?


  • 2.  RE: Word Wrap not Creating Lines Correctly

    Posted 05-09-2017 14:49
    Maybe the ENPS plugin is word wrapping before hand and adding an extra return? You could try an "OnTextSet" script function:

    text = text.Replace(vbCr, "").Replace(vbLf, "")

    If you are then missing a space, replace the empty strings ("") with one with a space (" ").


    #XPression