You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
selection_to_price();function selection_to_price(){ var doc = app.activeDocument; var sel = doc.selection; var loc = [sel[0].characters.item(0).horizontalOffset,sel[0].characters.item(0).baseline]; var newTB = sel[0].parent.textContainers[0].duplicate(); newTB.paragraphs.everyItem().remove(); var str = ""; for(var c in sel[0].characters) str = str + sel[0].characters[c].contents; newTB.contents = str; //newTB.paragraphs[0].appliedParagraphStyle(doc.paragraphStyles.item('PREIS')); newTB.bringToFront(); doc.layers.item("Preise").locked = false; newTB.itemLayer = doc.layers.item("Preise"); }