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

COM support python - SaveAs

New Here ,
May 17, 2007 May 17, 2007

Copy link to clipboard

Copied

Where can I find some more information on using plugins within C++/python for COM intergration

refer to my original post
http://www.adobeforums.com/cgi-bin/webx/.3bbf2765.3bc3e441

I'm boucing back from the wall, cant find a solution for this
later
TOPICS
SDK

Views

467

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
Adobe
Adobe Employee ,
Jun 29, 2007 Jun 29, 2007

Copy link to clipboard

Copied

I haven't tried python but there is a perl example.<br /><br />C:\Program Files\Adobe\Adobe Photoshop CS3 SDK\samplecode\automation\perl<br /><br /><br /><cononix@adobeforums.com> wrote in message <br />news:3bc3eecc.-1@webcrossing.la2eafNXanI...<br />> Where can I find some more information on using plugins within C++/python <br />> for COM intergration<br />><br />> refer to my original post<br />> <a href=http://www.adobeforums.com/cgi-bin/webx/.3bbf2765.3bc3e441><br />><br />> I'm boucing back from the wall, cant find a solution for this<br />> later

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
New Here ,
Jul 03, 2007 Jul 03, 2007

Copy link to clipboard

Copied

LATEST
See http://www.adobe.com/devnet/photoshop/pdfs/VisualBasicReferenceGuide.pdf

Here's how to get a reference to the application object in python; it supports all the same methods as visual basic does.

import time
from win32com.client import Dispatch
import os

ps = Dispatch("Photoshop.Application")
time.sleep(1)

print "did it..."

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