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

need script run photoshop with hand or eyedrop tool active

New Here ,
Aug 23, 2008 Aug 23, 2008

Copy link to clipboard

Copied

Hi
I use photoshop for pc
I would love a script to enable or hand tool or eyedropper tool when photoshop starts

may somebody help me?
TOPICS
Actions and scripting

Views

575

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
Contributor ,
Aug 23, 2008 Aug 23, 2008

Copy link to clipboard

Copied

On my PC, Photoshop always starts with the last tool I used in the previous session selected.

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
Valorous Hero ,
Aug 24, 2008 Aug 24, 2008

Copy link to clipboard

Copied

Just setup Scripts Event Manager to call the following script on start-up.



//selectTool('handTool');

selectTool('eyedropperTool');



function selectTool(tool) {

var desc9 = new ActionDescriptor();

var ref7 = new ActionReference();

ref7.putClass( app.stringIDToTypeID(tool) );

desc9.putReference( app.charIDToTypeID('null'), ref7 );

executeAction( app.charIDToTypeID('slct'), desc9, DialogModes.NO );

};

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 ,
Aug 29, 2008 Aug 29, 2008

Copy link to clipboard

Copied

Thanks you so much
is there a list about the tools?

i mean if i would substitute handtool , eyedroppertool for example crop

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
Valorous Hero ,
Aug 29, 2008 Aug 29, 2008

Copy link to clipboard

Copied

Yes there is a full listing here...

http://www.ps-scripts.com/bb/viewtopic.php?t=2179

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 ,
Sep 11, 2008 Sep 11, 2008

Copy link to clipboard

Copied

LATEST
Cheers for the listings

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