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

RGB Color is not supported in Photoshop CS3 [scripting question]

Participant ,
Jun 21, 2021 Jun 21, 2021

Copy link to clipboard

Copied

var color = new RGBColor()

 

Error Showing :- RGBColor does not have a constructor in Photosho CS3 ?

 

Altenative Solution ?

TOPICS
Actions and scripting

Views

1.4K

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
Community Expert ,
Jun 21, 2021 Jun 21, 2021

Copy link to clipboard

Copied

Yeah, get modern software.  CS3 is decades old, outdated software from 2007. 

 

MODERN OPTIONS:
Photoshop Elements (approx $100, no subscription needed)
ADOBE PHOTOSHOP ELEMENTS 2021

Creative Cloud Photography Plan -- a deeply discounted bundle for approx $10/month for 12 months. Includes the latest versions of these great products & services:
-- Photoshop CC and Photoshop on iPad
-- Lightroom on desktop, mobile and the web
-- Lightroom Classic
-- Portfolio website + hosting
-- Spark with premium features
-- Bridge
-- 20 GB cloud storage (upgradable to 1 TB).
Photo

Nancy O'Shea— Product User, Community Expert & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

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
Participant ,
Jun 21, 2021 Jun 21, 2021

Copy link to clipboard

Copied

It's a scripting Question Sir

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
LEGEND ,
Jun 21, 2021 Jun 21, 2021

Copy link to clipboard

Copied

She's rather lady, or if anyone wants special user.

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 ,
Jun 21, 2021 Jun 21, 2021

Copy link to clipboard

Copied

Did you mean SolidColor?

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
Participant ,
Jun 21, 2021 Jun 21, 2021

Copy link to clipboard

Copied

Yes But Same error does not have constructor ?

var color = new SolidColor()

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 ,
Jun 21, 2021 Jun 21, 2021

Copy link to clipboard

Copied

Restart photoshop or reinstall

 

iiiii.png

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
Community Expert ,
Jun 21, 2021 Jun 21, 2021

Copy link to clipboard

Copied


@r-bin wrote:

Restart photoshop or reinstall

 

 

@MXKS 

Don't reinstall. The activation servers have been shut down for CS3 and you will not be able to reactivate it.

 

Try resetting preferences instead. The newer methods in Help will not work with CS3, but the others will.

Preferences

 

~ Jane

 

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
Community Expert ,
Jun 21, 2021 Jun 21, 2021

Copy link to clipboard

Copied

Unless you managed to get the "non-activation" CS3 replacement when it was offered, then no, don't reinstall.

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
Participant ,
Jun 21, 2021 Jun 21, 2021

Copy link to clipboard

Copied

Thanks @r-bin 

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
Community Expert ,
Jun 21, 2021 Jun 21, 2021

Copy link to clipboard

Copied

Try these

var textColor = new SolidColor;						
	textColor.rgb.red = 255;
	textColor.rgb.green = 255;
	textColor.rgb.blue = 255;
app.foregroundColor.rgb.red = Math.random() * 255
app.foregroundColor.rgb.green = Math.random() * 255
app.foregroundColor.rgb.blue = Math.random() * 255
app.backgroundColor.rgb.red = Math.random() * 255
app.backgroundColor.rgb.green = Math.random() * 255
app.backgroundColor.rgb.blue = Math.random() * 255
	

in CS3

 

JJMack

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
Participant ,
Jun 21, 2021 Jun 21, 2021

Copy link to clipboard

Copied

LATEST

Thanks @JJMack 

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