Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How to create an action where Photoshop asks a question and I have to fill in the answer

Explorer ,
May 09, 2022 May 09, 2022

I know ( o no, I knew) that there is a way to create an action where Photoshop pops up with a question and I can fill in text in that pop up, and that text is than placed into the image. Can anybody provide me with a link to a tutorial how to do that?

TOPICS
Actions and scripting
5.0K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Community Expert ,
May 09, 2022 May 09, 2022

What you describe sounds more like a script than an action.

 

Similar to this request:

 

https://community.adobe.com/t5/photoshop-ecosystem-discussions/automating-the-creation-of-a-text-lay...

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
May 09, 2022 May 09, 2022

Hello Stephen,

Thanks I will look into that.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 09, 2022 May 09, 2022

If the issue is just text in a type layer maybe recording entering text and then checking the »toggle dialog on/off«-box in the Actions Panel might be enough. 

 

Please explain the intended procedure. 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
May 09, 2022 May 09, 2022

Yes this would be a script, there are numerous script examples floating around the Web. You can take a look at my sample scripts if you'd like, I don't have one exactly like this but it wouldn't take much to adapt one.

https://www.dropbox.com/sh/mg817g9a9ymbasi/AADTmXUVxmFfM58bcyYE7yiwa?dl=0

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
May 10, 2022 May 10, 2022
LATEST

 

with(activeDocument.artLayers.add())
	kind = LayerKind.TEXT, textItem
	.contents = prompt('TEXT')

 

Save it this code as text.jsx in 'Presets / Scripts' folder of your Photoshop.

Relaunch app and record to your action the 'text' item from 'File / Scripts'.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines