--
You received this message because you are subscribed to the Google Groups "Adobe LiveCycle Developers" group.
To post to this group, send email to live...@googlegroups.com.
To unsubscribe from this group, send email to livecycle+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/livecycle?hl=en.
Try
TextField.rawValue = "• Camera\n• Lights\n• Action";
You won’t be able to get bullets into the actual code. Therefore try adding it to a text box first. To get your bullets, • use Ctrl + 7 and it will produce a bullet point like the one to the left. You can then copy and paste into your code.
CONFIDENTIAL NOTICE: This e-mail transmission (and the attachments, if any, accompanying it) may contain confidential information. The information is intended only for the use of the intended recipient. If you are not the intended recipient, you are hereby notified that any forwarding, disclosure, copying, distribution, or the taking of any action in reliance on the contents of this information is strictly prohibited. Any unauthorized interception of this transmission is illegal under the law. If you have received this transmission in error, please promptly notify the sender by reply e-mail, and then destroy all copies of the transmission.

Incidentally – this should work even in plain text
Sorry – didn’t look back into this thread far enough – you want users to be able to type in bullet points
Same thing – as long as you have Rich Text selected. Instruct them to type in Ctrl + 7 and you should get a bullet point.
> > For more options, visit this group at
> >http://groups.google.com/group/livecycle?hl=en.
>
>
--
You received this message because you are subscribed to the Google Groups "Adobe LiveCycle Developers" group.
To post to this group, send email to live...@googlegroups.com.
To unsubscribe from this group, send email to livecycle+...@googlegroups.com <mailto:livecycle%2Bunsu...@googlegroups.com> .
For more options, visit this group at http://groups.google.com/group/livecycle?hl=en.
> > For more options, visit this group at
> >http://groups.google.com/group/livecycle?hl=en.
>
>
--
You received this message because you are subscribed to the Google Groups "Adobe LiveCycle Developers" group.
To post to this group, send email to live...@googlegroups.com.
To unsubscribe from this group, send email to livecycle+...@googlegroups.com <mailto:livecycle%2Bunsu...@googlegroups.com> .
For more options, visit this group at http://groups.google.com/group/livecycle?hl=en.
Maybe try this in your “Insert Bullet” button click event:
if (TextField.rawValue == null)
{
TextField.rawValue = " • ";
}
else {
TextField.rawValue += "• ";
CONFIDENTIAL NOTICE: This e-mail transmission (and the attachments, if any, accompanying it) may contain confidential information. The information is intended only for the use of the intended recipient. If you are not the intended recipient, you are hereby notified that any forwarding, disclosure, copying, distribution, or the taking of any action in reliance on the contents of this information is strictly prohibited. Any unauthorized interception of this transmission is illegal under the law. If you have received this transmission in error, please promptly notify the sender by reply e-mail, and then destroy all copies of the transmission.
--
You received this message because you are subscribed to the Google Groups "Adobe LiveCycle Developers" group.
To post to this group, send email to live...@googlegroups.com.
To unsubscribe from this group, send email to livecycle+...@googlegroups.com.

> > For more options, visit this group at
> >http://groups.google.com/group/livecycle?hl=en.
>
>
--
You received this message because you are subscribed to the Google Groups "Adobe LiveCycle Developers" group.
To post to this group, send email to live...@googlegroups.com.
To unsubscribe from this group, send email to livecycle+...@googlegroups.com <mailto:livecycle%2Bunsu...@googlegroups.com> .
For more options, visit this group at http://groups.google.com/group/livecycle?hl=en.
See it all the time here. Great forum!
From: live...@googlegroups.com [mailto:live...@googlegroups.com] On Behalf Of Duane Nickull
Sent: Friday, February 18, 2011 11:04 AM
To: Adobe LiveCycle Developers
CONFIDENTIAL NOTICE: This e-mail transmission (and the attachments, if any, accompanying it) may contain confidential information. The information is intended only for the use of the intended recipient. If you are not the intended recipient, you are hereby notified that any forwarding, disclosure, copying, distribution, or the taking of any action in reliance on the contents of this information is strictly prohibited. Any unauthorized interception of this transmission is illegal under the law. If you have received this transmission in error, please promptly notify the sender by reply e-mail, and then destroy all copies of the transmission.
--
You received this message because you are subscribed to the Google Groups "Adobe LiveCycle Developers" group.
To post to this group, send email to live...@googlegroups.com.
To unsubscribe from this group, send email to livecycle+...@googlegroups.com.