Create the Script to add a file in an Action name


I have a picture, and I have a practical action that records, it cultures, he saves, cultures it differently and recorded once more. Currently, I have two options for these stops - I can save each crop in a separate folder and batch rename, or I have the break from the action he saves so I can customize the file name. What I would do is create a script (or, if there is an easier way), add this file name if it will save all simply in the same folder that I have to do it manually.

Basically, I start with the name of the file: 'TEST '.

for the first part, it I save as 'TEST '.

for the second record, I want to save it as "TEST_P1".

for the third record, I want to save it as "TEST_P2".

I am brand new to scripting, and is my programming experience with Java and medium in my past, everything feels a little familiar. If someone could help me with this, I would really appreciate it!

Another option is to use the Image Processor Pro script. You must create several actions to different cultures, you want to make to the original document size not a crop of harvest of a crop until the final harvest.  Don't have any records in these actions. Then just use meny file > Automate > Image Processor Pro.  Implement its dialog box to save the file names you want where you want to save them create.  You can also save that in action. The image pro script processor is a Photoshop plug-in.  In the dialog box, it will record the setting you used in the action stage.    Alternatively, you can save the configuration dialog for later use in the IPP dialog before running the process put in place.

You can store as many files as you need with IPP and run your actions simple cultures for each size of harvest. IPP opens you simply file a copy to each of your operations and after the action is performed to save the modified copy of doctment under the name of file you set up. You can configure as many tabs as you want you can even have you resized using IPP option re-size crops.   If the script is easy to use his 10 + lines of script Photoshop...

Tags: Photoshop

Similar Questions

  • How to create the script to compile procedure files in oracle - urgent deadline...

    How to create the script to compile procedure files in oracle.    about to go live and have much .prc pkg in a directory usr/tmp/ar... Po... human resources etc. need to create a script to compile all the files in the folder, then do not open all necessary .prc suggestions on how to do it.   Thank you Tom.

    (1) an urgent need, ASAP,... are words that do not in a forum of volunteer. We are here to help if you need it now, for free, open a SR.

    (2) oracle procedures are not files.

    (3) I think you are trying to run operating system packages, no Oracle procedure. right?

  • How to run the script to EEM/TCL file

    Hello world

    I need to run the EEM script found in this link

    https://supportforums.Cisco.com/document/75806/interface-input-queue-Mon...

    Can you please point me to a HOWTO to download the file and run it under an interface?

    Thank you

    Federico

    Here is the manual how to run scripts tcl file - http://www.cisco.com/c/en/us/td/docs/ios-xml/ios/ios_tcl/configuration/1...

    In short - you download the script to switch via tftp and the tcl implementation with command tclsh interpreter. Then run the command source source

  • Problem with PPR in a table advanced with the insertion of several lines in create the page using 'add a new button '.

    Hello experts,

    I created a page that contains an array of advanced, 6-7fields (including a poplist column)

    Whenever I have add a new using the line add new line button, I get a null pointer exception.

    Code in Scenario1.


    Public Sub handleCurrencyChangeEvent()

    {

    PVO OAViewObject = (OAViewObject) findViewObject ("xxCurrencyPVO1");

    Line OARow = (OARow) pvo.first ();

    OAViewObject dtlVO = (OAViewObject) findViewObject ("xxEcreditCardDtlVO1");

    OARow dtlRow = (OARow) dtlVO.getCurrentRow ();

    String currency = (String) dtlRow.getAttribute ("CurrencyCode");    / / NULL POINTER EXCEPTION

    If ((currency == null) |) ("AED".equals (currency)))

    {

    row.setAttribute ("ExchangeRateTypeRender", Boolean.FALSE);

    row.setAttribute ("ExchangeRateDateRender", Boolean.FALSE);

    row.setAttribute ("ExchangeRateRender", Boolean.FALSE);

    }

    on the other

    {

    row.setAttribute ("ExchangeRateTypeRender", Boolean.TRUE);

    row.setAttribute ("ExchangeRateDateRender", Boolean.TRUE);

    row.setAttribute ("ExchangeRateRender", Boolean.TRUE);

    }

    }

    Public Sub initPVO()

    {

    OAViewObject appPropsVO = (OAViewObject) findViewObject ("xxCurrencyPVO1");

    If (appPropsVO! = null)

    {

    If (appPropsVO.getFetchedRowCount () == 0)

    {

    appPropsVO.setMaxFetchSize (0);

    appPropsVO.executeQuery ();

    appPropsVO.insertRow (appPropsVO.createRow ());

    Line OARow = (OARow) appPropsVO.first ();

    row.setAttribute ("RowKey", new Number (1));

    }

    }

    handleCurrencyChangeEvent();    / / If I comment on this call, there will be no null pointer when I click on the button Add a new rank and PPR will not be the first line when I select the poplist.                 

    }

    Public Sub createDetailRow()

    {

    String hdrId;

    OAViewObject hdrvo1 = (OAViewObject) getxxEcreditCardHdrVO1 ();

    OAViewObject dtlvo = (OAViewObject) getxxEcreditCardDtlVO1 ();

    Initialize and create a line of VO

    If (! dtlvo.isPreparedForExecution ())

    {

    dtlvo.setMaxFetchSize (0);

    dtlvo.executeQuery ();

    }

    Line dtlrow = dtlvo.createRow ();

    dtlvo.executeQuery ();

    int count = dtlvo.getRowCount ();

    dtlvo.insertRowAtRangeIndex (count, dtlrow);

    Development of the sequence for the number of request *.

    Number of dtlseq = getOADBTransaction () .getSequenceValue ("xxdm. XXDMI_ECREDIT_CARD_DTL_SEQ");

    hdrId = hdrvo1.getCurrentRow ().getAttribute("CreditCardHdrId").toString (); mind vo

    dtlrow.setAttribute ("CreditCardHdrId", hdrId);

    dtlrow.setAttribute ("CreditCardLineId", dtlseq);

    dtlrow.setAttribute ("LineNumber", count + 1);

    End of sequence generation *.

    dtlrow.setAttribute ("CurrencyCode", "AED");

    String currency = (String) dtlrow.getAttribute ("CurrencyCode");

    System.out.println ("CurrencyCode:" + currency);

    dtlrow.setNewRowState (Row.STATUS_INITIALIZED);

    } / / end createDetailRow()

    ' Public Sub processFormRequest (pageContext OAPageContext, OAWebBean webBean)

    {

    super.processFormRequest (pageContext, webBean);

    OAApplicationModule am = pageContext.getApplicationModule (webBean);

    Event string = pageContext.getParameter (OAWebBeanConstants.EVENT_PARAM);

    * Treatment add line button *.

    If ((ADD_ROWS_EVENT. Equals (Event)) & & "AdvTblRN".equals (pageContext.getParameter ("source"))) ".

    {

    am.invokeMethod ("createDetailRow", null);

    am.invokeMethod ("initPVO");

    } //**End add row button *.

    otherwise if

    ("currCodeChangeEvent".equals (pageContext.getParameter (OAWebBeanConstants.EVENT_PARAM)))

    {

    am.invokeMethod ("handleCurrencyChangeEvent");

    }

    ===========================================================================================================================

    Could please help what is wrong in the code, I followed all the steps as stated in the guide, but the table advance, the problem starts whenever I click on the button Add a new row for the creation of new line.

    I couldn't understand what was wrong with the code.

    Thanks in advance,

    Suman

    Suman,

    A few points:

    1. Why do you call handleCurrencyChangeEvent in the event to add a line? Simply set the useful, likely of the values in the line it himself.

    ex:-instead of calling the handleCurrenyChange method, simply add the below lines inside the createDetailRow()

    dtlrow.setAttribute ("ExchangeRateTypeRender", Boolean.FALSE);

    dtlrow.setAttribute ("ExchangeRateDateRender", Boolean.FALSE);

    dtlrow.setAttribute ("ExchangeRateRender", Boolean.FALSE);

    2. it looks like you have on the field of the currency and that fireAction handleCurrencyChangeEvent action method is called, right?

    Instead of using dtlVo.getCurrentRow, use the code below:

    public void handleCurrencyChangeEvent(String eventRowSourceParam)
      {
      OAViewObject pvo = (OAViewObject)findViewObject("xxCurrencyPVO1");
      OARow row = (OARow)pvo.first();
    
      OAViewObject dtlVO = (OAViewObject)findViewObject("xxEcreditCardDtlVO1");
    
      //OARow dtlRow = (OARow)dtlVO.getCurrentRow();
      OARow dtlRow = (OARow)this.findRowByRef(eventRowSourceParam);
    
      String  currency = (String)dtlRow.getAttribute("CurrencyCode");    // NULL POINTER EXCEPTION
    
      if ((currency == null) || ("AED".equals(currency)))
      {
      row.setAttribute("ExchangeRateTypeRender", Boolean.FALSE);
      row.setAttribute("ExchangeRateDateRender", Boolean.FALSE);
      row.setAttribute("ExchangeRateRender", Boolean.FALSE);
      }
      else
      {
      row.setAttribute("ExchangeRateTypeRender", Boolean.TRUE);
      row.setAttribute("ExchangeRateDateRender", Boolean.TRUE);
      row.setAttribute("ExchangeRateRender", Boolean.TRUE);
      }
      }
    

    In the controller:

    if((ADD_ROWS_EVENT.equals(event)) && "AdvTblRN".equals(pageContext.getParameter("source")) )
    {
      am.invokeMethod("createDetailRow",null);
      am.invokeMethod("initPVO");
    } //**End Add Row Button**
    else if ("currCodeChangeEvent".equals(pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM)))
    {
      String eventRowSourceParam = pageContext.getParameter(EVENT_SOURCE_ROW_REFERENCE);
      Serializable[] params = {eventRowSourceParam};
        Class[] paramTypes    = {String.class};
      am.invokeMethod("handleCurrencyChangeEvent",params, paramTypes);
    }
    

    3. Why do you call initPVO when it is clicked on the Add line? Are you calling not just in the PR?

    You could call it once in the PR and let. When you call it PR, you may need to remove the handleCurrencyChangeEvent of this method call.

    See you soon

    AJ

  • Create the script from another script using GUEST

    Oracle 11

    Instead of having to make a link to a different database, I want to create 2 scripts that are run from a shell script and run separately. Run Script1 in Database1 would create 2 Script using PROMPT to create the second script while entering a date of base1 to base2. I've almost got it but the problem is... Script2 using COPY FROM and I need to put a "-" at the end of each line that the GUEST takes as a literal instead of as part of the output.

    SCRIPT1:
    set pagesize 0
    set trimspool on
    set linesize 2000
    set echo off
    set verify off
    set feedback off
    set sqlblanklines on
    
    spool /home/michelle/sql_scripts/sl_dtc_copy2.sql
    
    PROMPT whenever sqlerror exit sql.sqlcode rollback
    PROMPT SET ARRAYSIZE 5000
    PROMPT SET COPYCOMMIT 20
    PROMPT set linesize 4000
    PROMPT 
    PROMPT COPY FROM {username}/{pswd}@{DB2}  TO {username}/{pswd}@{DB2}
    PROMPT CREATE SL_DTC_TMP USING SELECT DISTINCT 
    PROMPT col1, col2, col3
    PROMPT FROM dual
    PROMPT WHERE veh_data_elements_cd = 'ODO_READ'
    PROMPT and       dh.data_collected_timstm >=  
    select trunc(sysdate)-7 from dual; 
    PROMPT and       substr(vdh.vin,10,1) in ('A','B','C','D') 
    PROMPT /
    
    PROMPT spool off
    PROMPT exit
    
    spool off
    exit
    SCRIPT2 NOW:
    whenever sqlerror exit sql.sqlcode rollback
    SET ARRAYSIZE 5000
    SET COPYCOMMIT 20
    set linesize 4000
    
    COPY FROM {username}/{pswd}@{DB2}  TO {username}/{pswd}@{DB2}
    CREATE SL_DTC_TMP USING SELECT DISTINCT
    col1, col2, col3
    FROM dual
    WHERE veh_data_elements_cd = 'ODO_READ'
    and       dh.data_collected_timstm >=
    12-AUG-11
    and       substr(vdh.vin,10,1) in ('A','B','C','D')
    /
    spool off
    exit
    SCRIPT2 HOW IT SHOULD BE:
    -A [SPACE] AND a [-] at the end of each line
    -THE DATE MUST HAVE THE APOSTROPHES AND PREFERABLY AT THE END OF THE PREVIOUS LINE
    whenever sqlerror exit sql.sqlcode rollback
    SET ARRAYSIZE 5000
    SET COPYCOMMIT 20
    set linesize 4000
    
    COPY FROM {username}/{pswd}@{DB2}  TO {username}/{pswd}@{DB2} -
    CREATE SL_DTC_TMP USING SELECT DISTINCT -
    col1, col2, col3 -
    FROM dual -
    WHERE veh_data_elements_cd = 'ODO_READ' -
    and       dh.data_collected_timstm >= '12-AUG-11' -
    and       substr(vdh.vin,10,1) in ('A','B','C','D')
    /
    spool off
    exit
    Thank you

    Oops, sorry, I forgot to change the line.
    Must be double quotes to delimit the orignial:

    SELECT 'WHERE veh_data_elements_cd = ''ODO_READ'' -' from dual
    

    Kind regards
    Sylvie

  • Power CLI script to add multiple VLANs with port group name in an ESX cluster

    Hi all

    Can someone help me get a script adds several VLANs with port group name in an ESX cluster?

    Kind regards

    Suresh

    OK, so you just need to do an Import-Csv inside the loop and change the variables accordingly.

    What is the provision of this CSV file?

  • Create the Excel using Indesign javascript file

    Hi all

    We can create csv file using indesign javascript. Is there a way to create excel file using indesign javascript?

    Thanks in advance

    Hi all

    It is a way to generate an Excel from an InDesign table by using a combination of jsx, vbs and applescript.

    Quite a long discussion on that Open with below is a better application of the suggestions here.

    // Exports SIMPLE tables to proper excel file single and double quotes in the table would have to be escaped on the Mac version
    // Does not take Unicode file names
    // with a bit of brain racking can be developed to deal with merged cells and nested tables
    // Pieced together by Trevor (wwww.creative-scripts.com coming soonish) based on the referenced sources
    // Sold AS IS https://forums.adobe.com/thread/1718021
    
    var doc = app.properties.activeDocument && app.activeDocument,
           myTable = myTable || getTable (doc);
    if (!myTable) {alert ("Take a break, needs a document with a table in it!"); exit();};
    var filePath = new File (Folder.temp + "/" + +new Date + ".xlsx"),
        osFilePath = filePath.fsName;
    if ($.os[0] === "M")  osFilePath =  osFilePath.replace(/(.)(\/)/g,"$1:").replace(/\//, "");
    
    exportTable (myTable, osFilePath);
    if (confirm ("Open new excel file")) filePath.execute(false);
     exit()
    function exportTable (myTable, filePath)
        {
            var  numberOfRows = myTable.rows.length,
                   rowNumber, columnNumber,
                   isMac = $.os[0] === "M",
                   rowContents = [],
                   setRange, openMark, closeMark;
    
            if (isMac)
                {
                    setRange = 'set value of range "A';
                    openMark = '" to {';
                    closeMark = '}';
                }
            else
                {
                    setRange = 'app.Range("A';
                    openMark = '") = Array(';
                    closeMark = ')';
                }
    
    for (var z = 0, rowNumber = 0; rowNumber < numberOfRows; rowNumber++) {
        var  numberOfColumns = myTable.rows[rowNumber].columns.length,
                toRange = GetExcelColumnName (numberOfColumns - 1),
                columnContents = [];
         for (columnNumber = 0; columnNumber < numberOfColumns; columnNumber++) {
             var cellContents = myTable.rows[rowNumber].cells.everyItem().contents;
             columnContents  = '"' + cellContents.join('", "') + '"';
         }
        rowContents[rowNumber] = setRange + ++z  + ":"  + toRange+ z + openMark  + columnContents + closeMark;
    }
    
    var tableData = rowContents.join("\n") + "\n";
    
                   if (isMac)
                        {
                            // Thanks Hans https://forums.adobe.com/message/5607799#5607799
                           var myAppleScript =
                            '''set excelRunning to isRunning("Microsoft Excel")
                               tell application "Microsoft Excel"
                               set theWorkbook to make new workbook
                               tell sheet (1) of theWorkbook'''
                               + tableData + '''
                               end tell
                               save workbook as theWorkbook filename "''' + filePath + '''"
                               close active workbook
                               if not excelRunning then tell application "Microsoft Excel" to quit
                               end tell
                               on isRunning(appName)
                                    tell application "System Events" to (name of processes) contains appName
                               end isRunning
                            ''';
                          app.doScript (myAppleScript, ScriptLanguage.APPLESCRIPT_LANGUAGE);
                        }
    
                    else
                        {
                            // Thanks Calos https://forums.adobe.com/message/5607799#5607799
                            // changed by me :-)
                             var vbscript =
                             '''Dim app
                                Set app = CreateObject("Excel.Application")
                                'take away the ' from the line below if you want to see excel do it's stuff
                                'app.visible = true
                                Dim newDoc, sheet
                                Set newDoc = app.Workbooks.Add()
                                Set sheet = newDoc.Worksheets(1)
                                '''
                                + tableData
                                + 'newDoc.SaveAs "' + filePath + '''"
                                app.Quit
                                Set newDoc = nothing
                                Set app = nothing
                              ''';
                            app.doScript (vbscript, ScriptLanguage.VISUAL_BASIC);
                        }
    
                }
    
    function GetExcelColumnName (columnNumber) {// 0 is A 25 is Z 26 is AA etc.
        // parsed from http://stackoverflow.com/questions/181596/how-to-convert-a-column-number-eg-127-into-an-excel-column-eg-aa
         var dividend = columnNumber + 1,
                columnName = "",
                modulo;
    
        while (dividend > 0)  {
            modulo = (dividend - 1) % 26;
            columnName = String.fromCharCode (65 + modulo) + columnName;
            dividend = Math.floor((dividend - modulo) / 26);
        }
        return columnName;
    }
    
    function getTable (doc) { // thanks Marc http://forums.adobe.com/message/6087322#6087322
        if (!doc) return false;
        app.findTextPreferences = null;
        app.findTextPreferences.findWhat = "\x16";
        var tables = doc.findText();
        if (tables.length) return tables[0].parentStory.tables[0];
        return false;
    };
    
  • JavaScript 3D: I can't create the integrated Image of JPEG file object

    I would like to create an Image object from a JPEG file embedded (like object FileSpec, referenced in the names of resources of the 3D stream object tree), later to serve as a backdrop. Unfortunately, the created image object has zero dimension and cannot be used later:

    RES = new resource ('pdf://sunset.jpg');

    Host.Console.println (res.type);  Ok. outputs 'image '.


    IMG = new Image (res);

    Host.Console.println (img.width +' "+ img.height); not ok. outputs 0 '0'

    However, if the image is embedded as an Image XObject in the PDF file that is referenced instead of the dictionary of the specification of file in the tree view of the resource names, the code works and the subject of the Image has a nonzero size.

    Is this expected behavior? I ask because the 3D JavaScript API says that Image objects can be created from embedded resources from file.

    Thanks for any comments,

    Alexander

    OK - it needs these tags. Here is a screenshot of the structure when you use Acrobat Pro (a scene 3D, a single resource being added, "bitmap.jpg") - as you can see that the image is stored as an XObject, with the data of the 3D model in the tree (the binary stream above the entrance of 3DV)

    Acrobat 9 and X 3D annotations are stored using the specification in part 9.5 ISO 320000/1.7EL3 - they are similar to Rich Media Annotations, but not exactly equivalent. However if you add a SWF file to a 3D annotation table resource, all annot is repacked as a Rich Media Annotation (/ T:Annot S:RichMedia) with the 3D model and resources stored as objects of the file specification in the elements library. Entries in the RichMediaSettings tree say the rendering engine that it is still a 3D scene, but we do need spend containers like this as a 3D annot has limited the supported for resources non - Image.

  • Create the Script to fill the SimpleDisplayName attribute Active Directory Exchange

    Hello

    I want to implement the use of SimpleDisplyNames in my Exchange 2010 environment. After my research, I can see that, if the SimpleDisplayName attribute is enabled and left empty it just goes to show the SMTP address for the external recipients. so to say that I need a way to fill all current users SimpleDisplayName attributes with their Displayname and I'll manually change a few users who have to be modified.

    My question is, can someone help me with something of a powershell script that can run through all AD and make the change for me? I want them all have their display name (first and last) in the LEAGUE.

    Thanks in advance

    Greetings,

    That answer. Microsoft.com Community Forum is very focused on consumers.  Your question might get a better response from the IT professionals on the Microsoft TechNet site, at http://forums.technet.Microsoft.com of if you would care to after the same survey here.  You can file it under the section Active Directory or Windows IT Pro.

  • How to create the Setup for bb app file?

    Hello

    How can I create a Setup for my bb app file?

    Thank you

    Saket

    Follow these steps:

    (1) prepare your .cod files and the .jad file. If you need to sign your application do that stuff too.

    (2) place your .cod files and files on your server .jad. (answer to your question). You can also place the .jar file and files .alx files. (these are optional)

    (3) open the BB browser and type the url as follows...

    http://www.yourserver.com/blackberry/yourapp/yourapp.jad. (fake url)

    so just point to your .jad from your BB browser file.

    (4) a pop window opens with two download options and cancel (button cancel do not know) .

    5) click Download.

    NOTE:

    you will need to configure your server with the following MIME types to allow the download.


    Cod application/vnd.rim.cod

    text/vnd.Sun.J2ME.app-descriptor jad

    application/java-archive Jar

    KB Article not no 00439

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800708/800646/What_Is...

    I hope this info helps you.


  • Possibility to create a script that automatically opens files and processes?

    I have a folder on my computer which has automatically downloaded image files periodically. I would like to have a script in photoshop that can batch process them automatically and then move them out of the folder so that they are not treated again - but I just wanted to know if it was common or even possible. I do a lot of scripts, but I'm good enough to understand things if anyone has information or examples of scripts that can do something like that, that would be greatly appreciated. Thank you!

    Did you search Forum yet?

    Re: folder

  • Create the Script of comparison

    Hey, I'm not really good in scripts, maybe can help real quick guys.

    I like to compare numbers in a table in two databases (in the opposite direction of GoldenGate).

    If the number of the source of this column is higher (+ 5) that the database of destination I want to send a trap snmp to my control.

    How would you do that? Creating a public database link on the site of the source, a query of the same table and compare the values?

    Select the id of the table_a;  for example (99 results)

    Select the id of table_a@publink; for example (98 results)

    How to compare?

    Chris

    Your original question, this should be the SQL:

    Select the id of the table_a;  for example (99 results)

    Select the id of table_a@publink; for example (98 results)

    Select (select id from table_a) - (select id table_a@publink) twice;

    This should return 1.

    Just give a try.

    Harry

  • Creating a script to copy data files

    I need your help here.
    Is someone can show me an example of script (.bat) that
    1. connect to sqlplus
    2. connect as sysdba
    3 - stop the database
    4-copy tht *. DBF file location A to location on the server B
    5 restart the database
    Thank you


    I'm on windows 2008 server with Oracle 10.2.0.4 database server

    REM wait for the shutdown of the server
    REM start the database
    %ORACLE_HOME%\bin\sqlplus s @stop.sql "/ as sysdba".
    sleep 60

    copy A B

    %ORACLE_HOME%\bin\sqlplus s @start.sql "/ as sysdba".

    output

    The stop.sql file
    -start of the database
    immediate stop
    output

    The start.sql file
    -start of the database
    startup
    output

  • Can not find the 'script - layers of exporting files"more

    I want to export all my layers in JPEG files.

    I can't find this feature more.

    Generally, it could be found in: file > script >...

    This is under file > export.

  • just updated to photoshop and the script 'convert layers in files' disappeared.

    Why! ??? I need that.  How can I get that back, stressed at work.

    What your environment?

    Windows 10 with Photoshop CC 2015 there as a layers in files... script.  In fact that CC 2015 has a new script, plans for additional work in PDF format that 2014 CC does not?

Maybe you are looking for

  • Yahoo Mail sign of trouble, the message appears "diagnose the connection problem.

    When I click on Yahoo Mail sign in the message comes to "diagnose the connection problem. It opens on more of the page. It is only with Yahoo Mail.  All other centers opened their doors without refreshing the page.  This problem is with all browsers.

  • Card LaCie esata PCI card on windows 2003 server Dell poweredge T410 error code 10

    Hi guys, I am trying to install a new card Lacie esata PCI card (http://www.lacie.com/products/product.htm?pid=11217) on windows server 2003 on Dell poweredge T410. Windows detects the card and install the driver, but then, it shows an error code 10

  • Selective table average

    Hello I have a 2D chart. The following code generates a random array of 3 x 3. I want to get the mean (or average) only values greater than a set value (user-defined) in the table. Could someone help me. I tried to use a "superior to", type the case

  • II + Zeiss 85mm serious Otus 1DX underexpose problem

    Out of curiosity, decided to try my Otus 85 mm (used on the Canon 5dsr) on the 1dx2 and for some reason any metering system started going nuts. Tried measuring evaluative full and metering - same thing. Instead of 1250 to 1600 ISO get 250 ISO. Tried

  • How to make a template or duplicate the police etc for title sup

    Hi allI know how to create (size and font color) and to have a title of sup or text on my video.But I n ' t know how to duplicate all this template to work quickly. "When I copy and paste is just a clone.I would like to copy the text and just change