1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| /* ADS */
var AlignDistributeSelector = {
// +ADSTypes
CENTERV: charIDToTypeID("AdCV"),
CENTERH: charIDToTypeID("AdCH"),
TOP: charIDToTypeID("AdTp"),
BOTTOM: charIDToTypeID("AdBt"),
LEFT: charIDToTypeID("AdLf"),
RIGHT: charIDToTypeID("AdRg"),
HORIZONTAL: charIDToTypeID("AdHr"),
VERTICAL: charIDToTypeID("AdVr"),
// +exec( ADSType )
exec : function ( ADSType ) {
var ad = new ActionDescriptor();
var rf = new ActionReference();
rf.putEnumerated( this._2, this._3, this._4 );
ad.putReference( this._1, rf );
ad.putEnumerated( this._5, this._6, ADSType );
executeAction( this._0, ad, DialogModes.NO );
},
// -Privates
_0 : charIDToTypeID( "Algn" ),
_1 : charIDToTypeID( "null" ),
_2 : charIDToTypeID( "Lyr " ),
_3 : charIDToTypeID( "Ordn" ),
_4 : charIDToTypeID( "Lnkd" ),
_5 : charIDToTypeID( "Usng" ),
_6 : charIDToTypeID( "ADSt" )
}; |
Partager