Quantcast
Channel: Adobe Community : Discussion List - All Communities
Viewing all 238792 articles
Browse latest View live

After Effect problem avec Hitfilm Ignite express plugin

$
0
0

Slt les gars! Je suis fan d"after effect! J"utilise la version cc2015 13.5...

Je veux utilise les nouveaux plugin de Hitfilm Ignite express. Ca ne va pas avec mon After effect.

Alors! Quand je lance le logiciel ca reste bloque sur media encorder il ne veut pas telecharge les info pour ouvir AE......

 

Qu"est ce que je dois faire pour utilise ce plugin de Hitfilm Ignite express??????


契約終了日に解約申込みしたら解約料は発生しないのですか?

$
0
0

私のクリエイティブクラウドは、2017年8月17日に契約が終了します。

それまでに一日でも早く解約したいのですが、今解約すると解約料金が発生します。

解約料金を発生させずに解約するにはいつどうういうふうに解約すればいいのでしょうか。

稲田

creative cloud wont update

$
0
0

Creative Cloud needs an update so i update it and when it finishes it closes and when i open it again it needs an update again there is no error message it just wont update

プリントについて

$
0
0

最近インデザインCS4からccにアップグレードしました。現在プリンティングエラーがでていて印刷ができない状況です。パソコン環境はWindows7で、CS4もアンインストールしていま せん。プリンティングエラーのメッセージは、「原因不明の問題により、AdobePrintEngineはデータの出力に失敗しました」です。どなたかご回答よろしくお願いいたします。

AC OOTB Report from 3rd Party Performance data

$
0
0

I am doing segmentations in Adobe Campaign but the actual campaign is being sent out of another system (EPSILON). I want to leverage the performance data like open, click, channel etc. information from the other campaign system (EPSILON) to generate OOTB URL Clickstream reports out of Adobe Campaign.

 

Theoretically, what I understand is if I use the Direct Mail component to generate my segment lists to push to other system for targeting it will automatically generate respective keys in the Broadlog table but how do I map the tracking logs from other campaign system to generate the OOTB URL Clickstream reports.

 

Any help would be highly appreciated.

 

Sid

Graphic Placement

$
0
0

FM2015,Win7, Newbie to FM.   The requirement is to place a graphic on each odd page with a description/discussion on the facing even page. Anchored frames move the graphics around and graphics anchored to the page won't auto-number in a disconnected text frame.  Tables for the graphic can be set to start at the top of the right page, but the text won't flow back. What am I missing here? What is the quickest, easiest way to accomplish this...I am rapidly getting further behind.

Images being automatically cropped in LR 6

$
0
0

I'm a novice at LR and don't use it regularly.

 

I have a number of images I am working with, imported from my Nikon.

 

I've done some preliminary "culling" and added the surviving images into a collection.

 

I was beginning to do some editing on the images, going through and cropping certain images.  I realized, to my dismay, that after cropping several images, other images in the collection were being "automatically" cropped....almost always to unsatisfactory result.

 

I've had to go back periodically and reset the photos and apply the desired crop manually.

 

Have I activated some type of template or automatic format?

 

Puzzled and confused,

 

Doug

How was this done?


Camera RAW update freezes when opening smart object

$
0
0

After updating Camera RAW CC, when I open the smart object to update camera raw filter, Photoshop freezes presenting the "Preparing Smart Object" dialog.

 

Steps:

 

  1. From Adobe bridge, open RAW (cr2) file to edit in Camera RAW
  2. Within Camera RAW, adjust settings
  3. From Camera RAW, open in Photoshop
  4. Now, photo is a smart object in Photoshop
  5. Double-click the smart object in Photoshop to return to Camera RAW filter to update settings.
  6. Camera RAW opens, but is Photoshop and Camera RAW are frozen, with the "Preparing Smart Object" dialog

 

Screen Shot 2017-07-23 at 3.27.56 PM.png

 

This dialog appears to update, but here at 10-minutes later, has been sitting at 100%

 

Screen Shot 2017-07-23 at 3.37.23 PM.png

 

This process usually takes less than 2-seconds on my Macbook.

 

MacBook Pro, 15-inch retina, 2.4 GHz Core i7, 8 GB RAM, NVIDIA GeForce GT 650M 1024MB, OS X El Capitan (10.1.6)

 

Photoshop 2017.1.1 (20170425.r.252 x64)

Camera Raw 9.12.0.784

I want to attach a js file to an existing html file

$
0
0

I've created a sample spry accordian widget and want to insert it into an existing html page. How do I attach the javascript to control that widget?

Using Spot removal tool on a straight line LR6

$
0
0

Hello, does anyone else have this issue?, I'm trying to clone a part of a straight line onto another small part but it changes the angle ever so slightly so it never matches up..

Screen Shot 2017-07-17 at 13.52.35.png

Scripting "save as animated GIF" in Photoshop using Gifsicle to set Loop=forever

$
0
0

My script below saves animated .gif file from Photoshop, but with Looping = 1. I need Looping = forever.
There is a program, called Gifsicle  http://www.lcdf.org/gifsicle/

It runs under the command line and does everything with GIF.

 

In my case, Gifsicle string looks like that:

C://gifsicle.exe --batch --loop=forever −−careful *.gif

 

Is it possible at all for Photoshop jsx script to run Gifsicle and convert the file on disk AFTER this jsx script saves this file to the disc?

 

If yes, can anybody help me to integrate the line above into my "saving gif" script below?

 

 

#target photoshop

main();

function main(){

if(!documents.length) return;

try{

var Path= activeDocument.path;

}catch(e){var Path = "~/desktop";}

var Name = decodeURI(app.activeDocument.name).replace(/\.[^\.]+$/, '');

var layerName = app.activeDocument.activeLayer.name.replace(/[:\/\\*\?\"\<\>\|]/g, "_");

var saveFile= new File(Path + "/" + Name + "-" + layerName + ".gif");

SaveForWeb(saveFile);

}

function SaveForWeb(saveFile) {

var sfwOptions = new ExportOptionsSaveForWeb();

   sfwOptions.format = SaveDocumentType.COMPUSERVEGIF;

   sfwOptions.includeProfile = false;

   sfwOptions.interlaced = 1;

   sfwOptions.optimized = true;

   sfwOptions.transparency = 1;

   sfwOptions.ColorReductionType = ColorReductionType.SELECTIVE;

   sfwOptions.dither = Dither.NONE; 

   sfwOptions.ditherAmount = 80;

   sfwOptions.webSnap = 0;

   sfwOptions.colors = 128;

activeDocument.exportDocument(saveFile, ExportType.SAVEFORWEB, sfwOptions);

}

http://www.lcdf.org/gifsicle/

Facebook Publishing Problems

$
0
0

I continue to get the following message when trying to post to Facebook:

 

"An internal error has occurred:  ?:0: attempt to index field 'headers' (a nil value)

 

Only option is to click OK

 

Then I receive the following message:

 

Can't update this collection.

AN internal error has occurred:  ?:0: attempt to index field 'headers' (a nil value)

 

Is there a fix for this.  I've never had these error messages in the past.

 

I have disconnected with Facebook and then authenticated again.  This did not resolve the problem.

 

I can get maybe 1-2 photos to post sometimes even with the error.  Often, no photos will post.

 

Thanks.

need help with a button that would delete an amount, then to show it again?

$
0
0

Hello all, what I need with is a javascript button that will enable me to click it and the result will remove the amount from the calculation, click it again and the amount that was removed will be added again.

 

Let me explain what I'm trying to do. I am creating a form that shows the total of material costs, then adds a percentage markup to the material costs from a drop down. Then I have a field to select the labor for the job. I'd like to have a button to remove the labor to see only the material costs by itself. Then click the button again and the labor total would be added once again without having to re-type it in. Would someone have a javascript that would help me do what I want? I hope it can be done. Thanks.

Sound in Button has added "noise" at end.

$
0
0

Hi all,

 

I have a sound formatted as a .wav placed inside a button so that when you click on the button it plays the sound. Works ok but there's a noise at the end of the sound much like a short burst of white noise. Not sure why it's there. Tried deleting the metadata and also mp3 format but the noise at the end it still there. It's not there if I just place the sound on the main timeline.

 

Any suggestions?

 

thanks,

George.


Problema al guardar documentos en Illustrator cc2017 y deshacer cambios.

$
0
0

Hola muy buenas tardes. Me sucede algo con Illustrator CC 2017 que nunca antes me había sucedido.

Como sabéis cuando no se guarda un archivo de Illustrator y se hace alguna modificación en el documento, aparece un "*" asteristo al lado del nombre del archivo y justo detrás de la extensión:

Ejemplo: Mi archivo.ai*

 

Este asterisco nos indica que el documento no ha sido guardado y que debemos guardarlo.

El caso es que cuando guardo el documento "CMD + S" o desde menú desplegable Archivo/Guardar el archivo se guarda correctamente, pero inmediatamente el asteristo sale automáticamente de nuevo. Si intento Deshacer algún cambio el comando CMD + Z no funciona y desde el menú Edición/Deshacer tampoco funciona. Es como si no reconociese que el documento se ha guardado o está haciendo procesos por detrás.

 

No sólo es esto, es también que el programa se ralentiza enormemente y no se puede trabajar bien.

 

Alguien tiene idea que puede suceder o le ha pasado algo similar?

 

Muchas gracias.

 

Natasha

Lightroom CC Batch export using all processor power.

$
0
0

Hey all,

 

Just wondering if this is something anyone else has experienced.
I went to batch export 127 photos to full size JPG and my CPU dimed out.

 

I haven't had this issue running even the most intense games I have on my PC.

 

It's a new build with 16GB of RAM... so I'm not sure what to think?

 

Anyone else have this issue? is it "normal"?

 

Thanks in advance for the discussion.

error al iniciar illustrator

$
0
0

Hola buenos dias amigos!

sucede que tengo un problema  a lo que inicio el illustrator en mi equipo, comenzó a aparecer de un momento a otro y no puedo solucionarlo, busco el fichero para descargarlo y lo instalo pero no se, sigue el mismo problema alaguen sabe como solucionarlo? o sera problema de mi equipo?

adobeill.PNG

Panic! Suddenly, "Droplet couldn't communicate with Photoshop"

$
0
0

A droplet I've used for a decade had suddenly decided to throw "Droplet couldn't communicate with Photoshop". I have tried rebooting and resetting Photoshop preferences. I recreated the droplet in case there was some features suddenly not supported in a random update. All to no avail. It was working great just last week Wednesday, and today, I urgently need to have it work as I have hundreds of ads to process today and tomorrow, and it's not working!

 

Adobe Photoshop Version: 2015.5.1 20160722.r.156 2016/07/22:23:00:00 CL 1083377  x64

Operating System: Windows 10 64-bit

Version: 10 or greater

My Edits on Premier Pro CC Team are Not Showing up to Collaborators

$
0
0

I have been asked to begin editing a project for a company.  I've downloaded the video and audio from Google Drives that they shared with me, created the team project, invited them to collaborate, they've accepted, and so far have only merged video and audio clips.  I've clicked "share my changes" and they are not seeing any of the media when they try to open the project.

 

Am I missing a step on how to let them view edits or media?

 

Thanks,

 

Kat

Viewing all 238792 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>