Skip to main content
This topic has been closed for replies.

5 replies

Bojan Živković11378569
Community Expert
Community Expert
February 26, 2020

If you can not copy/paste text using clipboard then some application is preventing you or occupying your clipboard. Check list with application which can cause roblem on your OS.

serkanmutan
Known Participant
February 26, 2020

Sorry I can't. thanks for the helps

Legend
February 26, 2020

Can't what?

Legend
February 20, 2020

1. Copy/paste

 

2. Use a script. You can play around with this example:

 

#target photoshop
textCopier();
function textCopier(){
if(documents.length > 0){
var originalDialogMode = app.displayDialogs;
app.displayDialogs = DialogModes.ERROR;
try{
var fleLogFile = new File('~/Desktop/textExport.txt');
if(!File('~/Desktop/textExport.txt').exists){
var fleLogFile = new File('~/Desktop/textExport.txt'); // .saveDlg('Create New Log File', '*.txt');
fleLogFile.open('w:');
}
else{
fleLogFile.open('a:');
for(var j = 0; j < documents.length; j++){
var docRef = documents[j];
var exportLine = docRef.name;
for(var i = 0; i < docRef.artLayers.length; i++){
var LayerRef = docRef.artLayers[i];
if(LayerRef.kind == LayerKind.TEXT){
var layerText = LayerRef.textItem.contents;
layerText = layerText.replace('\r', '\t');
exportLine = exportLine + '\t' + layerText;
}
}
fileWriter();
}
function fileWriter(){
fleLogFile.writeln(exportLine);
exportLine = '';
}
fleLogFile.close();
}
catch(e){
alert(e + e.line);
}
app.displayDialogs = originalDialogMode;
}
}

 

Bojan Živković11378569
Community Expert
Community Expert
February 18, 2020

If you have text on separate Type layer then use copy/paste method which is easy and works always. Select text in Photoshop then copy it to the clipboard and lastly paste it in Word.

Silkrooster
Legend
February 18, 2020

On its own it can't. However using any program that supports OCR can if the quality of the image is high enough. You could try Acrobat pro as it has the ability to convert image text to edible text.