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

Control the movement of a layer with Slider

Engaged ,
Apr 18, 2017 Apr 18, 2017

Copy link to clipboard

Copied

Hi guys, how are you? My friends, is there any chance of a script writing the path of a layer on the "y-axis" and controlling that movement through slider?

Here is a small illustration of how it would work:

Screenshot_1.gif

TOPICS
Actions and scripting

Views

1.9K

Translate

Translate

Report

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

correct answers 1 Correct answer

Community Expert , Apr 20, 2017 Apr 20, 2017

// 2017, use it at your own risk;

#target photoshop

var checksOut = true;

checksOut = checkPhotoshop(checksOut);

// do the operation if everything has checked out;

if (checksOut == true) {

// set the ruler units;

var originalRulerUnits = app.preferences.rulerUnits;

app.preferences.rulerUnits = Units.PIXELS;

var myDocument = app.activeDocument;

var theHeight = myDocument.heght;

var thisState = myDocument.activeHistoryState;

var theFirstState = myDocument.activeHistoryState;

var theHeight = myDocument.height;

v

...

Votes

Translate

Translate
Adobe
Community Expert ,
Apr 18, 2017 Apr 18, 2017

Copy link to clipboard

Copied

You could do that with a script simple transform the layer varying the layer y.  I would not think it necessary. For with the move tool you can nudge a layer location  using the keyboard arrow keys and Shift Arrow Keys. Up, Down, Left and Right...

Logo are usually automated  by sizing and aligning them to some location so the process can be batched.  Adding a logo in an interactive process I would just use the move tool.  Why script it?

JJMack

Votes

Translate

Translate

Report

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 ,
Apr 19, 2017 Apr 19, 2017

Copy link to clipboard

Copied

Like JJMack mentioned it seems a bit much effort for the result.

But you may have intended it as part of some larger functionality or just be looking for the learning experience so I don’t want to discourage you from pursuing the idea.

What are the units in your example supposed to be – pixels or percent?

Votes

Translate

Translate

Report

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
Engaged ,
Apr 19, 2017 Apr 19, 2017

Copy link to clipboard

Copied

Hi c.pfaffenbichler! And I've created an action to automate the layout of dozens of photo book covers. On all these covers I will have to add a graphic logo where I work in which I use script to add and modify its opaque color. My idea is to add a control to move, change the positioning of the logo, in that same script, this would prevent it from conflicting with the title of the Cover, which is in the center of the document.

00001.jpg

Illustration Final model:

00002.jpg

Votes

Translate

Translate

Report

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 ,
Apr 20, 2017 Apr 20, 2017

Copy link to clipboard

Copied

// 2017, use it at your own risk;

#target photoshop

var checksOut = true;

checksOut = checkPhotoshop(checksOut);

// do the operation if everything has checked out;

if (checksOut == true) {

// set the ruler units;

var originalRulerUnits = app.preferences.rulerUnits;

app.preferences.rulerUnits = Units.PIXELS;

var myDocument = app.activeDocument;

var theHeight = myDocument.heght;

var thisState = myDocument.activeHistoryState;

var theFirstState = myDocument.activeHistoryState;

var theHeight = myDocument.height;

var dlg = new Window("dialog", "stuff", [500,300,920,500]);

// position;

dlg.scale = dlg.add('panel', [15,15,405,65], 'offset');

dlg.scale.slider = dlg.scale.add('slider', [12,12,300,32]);

dlg.scale.slider.minvalue = 0;

dlg.scale.slider.maxvalue = theHeight;

dlg.scale.slider.value = activeDocument.activeLayer.bounds[1];

dlg.scale.number = dlg.scale.add('edittext', [312,12,372,30], 0);

dlg.scale.number.text = activeDocument.activeLayer.bounds[1];

dlg.scale.slider.onChanging = function () {dlg.scale.number.text = Math.round(this.value)};

dlg.scale.slider.onChange = positionTheLayers;

dlg.scale.number.onChange = function () {

  while (this.text.indexOf(",") != -1) {this.text = this.text.replace(",", ".")};

  while (this.text.indexOf(".") != this.text.lastIndexOf(".")) {this.text = this.text.replace(".", "")};

// checking if entry is numeric, thanks to xbytor;

  if (this.text.match(/[^\-\.\d]/)) {

  this.text = this.text.replace(/[^\-\.\d]/g, '');

  }

  if (this.text == "") {this.text = 0};

  while (Number (this.text) > theHeight) {this.text = theHeight};

  while (Number (this.text) < 0) {this.text = 0};

  var theNumber = Number(dlg.scale.number.text);

  dlg.scale.slider.value = theNumber;

  positionTheLayers()

  };

// buttons for ok and cancel;

dlg.buttons = dlg.add('panel', [15,135,405,185], '');

dlg.buttons.buildBtn = dlg.buttons.add('button', [13,12,185,34], 'OK', {name:'ok'});

dlg.buttons.cancelBtn = dlg.buttons.add('button', [195,12,370,34], 'Cancel', {name:'cancel'});

// show dialog;

dlg.center();

// show dialog;

var myReturn = dlg.show ();

////////////////////////////////////

if (myReturn == 1) {

// select the layers;

  reselectLayers0 (myDocument, theLayers);

  }

else {

// go back in history and select the layers;

  myDocument.activeHistoryState = theFirstState;

  };

app.preferences.rulerUnits = originalRulerUnits;

};

////////////////////////////////////

////////////////////////////////////

////////////////////////////////////

// thanks to kasyan servetsky;

function checkPhotoshop(checksOut) {

  if (app.documents.length == 0) {

  alert("no documents are open. please open a document and try again");

  checksOut = false

  };

  var theKinds = ["LayerKind.BLACKANDWHITE", "LayerKind.BRIGHTNESSCONTRAST", "LayerKind.CHANNELMIXER", "LayerKind.COLORBALANCE", "LayerKind.CURVES", "LayerKind.EXPOSURE",

  "LayerKind.GRADIENTMAP", "LayerKind.HUESATURATION", "LayerKind.INVERSION", "LayerKind.LAYER3D", "LayerKind.LEVELS", "LayerKind.PHOTOFILTER", "LayerKind.POSTERIZE",

  "LayerKind.SELECTIVECOLOR", "LayerKind.THRESHOLD", "LayerKind.VIBRANCE"];

  for (var n = 0; n < theKinds.length; n++) {

  if (app.activeDocument.activeLayer.kind == theKinds) {

  alert ("layer is ineligible");

  checksOut = false;

  }

  };

  return checksOut

  };

////// scale the layers //////

function positionTheLayers () {

  app.activeDocument.suspendHistory("scale and rotate", "main()");

function main () {

  app.activeDocument.activeHistoryState = thisState;

  var thePos = Number(dlg.scale.number.text);

try {

var idTrnf = charIDToTypeID( "Trnf" );

    var desc3 = new ActionDescriptor();

    var idnull = charIDToTypeID( "null" );

        var ref2 = new ActionReference();

        var idLyr = charIDToTypeID( "Lyr " );

        var idOrdn = charIDToTypeID( "Ordn" );

        var idTrgt = charIDToTypeID( "Trgt" );

        ref2.putEnumerated( idLyr, idOrdn, idTrgt );

    desc3.putReference( idnull, ref2 );

    var idFTcs = charIDToTypeID( "FTcs" );

    var idQCSt = charIDToTypeID( "QCSt" );

    var idQcsa = charIDToTypeID( "Qcsa" );

    desc3.putEnumerated( idFTcs, idQCSt, idQcsa );

    var idOfst = charIDToTypeID( "Ofst" );

        var desc4 = new ActionDescriptor();

        var idHrzn = charIDToTypeID( "Hrzn" );

        var idPxl = charIDToTypeID( "#Pxl" );

        desc4.putUnitDouble( idHrzn, idPxl, 0 );

        var idVrtc = charIDToTypeID( "Vrtc" );

        var idPxl = charIDToTypeID( "#Pxl" );

        desc4.putUnitDouble( idVrtc, idPxl,  (activeDocument.activeLayer.bounds[1] - thePos) * (-1));

    var idOfst = charIDToTypeID( "Ofst" );

    desc3.putObject( idOfst, idOfst, desc4 );

executeAction( idTrnf, desc3, DialogModes.NO );

} catch (e) {};

app.refresh();

};

};

Votes

Translate

Translate

Report

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
Engaged ,
Apr 20, 2017 Apr 20, 2017

Copy link to clipboard

Copied

Great! It worked very well here.c.pfaffenbichler, Congratulations on the ability to programmer, beautiful work. I have come to imagine that this is impossible to come true! I'm going to try to add your script to the script I've been using to get more complete and efficient. If I can not, I'll come back again. Thank you

Votes

Translate

Translate

Report

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 ,
Apr 20, 2017 Apr 20, 2017

Copy link to clipboard

Copied

I am afraid the Script is actually somewhat »dirty« in that functions use variables that are not passed to them properly … but in my tests it worked out so far.

Good luck!

Votes

Translate

Translate

Report

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
Engaged ,
Apr 20, 2017 Apr 20, 2017

Copy link to clipboard

Copied

c.pfaffenbichler, Here it works very well! Really the code got me lost, I still have a lot to learn. ... Without wanting to abuse your goodwill, could you give me one more help? I tried harder I could not edit the script by adding these lines of code to make it look like the illustration image below: Thanks

var dlg = new Window ("dialog", "Setup logo" );

      dlg.location = [370,370]

  dlg.orientation = "row";

  

    var pnl = dlg.add('group') 

           pnl.orientation = 'row'; 

           pnl.alignment = ['left','top']; 

    var list = pnl.add('panel',undefined,'Select Color');   

           list.orientation = 'row';

           list.alignment = ['left','top'];

           list.orientation = "row";

           list.add ("statictext", undefined, "Color:");

    var  listdropDown = list.add ("dropdownlist", undefined, ["Black", "White", "Custom         "]);

           listdropDown.selection = 0;

          btnGroup = pnl.add("group");       

          btnGroup.orientation = "column";   

          btnGroup.add ('button', {x:90, y:125, width:90, height:25}, 'Enter', {name:'ok'});

          btnGroup.add ('button', {x:240, y:125, width:90, height:25}, 'Cancel', {name:'cancel'});  

listdropDown.onChange = function(){ 

switch(parseInt(listdropDown.selection)){ 

case 0: // Black

    alert("Black");

break; 

      

case 1: // White

      alert("White");

break; 

   

case 2: // Custom 

alert("Custom");

break;         

    }     

dlg.show ();

Illustration:

Screenshot_1.jpg

Votes

Translate

Translate

Report

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 ,
Apr 20, 2017 Apr 20, 2017

Copy link to clipboard

Copied

I don’t have the time to test now, but I suspect you can use the functions from the Script I posted if you address the slider and edittext via their parent and their indices.

Votes

Translate

Translate

Report

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
Contributor ,
Apr 23, 2017 Apr 23, 2017

Copy link to clipboard

Copied

a question

Can you add a second horizontal slider?

Votes

Translate

Translate

Report

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 ,
Apr 23, 2017 Apr 23, 2017

Copy link to clipboard

Copied

Why not try to modify the script he wrote for you.  Learn some about scripting.  Knowing how to script Photoshop is a skill you will use if you want develop Photoshop tools for yourself. Scripts are more powerful than Photoshop Actions but requires you to develop a scripting skill set. 

This is a script you want for your personal use.  Moving a layer interactively via Photoshop UI is so simple no script is really needed. However It a good practice example to learn some Photoshop scripting. It not a script Photoshop users would download and use. 

IMO these forums are for asking for help to learn to use Adobe Products better and many Adobe user here will help you hone and develop your Photoshop skills. 

I'm sure as second slider can be added go do it.

JJMack

Votes

Translate

Translate

Report

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 ,
Apr 23, 2017 Apr 23, 2017

Copy link to clipboard

Copied

You could duplicate the existing parts (both the UI-elements and the functions), rename the various elements and amend them accordingly.

Votes

Translate

Translate

Report

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
Contributor ,
Apr 23, 2017 Apr 23, 2017

Copy link to clipboard

Copied

I ve changed the script and I can even run it horizontally

But when I go to move the horizontal slider I bring the text back

As it was at the beginning

 

 

This script changed:

// 2017, use it at your own risk;
#target photoshop
var checksOut = true;
checksOut = checkPhotoshop(checksOut);
// do the operation if everything has checked out;
if (checksOut == true) {
// set the ruler units;
var originalRulerUnits = app.preferences.rulerUnits;
app.preferences.rulerUnits = Units.PIXELS;

var myDocument = app.activeDocument;
var oneWidth = myDocument.width;
var theHeight = myDocument.heght;

var thisState = myDocument.activeHistoryState;
var theFirstState = myDocument.activeHistoryState;
var oneWidth = myDocument.width;
var theHeight = myDocument.height;

var dlg = new Window("dialog", "stuff", [500,300,920,500]);
// position;
dlg.scale_1 = dlg.add('panel', [15,15,405,65], 'ORZ');
dlg.scale_1.slider = dlg.scale_1.add('slider', [12,12,300,32]);
dlg.scale_1.slider.minvalue = 0;
dlg.scale_1.slider.maxvalue = oneWidth;
dlg.scale_1.slider.value = activeDocument.activeLayer.bounds[0];
dlg.scale_1.number = dlg.scale_1.add('edittext', [312,12,372,30], 0);

dlg.scale_1.number.text = activeDocument.activeLayer.bounds[0];
dlg.scale_1.slider.onChanging = function ()

{dlg.scale_1.number.text = Math.round(this.value)};
dlg.scale_1.slider.onChange = positionTheLayersORZ;

dlg.scale_1.number.onChange = function () {
  while (this.text.indexOf(",") != -1) {this.text = this.text.replace(",", ".")};
  while (this.text.indexOf(".") != this.text.lastIndexOf(".")) {this.text = this.text.replace(".", "")};
// checking if entry is numeric, thanks to xbytor;
  if (this.text.match(/[^\-\.\d]/)) {
  this.text = this.text.replace(/[^\-\.\d]/g, '');
  }
  if (this.text == "") {this.text = 0};
  while (Number (this.text) > oneWidth) {this.text = oneWidth};
  while (Number (this.text) < 0) {this.text = 0};
  var theNumber = Number(dlg.scale_1.number.text);
  dlg.scale_1.slider.value = theNumber;
  positionTheLayersORZ()
  };

dlg.scale = dlg.add('panel', [15,75,405,125], 'VRT');
dlg.scale.slider = dlg.scale.add('slider', [12,12,300,32]);
dlg.scale.slider.minvalue = 0;
dlg.scale.slider.maxvalue = theHeight;
dlg.scale.slider.value = activeDocument.activeLayer.bounds[1];
dlg.scale.number = dlg.scale.add('edittext', [312,12,372,30], 0);
dlg.scale.number.text = activeDocument.activeLayer.bounds[1];

dlg.scale.slider.onChanging = function () {dlg.scale.number.text = Math.round(this.value)};
dlg.scale.slider.onChange = positionTheLayers;
dlg.scale.number.onChange = function () {
  while (this.text.indexOf(",") != -1) {this.text = this.text.replace(",", ".")};
  while (this.text.indexOf(".") != this.text.lastIndexOf(".")) {this.text = this.text.replace(".", "")};
// checking if entry is numeric, thanks to xbytor;
  if (this.text.match(/[^\-\.\d]/)) {
  this.text = this.text.replace(/[^\-\.\d]/g, '');
  }
  if (this.text == "") {this.text = 0};
  while (Number (this.text) > theHeight) {this.text = theHeight};
  while (Number (this.text) < 0) {this.text = 0};
  var theNumber = Number(dlg.scale.number.text);
  dlg.scale.slider.value = theNumber;
  positionTheLayers()
  };

// buttons for ok and cancel;
dlg.buttons = dlg.add('panel', [15,135,405,185], '');
dlg.buttons.buildBtn = dlg.buttons.add('button', [13,12,185,34], 'OK', {name:'ok'});
dlg.buttons.cancelBtn = dlg.buttons.add('button', [195,12,370,34], 'Cancel', {name:'cancel'});
// show dialog;
dlg.center();
// show dialog;
var myReturn = dlg.show ();
////////////////////////////////////
if (myReturn == 1) {
// select the layers;
  dlg.close();
  //reselectLayers0 (myDocument, theLayers);
  }
else {
// go back in history and select the layers;
  myDocument.activeHistoryState = theFirstState;
  };
app.preferences.rulerUnits = originalRulerUnits;
};
////////////////////////////////////
////////////////////////////////////
////////////////////////////////////
// thanks to kasyan servetsky;
function checkPhotoshop(checksOut) {
  if (app.documents.length == 0) {
  alert("no documents are open. please open a document and try again");
  checksOut = false
  };
  var theKinds = ["LayerKind.BLACKANDWHITE",
  "LayerKind.BRIGHTNESSCONTRAST",
  "LayerKind.CHANNELMIXER",
  "LayerKind.COLORBALANCE",
  "LayerKind.CURVES",
  "LayerKind.EXPOSURE",
  "LayerKind.GRADIENTMAP",
  "LayerKind.HUESATURATION",
  "LayerKind.INVERSION",
  "LayerKind.LAYER3D",
  "LayerKind.LEVELS",
  "LayerKind.PHOTOFILTER",
  "LayerKind.POSTERIZE",
  "LayerKind.SELECTIVECOLOR",
  "LayerKind.THRESHOLD",
  "LayerKind.VIBRANCE"];
  for (var n = 0; n < theKinds.length; n++) {
  if (app.activeDocument.activeLayer.kind == theKinds) {
  alert ("layer is ineligible");
  checksOut = false;
  }
  };
  return checksOut
  };

////// scale the layers //////
function positionTheLayersORZ () {
app.activeDocument.suspendHistory("scale and rotate", "main()");
function main () {
  app.activeDocument.activeHistoryState = thisState;
  var thePos = Number(dlg.scale_1.number.text);
try {
var idTrnf = charIDToTypeID( "Trnf" );
    var desc3 = new ActionDescriptor();
    var idnull = charIDToTypeID( "null" );
        var ref2 = new ActionReference();
        var idLyr = charIDToTypeID( "Lyr " );
        var idOrdn = charIDToTypeID( "Ordn" );
        var idTrgt = charIDToTypeID( "Trgt" );
        ref2.putEnumerated( idLyr, idOrdn, idTrgt );
    desc3.putReference( idnull, ref2 );
   
    var idFTcs = charIDToTypeID( "FTcs" );
    var idQCSt = charIDToTypeID( "QCSt" );
    var idQcsa = charIDToTypeID( "Qcsa" );
    desc3.putEnumerated( idFTcs, idQCSt, idQcsa );
    var idOfst = charIDToTypeID( "Ofst" );
        var desc4 = new ActionDescriptor();
        var idHrzn = charIDToTypeID( "Hrzn" );
        var idPxl = charIDToTypeID( "#Pxl" );
        desc4.putUnitDouble( idHrzn, idPxl, (activeDocument.activeLayer.bounds[0] - thePos) * (-1));
        var idVrtc = charIDToTypeID( "Vrtc" );
        var idPxl = charIDToTypeID( "#Pxl" );
        desc4.putUnitDouble( idVrtc, idPxl,  0);
    var idOfst = charIDToTypeID( "Ofst" );
    desc3.putObject( idOfst, idOfst, desc4 );
executeAction( idTrnf, desc3, DialogModes.NO );
} catch (e) {};
app.refresh();
};
};

////// scale the layers //////
function positionTheLayers () {
app.activeDocument.suspendHistory("scale and rotate", "main()");
function main () {
  app.activeDocument.activeHistoryState = thisState;
  var thePos = Number(dlg.scale.number.text);
try {

var idTrnf = charIDToTypeID( "Trnf" );
    var desc3 = new ActionDescriptor();
    var idnull = charIDToTypeID( "null" );
        var ref2 = new ActionReference();
        var idLyr = charIDToTypeID( "Lyr " );
        var idOrdn = charIDToTypeID( "Ordn" );
        var idTrgt = charIDToTypeID( "Trgt" );
        ref2.putEnumerated( idLyr, idOrdn, idTrgt );
    desc3.putReference( idnull, ref2 );
   
    var idFTcs = charIDToTypeID( "FTcs" );
    var idQCSt = charIDToTypeID( "QCSt" );
    var idQcsa = charIDToTypeID( "Qcsa" );
    desc3.putEnumerated( idFTcs, idQCSt, idQcsa );
    var idOfst = charIDToTypeID( "Ofst" );
        var desc4 = new ActionDescriptor();
        var idHrzn = charIDToTypeID( "Hrzn" );
        var idPxl = charIDToTypeID( "#Pxl" );
        desc4.putUnitDouble( idHrzn, idPxl, 0 );
        var idVrtc = charIDToTypeID( "Vrtc" );
        var idPxl = charIDToTypeID( "#Pxl" );
        desc4.putUnitDouble( idVrtc, idPxl,  (activeDocument.activeLayer.bounds[1] - thePos) * (-1));
    var idOfst = charIDToTypeID( "Ofst" );
    desc3.putObject( idOfst, idOfst, desc4 );
executeAction( idTrnf, desc3, DialogModes.NO );
} catch (e) {};
app.refresh();
};
};

Votes

Translate

Translate

Report

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 ,
Apr 24, 2017 Apr 24, 2017

Copy link to clipboard

Copied

So did you succeed in amending it according to your needs?

Votes

Translate

Translate

Report

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
Contributor ,
Apr 24, 2017 Apr 24, 2017

Copy link to clipboard

Copied

The problem is that if you use move vertical text

And then the horizontal one returns to the starting point

I would like that after you move vertically and then horizontally do not return to the starting point

According to you can you do?

Votes

Translate

Translate

Report

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 ,
Apr 24, 2017 Apr 24, 2017

Copy link to clipboard

Copied

You need to use both the horizontal and vertical entry in the function, now one is set to 0.

Votes

Translate

Translate

Report

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
Contributor ,
Apr 24, 2017 Apr 24, 2017

Copy link to clipboard

Copied

How should I do this to implement this feature

Sorry if I ask too much

Votes

Translate

Translate

Report

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 ,
Apr 24, 2017 Apr 24, 2017

Copy link to clipboard

Copied

You have two functions and in each one you set one value to 0.

////// scale the layers //////
function positionTheLayers () {
app.activeDocument.suspendHistory("scale and rotate", "main()");
function main () {
  app.activeDocument.activeHistoryState = thisState;
  var thePos = Number(dlg.scale.number.text);
  var thePosHr = Number(dlg.scale_1.number.text);
try {
var idTrnf = charIDToTypeID( "Trnf" );
    var desc3 = new ActionDescriptor();
    var idnull = charIDToTypeID( "null" );
        var ref2 = new ActionReference();
        var idLyr = charIDToTypeID( "Lyr " );
        var idOrdn = charIDToTypeID( "Ordn" );
        var idTrgt = charIDToTypeID( "Trgt" );
        ref2.putEnumerated( idLyr, idOrdn, idTrgt );
    desc3.putReference( idnull, ref2 );
  
    var idFTcs = charIDToTypeID( "FTcs" );
    var idQCSt = charIDToTypeID( "QCSt" );
    var idQcsa = charIDToTypeID( "Qcsa" );
    desc3.putEnumerated( idFTcs, idQCSt, idQcsa );
    var idOfst = charIDToTypeID( "Ofst" );
        var desc4 = new ActionDescriptor();
        var idHrzn = charIDToTypeID( "Hrzn" );
        var idPxl = charIDToTypeID( "#Pxl" );
        desc4.putUnitDouble( idHrzn, idPxl, (activeDocument.activeLayer.bounds[0] - thePosHr) * (-1));
        var idVrtc = charIDToTypeID( "Vrtc" );
        var idPxl = charIDToTypeID( "#Pxl" );
        desc4.putUnitDouble( idVrtc, idPxl,  (activeDocument.activeLayer.bounds[1] - thePos) * (-1));
    var idOfst = charIDToTypeID( "Ofst" );
    desc3.putObject( idOfst, idOfst, desc4 );
executeAction( idTrnf, desc3, DialogModes.NO );
} catch (e) {};
app.refresh();
};
};

Votes

Translate

Translate

Report

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
Contributor ,
Apr 24, 2017 Apr 24, 2017

Copy link to clipboard

Copied

LATEST

Thanks now works perfectly.

Votes

Translate

Translate

Report

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
Engaged ,
Apr 21, 2017 Apr 21, 2017

Copy link to clipboard

Copied

 

var dlg = new Window ("dialog", "Setup logo" );
dlg.location = [370,370]
dlg.orientation = "row";
var pnl = dlg.add('group')
pnl.orientation = 'row';
pnl.alignment = ['left','top'];
var list = pnl.add('panel',undefined,'Select Color');
list.orientation = 'row';
list.alignment = ['left','top'];
list.orientation = "row";
list.add ("statictext", undefined, "Color:");
var listdropDown = list.add ("dropdownlist", undefined, ["Black", "White", "Custom"]);
listdropDown.selection = 0;
btnGroup = pnl.add("group");
btnGroup.orientation = "column";
btnGroup.add ('button', {x:90, y:125, width:90, height:25}, 'Enter', {name:'ok'});
btnGroup.add ('button', {x:240, y:125, width:90, height:25}, 'Cancel', {name:'cancel'});

listdropDown.onChange = function(){
	switch(parseInt(listdropDown.selection)){
		case 0: // Black
			alert("Black");  break;
		case 1: // White
			alert("White");  break;
		case 2: // Custom
			alert("Custom");  break;
	}
}

dlg.show ();

 

I struggled a bit to edit the script, but I achieved my great goal and I am very happy with the final result 🙂
I want to thank you once again c.pfaffenbichler for the great help. Thank you brother and congratulations on the beautiful work.

 

Here's how it worked:

Setup Logo Script

Votes

Translate

Translate

Report

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 ,
Apr 20, 2017 Apr 20, 2017

Copy link to clipboard

Copied

Hi c.pfaffenbichler​,

good work

But there is a typo in this line: var theHeight = myDocument.heght;

(But this is ok, because of this line is doubled.)

Furthermore one function is missing: reselectLayers0 (myDocument, theLayers);

But after all a really good work.

Votes

Translate

Translate

Report

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 ,
Apr 20, 2017 Apr 20, 2017

Copy link to clipboard

Copied

Thanks, good observations.

The line

reselectLayers0 (myDocument, theLayers);

should be removed altogether.

Votes

Translate

Translate

Report

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