Expand my Community achievements bar.

LiveCycle Designer and Bullet Points

Avatar

Level 2

Can bullet points be added to Text objects in LiveCycle? If so - how?

Lining up images to serve as bullet points is so messy.

3 Replies

Avatar

Level 10

Hi,

One way would be to use Wingdings font for the bullet (lowercase 'L'):

Parallels Desktop.png

Good luck,

Niall

Avatar

Level 10

You can also create one by pressing ALT+7. The result is a •

Avatar

Level 10

Hi,

I've tried the the function String.fromCharCode(8226); //Returns "•"

Somehow using the 7 in LiveCycle returns a rectangle with a X inside, so I managed to get the ascii code of "•" with LiveCycle using "•".charCodeAt(0);

"•".charCodeAt(0); // = 8226

String.fromCharCode(8226); // = "•"