# Text edit editor

**URL:** https://forums.creativeclouddeveloper.com/t/text-edit-editor/11962
**Category:** UXP Plugin API
**Tags:** uxp
**Created:** [June 10, 2026, 8:21pm UTC](https://forums.creativeclouddeveloper.com/t/text-edit-editor/11962 "2026-06-10T20:21:02Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Ulrik](https://avatars.discourse-cdn.com/v4/letter/u/f07891/32.png) [@Ulrik](https://forums.creativeclouddeveloper.com/u/Ulrik)
#### Post date: [June 10, 2026, 8:21pm UTC](https://forums.creativeclouddeveloper.com/t/text-edit-editor/11962/1 "2026-06-10T20:21:02Z")

</div>

I am developing a Photoshop UXP plugin and need a text editor where users can apply bold, underline, and paragraph alignment (left, center, right) using toolbar buttons. The formatting should be visible directly in the editor while typing. Is there a recommended way to implement this in UXP, or are there existing rich text editor components that work well with UXP?

---

<div class="post-metadata">

### Author: ![justin2taylor](https://sea1.discourse-cdn.com/flex015/user_avatar/forums.creativeclouddeveloper.com/justin2taylor/32/2031_2.png) [@justin2taylor](https://forums.creativeclouddeveloper.com/u/justin2taylor)
#### Post date: [June 10, 2026, 9:01pm UTC](https://forums.creativeclouddeveloper.com/t/text-edit-editor/11962/2 "2026-06-10T21:01:07Z")

</div>

There’s a million different WYSIWYG editors to pick from, but chances are most won’t render correctly in UXP. What you’ll likely want is a WebView UI so you can use full JS/HTML/CSS capabilities in the frontend.

WebView is pretty complicated to setup, so we’ve made it easy with our free open-source framework Bolt UXP: [Bolt UXP — Resources | Hyper Brew](https://hyperbrew.co/bolt-uxp)

---

<div class="post-metadata">

### Author: ![Jarda](https://sea1.discourse-cdn.com/flex015/user_avatar/forums.creativeclouddeveloper.com/jarda/32/1909_2.png) [@Jarda](https://forums.creativeclouddeveloper.com/u/Jarda)
#### Post date: [June 11, 2026, 8:09am UTC](https://forums.creativeclouddeveloper.com/t/text-edit-editor/11962/3 "2026-06-11T08:09:02Z")

</div>

I don’t believe combining both (text editing + nice text formatting) is possible right now in UXP. I wanted to have something like Monaco text editor in the Alchemist plugin. But UXP does not have enough features to support that. Webview is your best bet. But it has its own disadvantages.
