Need help on transform

Hi How are parameters related to the processing operation. I guessed the as parameter but do not know how they relate in photoshop. How does the change in the impact of one other parameter. How is the relationship.

function Distort()
{

var id3535 = charIDToTypeID ("Trnf");
var desc593 = new ActionDescriptor();
var id3536 = charIDToTypeID ("null");
ref21 var = new ActionReference();
var id3537 = charIDToTypeID ("Lyr");
var id3538 = charIDToTypeID ('Ordn');
var id3539 = charIDToTypeID ("Trgt");
ref21.putEnumerated (id3537, id3538, id3539);
desc593.putReference (id3536, ref21);
var id3540 = charIDToTypeID ("CIE");
var id3541 = charIDToTypeID ("QCSt");
var id3542 = charIDToTypeID ("Qcsa");
desc593.putEnumerated (id3540, id3541, id3542);
var id3543 = charIDToTypeID ("Ofst");
var desc594 = new ActionDescriptor();
var id3544 = charIDToTypeID ("Hrzn");
var id3545 = charIDToTypeID ("#Pxl");
desc594.putUnitDouble (id3544, id3545, 0.00000);             hRZN //horizontal x
var id3546 = charIDToTypeID ("Vrtc");
var id3547 = charIDToTypeID ("#Pxl");
desc594.putUnitDouble (id3546, id3547, 0.00000);            VRTC verticulo
var id3548 = charIDToTypeID ("Ofst");
desc593.putObject (id3543, id3548, desc594);

var id3549 = charIDToTypeID ("Wdth");                wdth
var id3550 = charIDToTypeID ("#Prc");
desc593.putUnitDouble (id3549, id3550, 100.00);             / * Scale * /.
var id3551 = charIDToTypeID ("Hght");                hght
var id3552 = charIDToTypeID ("#Prc");              #prc
desc593.putUnitDouble (id3551, id3552, 100.00);

var id3553 = charIDToTypeID ("Skew");               //-------
var desc595 = new ActionDescriptor();
var id3554 = charIDToTypeID ("Hrzn");
var id3555 = charIDToTypeID ("#Ang");
desc595.putUnitDouble (id3554, id3555, 0.000000);         #ang
var id3556 = charIDToTypeID ("Vrtc");
var id3557 = charIDToTypeID ("#Ang");
desc595.putUnitDouble (id3556, id3557, 0.000000);          #ang
var id3558 = charIDToTypeID ("NTP");
desc593.putObject (id3553, id3558, desc595);
var id3559 = charIDToTypeID ("Marko");
var id3560 = charIDToTypeID ("#Ang");
desc593.putUnitDouble (id3559, id3560, 0.000000);         England (angle of body)
var id3561 = charIDToTypeID ("Usng");
var desc596 = new ActionDescriptor();
var id3562 = charIDToTypeID ("Hrzn");
var id3563 = charIDToTypeID ("#Prc");
desc596.putUnitDouble (id3562, id3563, 0.00000);      hRZN oblique #Prc
var id3564 = charIDToTypeID ("Vrtc");
var id3565 = charIDToTypeID ("#Prc");
desc596.putUnitDouble (id3564, id3565,.000000);      VRTC
var id3566 = charIDToTypeID ("NTP");
desc593.putObject (id3561, id3566, desc596);
executeAction (id3535, desc593, DialogModes.NO);

}

Thank you

I don't know any way to directly put the handles. As Xbytor says, most writers I know not to make the transformation in the GUI with the plugin from scriptlistner running to get the parameters or the value of the DialogModes DialogModes.ALL and allow the user of the script do the transformation.

If you really want to understand the transformation below descriptor is my notes on the descriptor. Note to does not work as is. It is just for comments and does not all string parameters.

    var desc = new ActionDescriptor();
        var ref = new ActionReference();
        ref.putEnumerated( charIDToTypeID( "Lyr " ), icharIDToTypeID( "Ordn" ), charIDToTypeID( "Trgt" ));
    desc.putReference( charIDToTypeID( "null" ), ref );
     // 0ne of the 9 anchor points in the option bar or "Qcsi" for custom anchor
    desc.putEnumerated( charIDToTypeID( "FTcs" ), charIDToTypeID( "QCSt" ), charIDToTypeID( "Qcsa" ) );
          /* this block is only needed for "Qcsi"
        var pointDesc = new ActionDescriptor();
        pointDesc.putUnitDouble( charIDToTypeID( "Hrzn" ), charIDToTypeID( "#Pxl" ), 50.000000 );
        pointDesc.putUnitDouble( charIDToTypeID( "Vrtc" ), charIDToTypeID( "#Pxl" ), 50.000000 );
    desc.putObject( charIDToTypeID( "Pstn" ), charIDToTypeID( "Pnt " ) pointDesc );
     */
        var offsetDesc = new ActionDescriptor();
          // + or - amount to translate in pixels.
          // activeDocument.selection.translate( new UnitValue( 50, 'px' ), new UnitValue( 50, 'px' ), AnchorPosition.MIDDLECENTER  );
          // or activeDocument.selection.translate( new UnitValue( 50, 'px' ), new UnitValue( 50, 'px' ), AnchorPosition.MIDDLECENTER );
        offsetDesc.putUnitDouble( charIDToTypeID( "Hrzn" ), icharIDToTypeID( "#Pxl" ) 50.000000 );
        offsetDesc.putUnitDouble( charIDToTypeID( "Vrtc" ), charIDToTypeID( "#Pxl" ), 50.000000 );
    desc.putObject( charIDToTypeID( "Ofst" ), charIDToTypeID( "Ofst" ), offsetDesc );
     // + or - amount to scale in percent.
     //  activeDocument.selection.resize( 110, 110 )
     // activeDocument.activeLayer.resize( 110, 110 )
    desc.putUnitDouble( charIDToTypeID( "Wdth" ), charIDToTypeID( "#Prc" ), 110.000000 );
    desc.putUnitDouble( charIDToTypeID( "Hght" ), charIDToTypeID( "#Prc" ), 100.000000 );
     // + or - 90 degree to skew. no DOM API method.
        var skewDesc = new ActionDescriptor();
        skewDesc.putUnitDouble( charIDToTypeID( "Hrzn" ), charIDToTypeID( "#Ang" ), 50.000000 );
        skewDesc.putUnitDouble( charIDToTypeID( "Vrtc" ), charIDToTypeID( "#Ang" ), 0.000000 );
    desc.putObject( charIDToTypeID( "Skew" ), charIDToTypeID( "Pnt " ), skewDesc );
    // 0 to 359 degree to rotate
     //  activeDocument.selection.rotate( 90,AnchorPosition.MIDDLECENTER );
     // activeDocument.activeLayer.rotate( 90, AnchorPosition.MIDDLECENTER );
    desc.putUnitDouble( charIDToTypeID( "Angl" ), charIDToTypeID( "Angl" ), 90.000000 );
executeAction( charIDToTypeID( "Trnf" ), desc, DialogModes.NO );

Everything seems simple are you I just want to make one thing such that to rotate or translate. He also seems to be ok if you want to translate, scale, rotate and tilt in one direction.

When you try to do all that things get strange. Is now greater output of scriptlistner parameters in the options bar, and these changes vary with which point anchor is used.

I let fall a long time ago trying to understand this and now follow the suggestion to use different saved transformations or let the user themselves.

Tags: Photoshop

Similar Questions

  • Need help to transform a shape layer in a layer mask blur adjustment

    I understand how to do a blur mask on the image adjustment layer, so it blurs the images below, which is essentially what I'm trying to do, but in this case, I already have the shape layer (or rather imported from Illustrator > converted to a shape layer) and is in a nested composition.

    First of all, is it possible to blur the images of a composition if the adjustment layer is nested in a composition of the child, or the adjustment layer must be in the parent publication; the composition is blurry?

    Second of all, how we simply take a form that they have already created and use that for a mask, in this case, a mask that will blur everything below?

    Forum thanks!

    There are a few things that are not effective in your workflow and your approach.

    Lets talk first about the Illustrator files in After Effects. Firstly, absolutely the only reason you would ever convert a layer to illustrator in a form would be to use animator tools found in the add menu at the top of the shape layer properties in the timeline panel or to animate a Bézier path on this layer. There is no other advantage in converting a vector layer to a shape. NONE.

    Second, if you want to hide an adjustment layer then you can draw the mask directly on the adjustment layer or any layer with transparency, including an illustrator layer, layer photoshop, any hidden layer or layer shape directly on top of the adjustment layer and use this layer with transparency as an Alpha or Alpha reverse cache by approach to the adjustment layer.

    You can use the luminance values of any layer that has no transparency that a luma or reversed hides by luma approach. The white areas offer transparency with luma standard. IOW, if you have a radial with white in the middle and black gradient on the edge and you use a luma matte and white will be transparent on the layer below.

    Standard caches only affects the layer immediately below the source.

    Adjustment effect layers each layer directly under the adjustment layer. Masks and caches can be used to control the effects of an adjustment layer.

    You can also use masks on any layer to control the effect added to this layer if you have a recent version of AE. You will find the option under options to Compositing.

    If you have any layer with transparency or the strong luminance values, you can use Auto Trace to generate a cache for this layer based on transparency or luminance. Any way shape mask or Bézier path can be copied and pasted to another layer.

    We will take your last question now. You should be able to answer. To use any shape you created as a mask, you use this layer as a track matte.

    We will change that approach a bit and assume that you have created a shape layer by using the pen tool or converted an Illustrator layer to a shape. You have a path that you can be found by selecting the shape layer and by pressing twice the key U. find the path you want to copy, rotate options path to reveal animation controls and to set a single keyframe and then copy (Ctrl/Cmnd + c). Even of the forms created with parametric tools like star, ellipse, rectangle can be converted into a path by right-clicking the shape and selecting convert to paths. When you have copied the path put you on the layer where you want to paste the path, select the pen tool to begin to draw a mask, click anywhere on the layer and paste it (ctrl/cmnd + v) and that you have created the mask. This works for forms and masks on any layer.

    Here's a bet to keep everything by copying and pasting masks. The size and position of a path is calculated from the center of the layer and has no relationship to scaling, rotating, or the position of the layer. If you drew a mask on a layer that is resized to 50% and moved to the top right of the comp and rotated 45 ° and then paste this path to any other layer you will NOT get a path in the same position and the same size as the layer sampled in the model. You end up with a path that match if every sampled layer transformation properties have been reset and the layer was at the center of the model and the rotation and scale were normal. You must pay attention to this issue by copying and pasting traces of Bézier.

    I missed a question type. If you nest or call a layer previously and there is an adjustment layer in the main computer it will affect all layers below. If you dial before a layer and a top adjustment layer then only layers in the nested model will be influenced by the adjustment layer.  I replied before but wanted to make sure.

    BE very careful when you watch YouTube tutorials on workflow because a growing number of them is bad teaching techniques and pointing you to the bottom of the dead-end alleys. Make sure you vet your training.

    If you have any other questions the best place to find good community resources is to type a word in the search help field in the upper right of the AE. For example, if you typed layer adjustment or masks, you would find a lot of very good advice on how to use these features.

  • Need help with transformation Script

    Well I'm back for the 2nd time today. I would like to thank all those who helped me with my last issue. But now I have another question that I'm developing. Craig & Dan here me helped with 2 separate sending email responders based on questions in the form.

    You can view the form on this link:
    http://mswebsol.com/gaslockguarantee/creditapplication.cfm

    The problem I have right now, is that I don't get the results that I'm looking. Basically lets say you choose Yes to all 4 questions but on the 5th issue, you click on no. Well as it is now the script sends the answer by e-mail indicating your accepted. But what I'm trying to make, is that if you choose not to one of the questions you will automatically get an e-mail response that says you are not admitted.

    If I choose not to question, I'll get the answer correct email which is "your not accepted" to make it work for the first question. But if you choose Yes to the first question and no to the 2nd or any other question you will get the wrong answer that says "you are accepted."

    Here is the code

    < Cfif StructKeyExists(form,"Q1") >
    < cfif form. Q1 is 'Yes' >
    < intrusion via cfmail > accepting... < / intrusion via cfmail >
    < cfelse >
    < intrusion via cfmail > not accepting... < / intrusion via cfmail >
    < / cfif >

    < cfelseif StructKeyExists (form, "Q2") >
    < cfif form. Q2 eq 'Yes' >
    < intrusion via cfmail > accepting... < / intrusion via cfmail >
    < cfelse >
    < intrusion via cfmail > not accepting... < / intrusion via cfmail >
    < / cfif >

    < cfelseif StructKeyExists (form, "Q3") >
    < cfif form. Q3 eq 'Yes' >
    < intrusion via cfmail > accepting... < / intrusion via cfmail >
    < cfelse >
    < intrusion via cfmail > not accepting... < / intrusion via cfmail >
    < / cfif >

    < cfelseif StructKeyExists (form, "Q4") >
    < cfif form. Q4 eq 'Yes' >
    < intrusion via cfmail > accepting... < / intrusion via cfmail >
    < cfelse >
    < intrusion via cfmail > not accepting... < / intrusion via cfmail >
    < / cfif >

    < cfelseif StructKeyExists (form, "Q5") >
    < cfif form. Q5 eq 'Yes' >
    < intrusion via cfmail > accepting... < / intrusion via cfmail >
    < cfelse >
    < intrusion via cfmail > not accepting... < / intrusion via cfmail >
    < / cfif >
    < / cfif >

    Any help would be greatly appreciated!

    Thanks to you all

    Derek Bess
    @ Coldfusion newbie

    If I understand you well, all your if/else logic boils down to a simple:
    (1) one of the answers is "No" - send 'rejected' by email
    (2) all the answers are "Yes" - email "accepted."

    I suggest you cfparam all default = 'no' on your action and answers
    the page, so that you don't have to keep control of structkeyexists:


    ...

    After that, all you need is:


    .. .send 'rejected' code email here...

    .. .send 'admitted' code email here...

    HTH

    Azadi Saryev
    SABAI - Dee.com
    http://www.SABAI-Dee.com/

  • Need help troubleshooting transformation slow speed on my new iMac

    New iMac, purchased in August 2015, worked well until this week. Now, everything happens very slowly. Color wheel, slow, typing speed, applications crashing, etc.

    It's an iMac with 1.4 GHZ Intel Core i5 and 8 GB of memory. From this moment, I have 433.16 free BG to 498.93.

    I just upgraded to 10.11.1, but the speed slowed down before the upgrade.

    I have a suspicion of naivety that recent web video game adventures of my son may have something to do with the slow down. He's young, and he may have clicked on somehing involuntarily. Is there a way to eliminate unintentional downloads? Other suggestions?

    Thank you!

    It is likely that you are right, but you can download Entrecheck http://www.etresoft.com/etrecheck to make sure.

    Post your results in this thread.

  • Need help for optical safety circuit.

    I buy these parts and prototype with real components, but since I multisim, I thought it would be nice to create the circuit and maybe work through issues I can practically.

    I need a circuit that takes 120 VCA, generates 5 VDC and 1.5Vdc power of optical transmitter and receiver.  I actually use a data port because he has great range and is pretty cheap.  Rather than send the binary code well I just send a light stead that is broken or not broken through doors and windows in my house.  Then the receiver sees this as an entry and order a relay.

    I tried several voltage regulators that come with multisim, but I get an error of execution of my circuit.  Really I can't the 120 VAC to power levels necessary for the functioning of the optics.

    Otherwise I might want to run on a system 120Vdc with battery backup, so throw a 120Vdc up to 20 v DC switching power supply - but I have not found a SMP in the library which takes 120 as input and as output 20.

    Basic plan: 120VAC source-> transform to 24Vac-> Full bridge rectifier to ~ 20 v DC-> voltage capacitor filter on the input of two voltage regulators (1 to 5 VDC, 1 to 1.5Vdc) - then circuit since the two power supply of the transmitter and the receiver.

    I just need help for 5V and 1.5V, from there, I know that the real world circuit will work component tests already carried out.  Thanks for reading.

    I didn't Multism so I can't advise you on the compatible models. I ran the model on semiconductors with slight modifications of format on my SPICE simulator based on Berkeley Spice 3f5. I had to change the format of model resistance semiconductors appeal but has not changed any values.

    The output of your power supply circuit 3 (with 5 V, not the 1.5 V regulator regulator) was 4.99995 V.

    There are a few messages about changing templates published for compatibility Multisim woth. You can search those to see if there are any suggestions on what you'll need to fix in the model.

    Lynn

  • I need help on the matrix of action script 3.0

    I need help on the matrix of action script 3.0

    [Ask in the correct forum allows... Left non-technical Forum Lounge for forum specific program... MOD]

    to apply a matrix for mc mat oppose:

    var mat: Matrix = new Matrix;

    mat.a = Whatever;

    mat.b =

    mat.c =

    mat.d =

    mast. TX =

    mat.Ty =

    MC. Transform.Matrix = Matt;

  • Need help in the XSLT file

    Hello

    Need help to come up with a construction xsl. Am using SOA 11.1.1.5. I have the underside of the input samples

    < root element >

    < location >

    < Location_id > Location_ID10 < / location_id >

    < Location_Code > Location_Code11 < / Location_Code >

    State12 < of State > < / State >

    < / location >

    < location >

    < Location_id > Location_ID13 < / location_id >

    < Location_Code > Location_Code14 < / Location_Code >

    State12 < of State > < / State >

    < / location >

    < location >

    < Location_id > Location_ID16 < / location_id >

    < Location_Code > Location_Code17 < / Location_Code >

    State18 < of State > < / State >

    < / location >

    < location >

    < Location_id > Location_ID91 < / location_id >

    < Location_Code > Location_Code91 < / Location_Code >

    State19 < of State > < / State >

    < / location >

    < location >

    < Location_id > Location_ID92 < / location_id >

    < Location_Code > Location_Code92 < / Location_Code >

    State19 < of State > < / State >

    < / location >

    < / root >

    Here is what I tried for expected output

    < ns0:root >

    < ns0:Categories >

    < ns0:Category >

    < ns0:CategoryValue >

    < ns0:CategoryValue >

    < ns0:Name > visits12 < / ns0:Name >

    < ns0:Code > visits12 < / ns0:Code >

    < ns0:CategoryValue >

    < ns0:Name > Location_ID10 < / ns0:Name >

    < ns0:Code > Location_Code11 < / ns0:Code >

    < / ns0:CategoryValue >

    < ns0:CategoryValue >

    < ns0:Name > Location_ID13 < / ns0:Name >

    < ns0:Code > Location_Code14 < / ns0:Code >

    < / ns0:CategoryValue >

    < / ns0:CategoryValue >

    < ns0:CategoryValue >

    State18 < ns0:Name > < / ns0:Name >

    State18 < ns0:Code > < / ns0:Code >

    < ns0:CategoryValue >

    < ns0:Name > Location_ID16 < / ns0:Name >

    < ns0:Code > Location_Code17 < / ns0:Code >

    < / ns0:CategoryValue >

    < / ns0:CategoryValue >

    < ns0:CategoryValue >

    < ns0:Name > State19 < / ns0:Name >

    < ns0:Code > State19 < / ns0:Code >

    < ns0:CategoryValue >

    < ns0:Name > Location_ID91 < / ns0:Name >

    < ns0:Code > Location_Code92 < / ns0:Code >

    < / ns0:CategoryValue >

    < ns0:CategoryValue >

    < ns0:Name > Location_ID91 < / ns0:Name >

    < ns0:Code > Location_Code92 < / ns0:Code >

    < / ns0:CategoryValue >

    < / ns0:CategoryValue >

    < / ns0:CategoryValue >

    < / ns0:Category >

    < / ns0:Categories >

    < / ns0:root >

    But here's what I mean I know there is a problem with xslt, but I'm hard to fix if need help

    < ns0:root >

    < ns0:Categories >

    < ns0:Category >

    < ns0:CategoryValue >

    < ns0:CategoryValue >

    < ns0:Name > visits12 < / ns0:Name >

    < ns0:Code > visits12 < / ns0:Code >

    < ns0:CategoryValue >

    < ns0:Name > Location_ID10 < / ns0:Name >

    < ns0:Code > Location_Code11 < / ns0:Code >

    < / ns0:CategoryValue >

    < / ns0:CategoryValue >

    < ns0:CategoryValue >

    State18 < ns0:Name > < / ns0:Name >

    State18 < ns0:Code > < / ns0:Code >

    < ns0:CategoryValue >

    < ns0:Name > Location_ID16 < / ns0:Name >

    < ns0:Code > Location_Code17 < / ns0:Code >

    < / ns0:CategoryValue >

    < / ns0:CategoryValue >

    < ns0:CategoryValue >

    < ns0:Name > State19 < / ns0:Name >

    < ns0:Code > State19 < / ns0:Code >

    < ns0:CategoryValue >

    < ns0:Name > Location_ID91 < / ns0:Name >

    < ns0:Code > Location_Code91 < / ns0:Code >

    < / ns0:CategoryValue >

    < / ns0:CategoryValue >

    < / ns0:CategoryValue >

    < / ns0:Category >

    < / ns0:Categories >

    < / ns0:root >

    It is ignored if the previous value same as current as if the previous value even running as I want to nest under the same node, as shown above in the expected results.

    Here's xslt I have so far

    ................

    ...........................

    ......

    < xsl: template match = "/" >

    < ns0:root >

    < ns0:Categories >

    < ns0:Category >

    < ns0:CategoryValue >

    < xsl: for-each select = "/ tns:Root - element / tns:Location [not (previous - sibling:tns:Location / tns: State = tns: State)]" >

    < ns0:CategoryValue >

    < ns0:Name >

    < xsl: value-of select = "tns: State" / >

    < / ns0:Name >

    < ns0:Code >

    < xsl: value-of select = "tns: State" / >

    < / ns0:Code >

    < ns0:CategoryValue >

    < ns0:Name >

    < xsl: value-of select = "tns:Location_ID" / >

    < / ns0:Name >

    < ns0:Code >

    < xsl: value-of select = "tns:Location_Code" / >

    < / ns0:Code >

    < / ns0:CategoryValue >

    < / ns0:CategoryValue >

    < / xsl: foreach >

    < / ns0:CategoryValue >

    < / ns0:Category >

    < / ns0:Categories >

    < / ns0:root >

    < / xsl: template >

    < / xsl: stylesheet >

    Thank you.

    You use xslt-style in this kind of case of grouping:

    Try just below xslt:

    http://www.w3.org/1999/XSL/transform.

    xmlns:ns0 = "France" >

    'State' >

    Please answer if it works for you.

  • Need help with mobile layout

    Hello. Need help with my layout sensitive, using straight lines only html5 and css3 that I can understand and explain a novice level please - without any restart. Desktop and mobile are in a single html doc. The desktop version is 'ok '.

    current version (6_2)

    Try to match these mobile Office layouts

    On the mobile version:

    -Impossible to get the buttons nav blocks, vertical text button Align, and align the image of the product (square pictures) to the Center. (margin: auto; does not work)

    I used heights in the header because I'll have code for desktop, mobile and tablet in the CSS so it changes (and do not know how to support better). Also need to Add a link to the logo image background in header.

    Thanks in advance!

    TheOriginal150mph wrote:

    Hello. Need help with my layout sensitive, using straight lines only html5 and css3 that I can understand and explain a novice level please - without any restart. Desktop and mobile are in a single html doc. The desktop version is 'ok '.

    current version (6_2)

    Try to match thesemobile Officelayouts     

    On the mobile version:

    -Impossible to get the buttons nav blocks, vertical text button Align, and align the image of the product (square pictures) to the Center. (margin: auto; does not work)

    Commenting on just a habit of property changing the css if you have defined it for the desktop version. Your nav elements are not vertically Center because you have a bottom padding set on them for the office, there are only changes for mobile in your css media query.

    .main-nav a {}

    display: block;

    text-decoration: none;

    / * padding-bottom: 15px;   */

    Padding: 12px 0;

    }

    Change the properties for the .product-images for mobile boxes: you have float attached to them for the desktop version and which cascade down to the mobile version, unless you change in the media query:

    .product-image {}

    float: none;

    Width: 50%;

    margin: 0 auto 20px auto;

    }

    As I mentioned in one of my posts related to your project, you will probably have to make your product images a bit larger. They fill the area once they form a column to width of 768px screen or you could resist transform them to one column until a little more by using a media query extra set at a narrow screen width to evoke this action

  • Hello, I need help.  in photoshop / editing / color / color / RGB management rules, it is impossible to change this point. Is in the "off" position and I would choose "preserve embedded profiles' I'm on windows 8 and creative cloud for photoshop.

    Hello, I need help. in photoshop / editing / color / color / RGB management rules, it is impossible to change this point. Is in the "off" position and I would choose "preserve embedded profiles' I'm on windows 8 and creative cloud for photoshop.

    Policies automatically goes to "off" If you have your screen as working RGB profile - what is something that you should never do. Always have a standard space like RGB work.

    And Yes, "preserve embedded profiles" is the only sensitive parameter. Others are best for special purposes where you really know what you are doing - at worst they will transform your archive in a unrecoverable mess.

  • I need help Mucow. Please, it's almost over!

    Hi, I need help with a mucow file. It seems to be a simple task, but I can't seem to make it work. Someone with experience in javascript can easily solve this problem. I'm not that proficient in it. Still just a rookie.  Well, in any case this code I am including is basic stuff mucow, with a single line of javascript code.  Please help me thank you.  I think I need to remove a class or a span dynamically with javascript, but I do not know how... Clues on how to fix this... copy the code use in muse remove some elements of list from the bottom to the top.  So tell me what you see is wrong and how do I fix... Thank you in advance to anyone who helps or even tries to help him.

    <?xml version="1.0" encoding="UTF-8"?>
    
    
    <HTMLWidget name="Simple List" formatNumber="1"  localization="none" creator="Adobe Muse Team" defaultWidth="250" defaultHeight="250">
    
    
      <parameters>
      <list name="listPosition" label="List Position:" defaultValue="inside" tooltip="This positions the indicator inside or outside the div.  Note if you place it outside the div you will not be able to see it until you preview it. Outside is best used with alphabets and numerals.">
      <value name="outside" label="Outside"/>
      <value name="inside" label="Inside"/>
      </list>
      <list name="textTransform" label="Text Transform:" defaultValue="none" tooltip="This changes the text appaerance. Preview is instant.">
      <value name="none" label="None"/>
      <value name="capitalize" label="Capitalize"/>
      <value name="uppercase" label="Uppercase"/>
      <value name="lowercase" label="lowercase"/>
      </list>
      <list name="listStyle" label="List Style:" defaultValue="disc" tooltip="This changes the tyoe of indicator that will be used in the list. Inside preview is instant, but outside preview is not">
      <value name="disc" label="Disc"/>
      <value name="circle" label="Circle"/>
      <value name="square" label="Square"/>
      <value name="decimal" label="Decimal Number"/>
      <value name="decimal-leading-zero" label="Decimal Number with Leading 0s"/>
      <value name="lower-alpha" label="Lowercase Alphabet"/>
      <value name="upper-alpha" label="Uppercase Alphabet"/>
      <value name="lower-roman" label="Lowercase Roman Numerals"/>
      <value name="upper-roman" label="Uppercase Roman Numerals"/>
      </list>
      <number name="listSpacer" label="Spacing:" min="-250" max="200" snap="1" step="1" defaultValue="0" tooltip="This will change the spacing between the indicator and the text. Preview is instant. You have a range of (-)250 - 200."/>
      <text name="item1" label="List Item #1:" defaultValue="item 1"/>
      <text name="item2" label="List Item #2:" defaultValue="item 2"/>
      <text name="item3" label="List Item #3:" defaultValue="item 3"/>
      <text name="item4" label="List Item #4:" defaultValue="item 4"/>
      <text name="item5" label="List Item #5:" defaultValue="item 5"/>
      <text name="item6" label="List Item #6:" defaultValue="item 6"/>
      <text name="item7" label="List Item #7:" defaultValue="item 7"/>
      <text name="item8" label="List Item #8:" defaultValue="item 8"/>
      <text name="item9" label="List Item #9:" defaultValue="item 9"/>
      <text name="item10" label="List Item #10:" defaultValue="item 10"/>
      <text name="item11" label="List Item #11:" defaultValue="item 11"/>
      <text name="item12" label="List Item #12:" defaultValue="item 12"/>
      <text name="item13" label="List Item #13:" defaultValue="item 13"/>
      <text name="item14" label="List Item #14:" defaultValue="item 14"/>
      <text name="item15" label="List Item #15:" defaultValue="item 15"/>
      <text name="item16" label="List Item #16:" defaultValue="item 16"/>
      <text name="item17" label="List Item #17:" defaultValue="item 17"/>
      <text name="item18" label="List Item #18:" defaultValue="item 18"/>
      <text name="item19" label="List Item #19:" defaultValue="item 19"/>
      <text name="item20" label="List Item #20:" defaultValue="item 20"/>
      <builtIn name="width"/>
      <builtIn name="height"/>
      <builtIn name="itemUID"/>
      </parameters>
      <headHTML>
    <![CDATA[
    <style>
    #{param_itemUID}
      ul {
      text-transform:{param_textTransform};
      width:{param_width}px;
      height:{param_height}px;
      }
    #{param_itemUID}
      li {
      list-style-position:{param_listPosition};
      list-style-type:{param_listStyle};
      }
    #{param_itemUID}
      .spanSpacer  {
      margin-left:{param_listSpacer}px;
      }
    </style>
    ]]>
      </headHTML>
      <pageItemHTML>
    <![CDATA[
      <ul>
      <li><span class="spanSpacer">{param_item1}</span></li>
      <li><span class="spanSpacer">{param_item2}</span></li>
      <li><span class="spanSpacer">{param_item3}</span></li>
      <li><span class="spanSpacer">{param_item4}</span></li>
      <li><span class="spanSpacer">{param_item5}</span></li>
      <li><span class="spanSpacer">{param_item6}</span></li>
      <li><span class="spanSpacer">{param_item7}</span></li>
      <li><span class="spanSpacer">{param_item8}</span></li>
      <li><span class="spanSpacer">{param_item9}</span></li>
      <li><span class="spanSpacer">{param_item10}</span></li>
      <li><span class="spanSpacer">{param_item11}</span></li>
      <li><span class="spanSpacer">{param_item12}</span></li>
      <li><span class="spanSpacer">{param_item13}</span></li>
      <li><span class="spanSpacer">{param_item14}</span></li>
      <li><span class="spanSpacer">{param_item15}</span></li>
      <li><span class="spanSpacer">{param_item16}</span></li>
      <li><span class="spanSpacer">{param_item17}</span></li>
      <li><span class="spanSpacer">{param_item18}</span></li>
      <li><span class="spanSpacer">{param_item19}</span></li>
      <li><span class="spanSpacer">{param_item20}</span></li>
      </ul>
    ]]>
      </pageItemHTML>
      <bodyEndHTML>
    <![CDATA[
    

    You're right, the jQuery selector must be modified to search for list items with empty span elements, non-empty list items. Try to use something like:

    $("#{param_itemUID}").find("li:has(span:empty)").remove();)

    On another note, the latest version of Muse has bullets and numbered lists incorporated with a lot more customization than holders of mucow above. Take at look: bullets and lists numbers | Adobe Muse CC tutorials

    References:

    http://API.jQuery.com/has-selector/

    http://API.jQuery.com/empty-selector/

  • Need help with image fusion

    Hello

    Before I get to my question, I want to give you a glimpse of the project I'm working on and the aspects that I need help. For a school project, a customer, 94Fifty asked us to create an advertisement that depicts their basketball and could be used in advertising online and in magazines. The 94Fifty of basketball is the world's first "smart ball." It can count how many times you dribbling, the arc of your shot, release time it takes for you shoot, etc. To use the ball, you need an Apple product that can download the application 94Fifty on the App Store, so that this project is done as a collaboration with the company 94Fifty and Apple.

    For my ad, to really capture the idea of being the first smart ball, 94Fifty ball I wanted to mix an image of the texture of the ball of 94Fifty, with the shape and details of a brain, with the slogan being, "A ball that is as smart as you." I have my design buried on, but I'm not sure how to combine the image of the brain with ball should I use layers? How can I remove the pink color of the brain and replace it with the ball while keeping the shape of the brain and the lines creased the brain? Any help and technical that you can give would be greatly appreciated.

    Here are two pictures that I'm trying to mix.

    8376271918_cf0b1b5c4f_o.jpg94fifty ball.png

    I would also try and keep the logo of 94Fifty which is on the ball in the mixed picture.

    Please do not confuse this for to ask me someone to do it for me, it's the exact opposite of what I want, I just need help with what to do.

    Here is a fairly simple method:

    First of all, level of basketball for the type to be horizontal. (Also correct the values of white light - burn at the top left and bottom top right.)

    Mask on white background of the brain and turn the image to 0% of saturation.

    Put the brain on basketball on its own layer. Make the overlay blend mode.

    Using free transform, reshape the brain is greater (rounder), like the basketball, with a visible margin around the edge of the ball.

    -Now, you have a brain in a basketball, but the brain is a bit too subtle.

    Duplicate the layer of brain as many times as you need to get the good contrast (I've duped the layer of brain three times, for a total of four layers of brain).

    You will probably find that you need to use the levels adjustment layers or curves on each layer of the brain, for finer value adjustments. Make sure that each adjustment layer affects only the layer directly below.

  • my iphone need help doesent work!

    my iphone need help doesent work! 5 minutes ago my iphone 4S felt on the ground and now it doesent start but I can still hear the sound of loading until I can do?

    PS: Sorry for my bad English, I'm from the Germany

    Try restarting it by maintaining deep-set buttons home and power together. It may take up to 20 seconds. If she does not return to life, better make an appointment at the genius bar to your Apple store.

  • Need help to reinstall itunes

    Recently had to withdraw Windows 10 votes against 7, on doing so, iTunes didn't work.  I tried to remove iTunes, but get an error not found the path iTunes6464.msi. So I can't uninstall.  I tried to download the latest version, but when it comes to uninstall the old version it fails because it cannot find this file.  Need help to remove and reinstall so it can connect again my devices.

    See this user of ASC. See the section on deleting and reinstalling iTunes.  Troubleshooting problems with iTunes for Windows updates

  • I NEED HELP Please im having a problem to forget my password and when I plug it it says its locked with a password he try to put the itunes thing but

    NEED HELP Please im having a problem to forget my password and when I plug it it says its locked with a password he tried to put the itunes thing but it says enter password I put in what I rember, then said lokced for five minutes help me pls

    Without knowing the password for your iPhone, there is no way to unlock it, bring even you to the Genius Bar. If you continue to enter the wrong password, you will be locked out of your iPhone, and your data will be unaccessable.

  • I need help to recover my iphone

    I got my iphone 6 for more than two years know I default to set up factory reset me gives error tha my sim card is not supported, but I've been with you even with the phone sim card before I reset it please need help.the phone imei-* please help me.

    < personal information under the direction of the host >

    It sounds as if your iPhone may have been hacked for use with the carrier that you used, and now that you have updated, it is locked to the original carrier.

Maybe you are looking for