Graphics

 View Only
  • 1.  Spacing for text (bullet points)

    Posted 08-03-2018 12:59

    I have a fullscreen of bullet points and am trying to figure out the spacing through visual logic. It works fine (through the example in attachment 1) with 2 lines of text. 


    However, when I try to use a third and fourth line of text, it runs into the next bullet point (attachment 2).

    Is there a way through visual logic to correct this?



  • 2.  RE: Spacing for text (bullet points)

    Posted 08-03-2018 13:33

    You need to cumulate the heights :
    position of text2 = position of text1 - height of text1
    position of text3 = position of text2 - height of text2 = position of text1 - ( height of text1+ height of text2 )
    etc...

    try something like :



    Hope it helps


    #XPression


  • 3.  RE: Spacing for text (bullet points)

    Posted 08-03-2018 14:20
    This works for the text, but doesn't account for the bullets (which are quads that I grouped with the text of each line). Also, is it possible to add an offset to adjust the spacing of each line?
    #XPression


  • 4.  RE: Spacing for text (bullet points)

    Posted 08-03-2018 15:30

    Replace the position blocks with your group objects instead of the text objects.

    To adjust spacing between bullets, add a "math value" block to the substracts blocks.

    To adjust line spacing of texts, change the leading of your font.



    see sample project attached : [ATTACH]n16766[/ATTACH]


    #XPression


  • 5.  RE: Spacing for text (bullet points)

    Posted 08-06-2018 12:49
    This works great, thank you.
    #XPression