I don't want any other programs from adobe, and I was required by school to purchase adobe illustrator. I just needed it for a couple months only. I can't cancel manually, and I feel very frustrated at my many attempts to cancel. I am a poor college student and don't appreciate how unclear it was that there was a cancellation fee. Can someone help me cancel my purchase please?
Why can't I get my subscription cancelled?
How do I get a second image across to my background?
I'm a beginner with a free trial of Photoshop. I've managed to upload a background photo but now I want to overlay another one. How do I do that?
Render Flame creates a fill not an outline
I am trying to render a flame along a path I imported from illustrator and am struggling- the tool renders the flame as a fill for the shape, not as an outline like i want it. How ould I go about taking a path from illustrator and using photoshop to render a flame along it?
Smart objects: Cropping in ACR "Paste in Place"?
If I open a smart object created from a raw file (.NEF) in ACR and crop the image it defaults to placing that cropped selection in the centre of my view/canvas within Photoshop.
Is there an option to somehow retain that existing canvas information (which remains stored in the smart object) and "paste in place" my crop? So for example, if i cropped an area selected from the top left corner. It remains in that exact location once the crop is ok'd?
Thanks in advance!
Fonts not syncing with photoshop
Hey Guys,
I synced a couple of fonts with typekit and now can't search them on photoshop whereas they are all synced on the Typekit site.
Can anyone help?
Thanks!
M
Error while generation data set with variables. "Could not parse the file contents as a data set. Too many values were listed for data set 24."
Hello Sir/Ma'am
I am facing an error in Photoshop cc :
"Could not parse the file contents as a data set.
Too many values were listed for data set 24.
"
Thank you
Batch assembling images in different folders
Hello,
I have two folders with files named with numbers (from 0 to 400 or 500 something). The filenames are the same in each of the two folders. How can I automate the "assembly" of an image using the files with the same name?
Both 0.png and 0.png are 80x80, and I need to assemble them into one 80x160 file.
I know a bit about Batch but I don't know how to make it open a file with its same name from another folder or how to place it (I know how to increase canvas size).
Any help is welcome. Thank you.
Error while generating variables data set "Could not parse the file contents as a data set. Data set 38 was incomplete."
Hello Sir/ Ma'am,
I am making a bulk images with background and text changes on each.
This will be the final version of my images.
1. I have created images > variable > data set for it.
2. When i am importing the csv ( comma seprated ) file, its Showing an error.
i.e :> Could not parse the file contents as a data set. Data set 38 was incomplete.
Here is the image of xl file.
Thank you
Cursor
Wie kann man den Textcursor verkleinern das er nicht über drei Zeilen geht.
ajax call to https from photoshop extension
Hi all,
repost from photoshop scripting forum - maybe I'll have more luck here:
I have an extension that makes ajax calls to an apache server I set up previously.
I got a bit paranoid and wanted all ajax calls to go through https, after configuring the server to receive and send over https, I noticed that the ajax calls from the extensions are returned with error code 0 (error text:"error")
I thought that it was because of the cross protocol ajax call and tried to enable CORS on the server and enable the "crossDomain" parameter of the ajax call but the error continues (note that when using the same url but with http works just fine like before).
In the context of photoshop html extensions - how can I make an ajax call to a https?
thanks in advance!
Slow saving TIF in PS CC 2017
Since the new Photoshop CC 2017 (I think it was in april?) saving tif files is becoming very slow. In the older versions there were no problems.
I think this only happens when a tif file has layers.
Also Photoshop forces often to save as a ZIP-ed tif (both are slow saving uncompressed and saving as ZIP).
I work with Windows 7.
Converting an image to Profile
I'm creating and advert in InDesign. The Magazine has specified a particular profile, so when I export my advert I am choosing the correct profile while exporting.
The image I am using in the advert is profiled to ISOcoated_v2_eci - but the advert needs to be a different profile. In Photoshop, for best results, do I 'assign' the new profile to the image, or 'convert' it? I've converted it, but it's looking a bit more yellow than the original, even in the proof from the printers.
Проблема с масштабированием photoshop
Добрый день, подскажите как настроить масштабирование изображение в photoshop cc 2017 на imac с дисплеем ретина, сейчас при 100% окно слишком маленькое, а при 200% все тексты и картинки размыты. Очень не удобно работать!
[ Перемещено из Lounge (где вы можете «общаться со своими сверстниками» со всех продуктов Adobe для разговоров, которые напрямую не связаны с помощью и поддержкой) на форум поддержки конкретной продукции - модератор ]
Not able to uninstall photoshop cc
Script to stroke, change canvas size and place file name
Hello to you all.
I am at least new to scripting and even more to Photoshop.
The case:
I am trying to use JavaScript to create a way to make a repeatable process in Photoshop.
What I want to do is the following:
- In a file, select all and create a stroke, CMYK 100%Y, 2px, inside. Works
- Increase canvas size by 30px (1cm in 72dpi) on the top side.
- Place the file name in the top-left corner of the canvas. Works
In case we can do it, it would be the best to use this in a a bunch of files.
Following what I have already done. Be gentle, it is a puzzle of internet, actions and me.
// this script is a variation of the script addTimeStamp.js that is installed with PH7
//
//==================== stroke 2px and canvas size 1cm top ==============
//
#target photoshop
cTID = function(s) { return app.charIDToTypeID(s); };
sTID = function(s) { return app.stringIDToTypeID(s); };
function stroke2pxandcanvassize1cmtop() {
// Set
function step1(enabled, withDialog) {
if (enabled != undefined && !enabled)
return;
var dialogMode = (withDialog ? DialogModes.ALL : DialogModes.NO);
var desc1 = new ActionDescriptor();
var ref1 = new ActionReference();
ref1.putProperty(cTID('Chnl'), sTID("selection"));
desc1.putReference(cTID('null'), ref1);
desc1.putEnumerated(cTID('T '), cTID('Ordn'), cTID('Al '));
executeAction(cTID('setd'), desc1, dialogMode);
};
// Stroke
function step2(enabled, withDialog) {
if (enabled != undefined && !enabled)
return;
var dialogMode = (withDialog ? DialogModes.ALL : DialogModes.NO);
var desc1 = new ActionDescriptor();
desc1.putInteger(cTID('Wdth'), 2);
desc1.putEnumerated(cTID('Lctn'), cTID('StrL'), cTID('Cntr'));
desc1.putUnitDouble(cTID('Opct'), cTID('#Prc'), 100);
desc1.putEnumerated(cTID('Md '), cTID('BlnM'), cTID('Nrml'));
var desc2 = new ActionDescriptor();
desc2.putDouble(cTID('Cyn '), 0);
desc2.putDouble(cTID('Mgnt'), 0);
desc2.putDouble(cTID('Ylw '), 100);
desc2.putDouble(cTID('Blck'), 0);
desc1.putObject(cTID('Clr '), cTID('CMYC'), desc2);
executeAction(cTID('Strk'), desc1, dialogMode);
};
step1(); // Set
step2(); // Stroke
};
//=========================================
// stroke2pxandcanvassize1cmtop.main
//=========================================
//
stroke2pxandcanvassize1cmtop.main = function () {
stroke2pxandcanvassize1cmtop();
};
stroke2pxandcanvassize1cmtop.main();
// EOF
"stroke2pxandcanvassize1cmtop.jsx"
// EOF
// Canvas Size
var w = app.activeDocument.width;// the width of the document
var h = app.activeDocument.height;
app.activeDocument.resizeCanvas (w, h+40);
//
//==================== Add File Name 20 pt Top-Left side ==============
//
if ( documents.length > 0 )
{
var originalDialogMode = app.displayDialogs;
app.displayDialogs = DialogModes.ERROR;
var originalRulerUnits = preferences.rulerUnits;
preferences.rulerUnits = Units.PIXELS;
try
{
var docRef = activeDocument;
// Now create a text layer at the front
var myLayerRef = docRef.artLayers.add();
myLayerRef.kind = LayerKind.TEXT;
myLayerRef.name = "Filename";
var myTextRef = myLayerRef.textItem;
// strip the extension off
var fileNameNoExtension = docRef.name;
fileNameNoExtension = fileNameNoExtension.split( "." );
if ( fileNameNoExtension.length > 1 ) {
fileNameNoExtension.length--;
}
fileNameNoExtension = fileNameNoExtension.join(".");
myTextRef.contents = fileNameNoExtension;
// Size and position of text
myTextRef.size = 45;
myTextRef.position = new Array( 0, 35 );
}
catch( e )
{
// An error occurred. Restore ruler units, then propagate the error back
// to the user
preferences.rulerUnits = originalRulerUnits;
app.displayDialogs = originalDialogMode;
throw e;
}
// Everything went Ok. Restore ruler units
preferences.rulerUnits = originalRulerUnits;
app.displayDialogs = originalDialogMode;
}
else
{
alert( "You must have a document open to add the filename!" );
}
Batch assembling images in different folders
(
as I've been told this requires scripting)Hello,
I have two folders with files named with numbers (from 0 to 400 or 500 something). The filenames are the same in each of the two folders. How can I automate the "assembly" of an image using the files with the same name?
Both 0.png and 0.png are 80x80, and I need to assemble them into one 80x160 file.
I know a bit about Batch but I don't know how to make it open a file with its same name from another folder or how to place it (I know how to increase canvas size).
To go over the desired outcome again:
- I have many files named after numbers in different folders.
- I need to open all the files (all 80x80) in one folder, and open the same file with the same filename (so 0.png opens 0.png in the other folder, 1.png opens 1.png...)
- Increase canvas size (this I can do with an Action, but I do not know how to insert it into a script either)
- Place the second file at a particular location (after the first 80x80 file, after the canvas has been enlarged to 80x160)
- Save to a third folder, with the same filename
Any help is welcome. Thank you.
I am currently taking a look at these threads:
I think I can use the first thread to merge the files. Right now Im batch enlarging canvas size, so all are 80x160 (increasing size from opposite directions), so when they merge, both images are where they need to be. I will report as soon as I can.
New Recurring Error Message
Put every image in the same position
Hi everyone.
I should put some plans that I have to renderize in a photoshop page, all the time exactly in the same position.
How could I do it?
Thanks for the help.
lens correction jpg photos
hi
may i ask a question ?
normally i shoot raw
but i have many jpg photos taken with phones and cameras
i'm used to work with lightroom cc (2015.10 /6.10 ) or photoshop cc 2015 & 2017 , i use lens correction (lens profile )and in same case the trasform tool (in camera raw or lightroom)
well i want to correct some jpg photos with photoshop
i have lens correction plugin
my questions is :
1)
and is there a way to use the trasform tool without using camera raw filter?
2) is there a way to correct distortion without using the camera raw filter?
could be a silly question but in the past i have watched a tutorial that achieve the same results of trasform tool (camera raw) using guides
just would learn how do it
thanks
Photoshop CC OpenCL option greyed out - still not resolved
I am unable to use features in Photoshop CC 2017 that require OpenCL to be available. The option to use this is greyed out.
I am advised by NVidia that my GU (GeForce GT705 (OEM)) is compatible with OpenCL 1.1. I have the latest driver installed.
My query is - assuming my card is OK, why is this option unavailable to me in Photoshop?
Other users seem to have the same issue, but I have yet to see a reply that resolves this problem