Graphics

 View Only
  • 1.  text

    Posted 03-19-2018 19:56
    Hi guys, I found that I can change the text style by typing { } (and the number of the fonts style) from a link database (or only but i'm looking for other things

    - Is there a "code" for adding a line break in a text?
    - Is there a way to change letter to exponent(s). I've try many thing, I need for exemple [I]1[SUP]er[/SUP][/I] and 12[SUP]e [/SUP]but did'nt work.

    Thx


  • 2.  RE: text

    Posted 04-18-2018 01:08
    Good question. I was going to suggest making a superscript font that you could tag, but I see no way to vertically shift or top align it. Even this website editor allows[SUP]superscript.[/SUP]
    #XPression


  • 3.  RE: text

    Posted 04-18-2018 12:37
    I've try that too, making a style with a smaller font and to shift it vertically but there's no way. Really strange. My old soft (inscriber) can do it.
    #XPression


  • 4.  RE: text

    Posted 04-18-2018 14:31
    In scripting I add line breaks using a certain string I look for, then replace that string with vbCrLf. I put this in the onSetText of the text object. People know to add [NL] to place line break in specific places.

    Text = Text.Replace("[NL]",vbCrLf)

    Hope this helps.
    Mike
    #XPression


  • 5.  RE: text

    Posted 04-18-2018 14:37
    Thx.

    Any ideas for the exponent? That's my last problem I need to solve right now.
    #XPression