メインコンテンツへスキップ

⚠️ Please note that this topic or post has been archived. The information contained here may no longer be accurate or up-to-date. ⚠️

CaptureOne 11 and Photoshop

コメント

4件のコメント

  • Eric Valk
    Hi Mike
    You can find the script you are are looking for by using finder to "show contents" of the CaptureOne application (right click on the application)

    From there look in [color=#0000FF:3vpxokr9]Contents/Resources/Stitch with Photoshop.app[/color:3vpxokr9]

    How did I find this? Open Terminal and type the following command [color=#0000FF:3vpxokr9]sudo find -x / -iname "*stitch*"[/color:3vpxokr9]
      sudo -- "do as super user"
      find -- find something
      -x -- "don't look in places where there are no files"
      / -- start at the root directory
      -iname -- case insensitive name search
      "*stitch*" -- "stitch" with any characters before and after it


    Also check out the script I am about to post in this forum, or some of the ones I have posted here




    Number 1 Hint: Always always check the Applescript dictionary for the Application you are trying to control.
    0
  • Michael Sonshine
    Thank you. I pulled it out of the Resources folder and grabbed the Apple Script source. And thank you for the links to other scripts.

    I have never worked in Apple Script so this will be a bit of a discovery effort for me, but I assume code is code so I should eventually figure out how it works. Something to do now that I am retired.
    0
  • Eric Valk
    [quote="MikeFromMesa" wrote:
    Thank you. I pulled it out of the Resources folder and grabbed the Apple Script source. And thank you for the links to other scripts.

    I have never worked in Apple Script so this will be a bit of a discovery effort for me, but I assume code is code so I should eventually figure out how it works. Something to do now that I am retired.


    Applescript and Script Editor don't have many debug features. I find myself coding incrementally - enter a line or two, and check that it compiles. Then embellish a bit more, and then check that it runs.

    if you open the Log History window, you can see the messages that Applescript sends to other applications, and what is sent back. I find this useful to observe when there is a problem

    Macscripter is a great resource.

    If you can afford it and have the interest, Scrip Debugger has very good debug features.
    0
  • Michael Sonshine
    The reason all of this came up is that the Panorama stitching script no longer worked with C1-11 and Photoshop 2019 as the script was looking for Photoshop 2018, and I wanted to get that working again. I had looked at some of the online tutorials for AppleScript but they appeared to be far too basic for me to get much out of them as regards to this issue, so reading an existing script seemed like the best course to follow.

    Thanks to your information I was able to get the panorama script from C1 and modify it so that I now can use the pano functionality with PS 2019 so the initial goal is done, but I do want to spend some time and learn how to create new scripts as well as modify existing ones. As you said, there does not seem to be much in the way of debug functionality and I had to rely, at least initially, on the display command, but that gave me the insights that I needed to figure out what was happening.

    I suppose it is going to be a bit frustrating, at least initially, as it always is with me when I learn a new language syntax and vocabulary, but now that I am retired I do have some time ...

    Thanks again for the help.
    0

投稿コメントは受け付けていません。