Quantcast
Channel: Adobe Community: Message List
Viewing all 97529 articles
Browse latest View live

Re: Technologies used for Adobe Photoshop?

$
0
0

Please share your reference definitions. What do you mean by "front end" and "back end"? We already asked you to elaborate on this, so please answer our question. Thank you.


Re: Why Acrobat X tool "Convert Colors" adds compression artifacts?

$
0
0

Just did some further testing on Acrobat X...

 

This appears to a "standard everyday colour management issue" with the difference from Adobe RGB and sRGB...

 

Testing with both device RGB and ICC RGB...

 

Acrobat colour settings for a device RGB set to sRGB show this colour issue using convert colours, which is expected.

 

However, even when the source image was tagged as Adobe RGB, it appears that convert colour was still using colour settings and not the embedded profile as the source.

 

Only when I changed colour settings to Adobe RGB did the image tagged with Adobe RGB convert correctly.

 

Could it be that Convert Colours ignores embedded profiles and simply using colour settings RGB instead? This was a test of a single image, if there were multiple images it would be even worse as they could all have different ICC tags assigned to them.

 

EDIT: Acrobat Pro DC appears to behave the same, object-level tag ignored as source profile, colour settings profile used as the source.

Re: Why Acrobat X tool "Convert Colors" adds compression artifacts?

$
0
0

Does the problem occur in Acrobat DC?

Re: 'JSFL script running for a long time' - how do i stop this

$
0
0

Hi.

 

This is probably happening because you're trying to export a very complex project. Meaning lots of complex vector artworks, lots of bitmaps are being generated, lots of shape tweens, and motion tweens. Also these bitmaps may have huge dimensions.

 

Here are some perfomance tips that you should be aware of:

 

- Try testing your file with and without exporting the document as texture (Publish Settings > JavaScript/HTML > Image Settings > Export document as texture);

- Consider turning off the advanced layers mode (Ctrl/Cmd + J) if you don't need advanced features like camera or parenting because this mode has some impact on performance;

- Avoid complex containers with lots of children;

- Avoid complex shapes;

- Make sure you're not using color effects/filters;

- Use cache whenever possible;

- Avoid using large bitmaps. This is specially true for mobile devices;

- Try low resolution values for exported bitmaps (Publish Settings > JavaScript/HTML > Image Settings > Resolution);

- Try to balance wisely when an asset should be made of a vector shape or of a bitmap;

- Avoid using too many static text fields because they are exported as raw vector shapes;

- Avoid adding too many listeners;

- Add mouse events to a container and use the event.target property instead of adding a separate mouse event to dozens or hundreds of children;

- If possible set a container.tickChildren to false so the tick will not be propagated to children of a container;

- If using a tick event it may be a good idea to change the Ticker.timingMode and see which one works best for your case;

- Avoid using motion tweens because they are exported as frame by frame animation;

- Avoid having a huge main timeline with lots of tweens;

- Avoing very large shape tween spans.

 

Also, is it possible for you to update to the latest release of Animate CC? It may help.

 

Here is a screenshot of a complex project I worked this year that I used to get similiar errors like yours very frequently. The errors only went away when I optimized all FLAs.

 

animate_cc_html5_canvas_script_running_for_a_long_time_error.png

 

 

Regards,

JC

Re: installing

$
0
0

Hi Shoshanao,

 

As stated above you have Mac OS (El Capitain 10.11.6) and experiencing issues while installing the Adobe Reader.

 

Adding on to the discussion:

 

 

 

Let us know if you need more information.

 

Regards,

Amal

Re: download for adobe acrobat XI

$
0
0

The Adobe Acrobat XI program isn't listed anywhere on this page that I can see. It does display the more recent version Adobe Acrobat DC , but as my serial number only works with XI that's not helpful.

Re: Why Acrobat X tool "Convert Colors" adds compression artifacts?

$
0
0

Sorry, I see you clarified that DC does the same. Over to Mr Isaacs.

Re: Keep button state

$
0
0

Excellent!

 

Yeah. I really wanted to suggest using Movie Clips instead of the default Button for this situation because Movie Clips are way easier to handle and way more dynamic.

 

But I'm glad you already figured it out.

 

To learn the way things work in HTML5 documents, it's important to learn CreateJS and the way CreateJS is integrated with Animate CC.

 

- To learn CreateJS, just head over to the offical website:

CreateJS | A suite of JavaScript libraries and tools designed for working with HTML5

- This page in particular is a must: EaselJS Tutorial: Mouse Interaction .

- Also checkout the demos: https://createjs.com/demos/easeljs/spritesheet

- Examples of using exportRoot, this, on, addEventListener, bind, custom reference to the current timeline: Button within Movieclip

 

You'll find the removeAllEventListeners method there. The selected property is a custom property I added dynamically.

 

To better understand the integration between ANCC and CreateJS, these are my recommendations:

- Use console.log(obj) and inspect the methods and properties the object has;

- Code Snippets panel;

- Examine the exported HTML and JS files;

- Animate CC templates (File > New > Templates or File > New from Template... (2019 version)).

- Camera API: Camera in Animate CC

- Advanced layers API: Create timeline layers with Animate CC

 

And there's no official cheatsheet. What I can do is to tell you some useful things:

 

SPECIAL PROPERTIES

exportRoot // a reference to the main timeline created by Animate CC

lib // reference to the Library

lib.properties // contains useful document properties like framerate

nominalBounds // a property created by Animate CC to display objects containing initial transform properties like width and height

movieclip.timeline.duration // total frames of a timeline

movieclip.timeline.position or movieclip.currentFrame // current frame of a movie clip

 

VAR DECLARATION

var score = 0; // declares a variable to that frame only

this.score = 0; // creates a property for that object and it's available for the entire timeline

score = 0; // declares a global variable

 

ADD OBJECTS DYNAMICALLY AT RUNTIME

this.addChild(new lib.LibraryLinkageName());

stage.addChild(new lib.LibraryLinkageName());

exportRoot.addChild(new lib.LibraryLinkageName());

 

PLACE REGULAR ANIMATE CC OBJECTS (LIKE MOVIE CLIPS AND BUTTONS) OVER COMPONENTS (LIKE VIDEO)

canvas.style.zIndex = "1"; // a value bigger than 0

 

HOW TO MAKE SURE THE CHILDREN PROPS AND METHODS ARE READY AND HOW TO ACCESS THEM:

var that = this;

that.start = function()
{
     // if using advanced layers     that.container = that.container.children[0].children;     // if not using advanced layers     //that.container = that.container.children;
}

stage.on("drawstart", that.start, this, true);
// OR setTimeout(that.start, 0);

 

PERFORMANCE TIPS:

- Try testing your file with and without exporting the document as texture (Publish Settings > JavaScript/HTML > Image Settings > Export document as texture);

- Consider turning off the advanced layers mode (Ctrl/Cmd + J) if you don't need advanced features like camera or parenting because this mode has some impact on performance;

- Avoid complex containers with lots of children;

- Avoid complex shapes;

- Make sure you're not using color effects/filters;

- Use cache whenever possible;

- Avoid using large bitmaps. This is specially true for mobile devices;

- Try low resolution values for exported bitmaps (Publish Settings > JavaScript/HTML > Image Settings > Resolution);

- Try to balance wisely when an asset should be made of a vector shape or of a bitmap;

- Avoid using too many static text fields because they are exported as raw vector shapes;

- Avoid adding too many listeners;

- Add mouse events to a container and use the event.target property instead of adding a separate mouse event to dozens or hundreds of children;

- If possible set a container.tickChildren to false so the tick will not be propagated to children of a container;

- If using a tick event it may be a good idea to change the Ticker.timingMode and see which one works best for your case;

- Avoid using motion tweens because they are exported as frame by frame animation;

- Avoid having a huge main timeline with lots of tweens;

- Avoing very large shape tween spans.

 

Oh man, I wish I could remember every single detail right now...

 

But I hope it can get you started.

 

Regards,

JC

 

UPDATED: 08/07/2019


Re: Blurb book with RAW pictures

$
0
0

This is clearly a question about Lightroom Classic, so I moved it there.

 

The answer is that when you upload the book to Blurb, Lightroom will send it in the correct format. You do not have to worry about that and so you can use your raw images in the book just fine.

Re: Menus go black, Illustrator freezes and crash (CC2019, PC)

$
0
0

Hi Frank,

 

We are sorry to hear about the trouble you are facing with Illustrator. That's definitely not a usual behavior. Chris has very well described all the possible reasons. In addition to that, I would request if you can share a few more details like:

  • OS (Windows 7/10)
  • Are there any recent changes made to system? For example, any antivirus or web extensions installed recently.
  • Which graphic card is installed on your system?
  • Try booting the system in safe mode and let us know how it works there?

 

To boot system in safe mode check out the steps shared in the links below:

 

Looking forward to your response!

 

Regards,

Srishti

Re: InDesign CS6 Update auf 8.1

$
0
0

Hallo Marco,

sinnvoll ist es nach dem Update auf 8.0.2 zu fahnden.

Die 8.0.0 ist ziemlich fehlerbehaftet.

 

Erst wenn die 8.0.2 installiert ist, könnte es klappen, dass Du die 8.1 unter dem Menü Hilfe als Update angeboten bekommst.

Die 8.1 gab's meines Wissens nach noch nie als separaten Download-Installer.

 

Also: Nerve den Adobe-Support. Die müssen Dir die 8.0.2 bereitstellen, wenn Du nachweisen kannst, dass Du die CS6 gekauft und nicht im Rahmen eines Creative-Cloud-Abos installiert hast.

 

Gruß,
Uwe

Re: How to set Target Indesign version in Plugin

$
0
0

Thanks Markus.

In XCode, Where I am going to select InDesign CC 2019 SDK?

 

I don't know how to develop plug-ins. So I need to compile and build existing plugin source for Indesign CC2019 version.

 

How to do that?

 

Thanks.

Re: Text not present in InDesign or IDML, but present when exported as XML

$
0
0

I have checked the conditional text, notes and assignments. I did find an InCopy assignment but it is not present in my document. I did not find it on Links nor in any other part of the file. When I am opening InDesign original file it did not ask for a missing link or anything.

 

unconditional.PNG

 

no-notes.PNG

 

assignment.PNG

 

As I said this is the first time I am encountering such error. In the end, I copied the English text into a new InDesign project and exported it as IDML. The new IDML is clean and no more other languages are present except for English.

 

Regards,

Sebastian

Re: Standard or Extended License?

$
0
0

First question:

Regardless of the context (commercial or private), for your website can be built with standard licenses (if you  select premium images, the cost will be higher).

 

See here for more information:

License information and Terms of use | Adobe Stock

 

 

Second question:

A subscription is find when you need on a regular basis stock images. There is no need to consume all credits of a months allocation as they roll over to up a year of image credits. So a 10 images / month for a year minimum is interesting if you need around 120 images per year. For peaks you can even overshoot your allocation but that will generate additional costs. A subscription is only handling standard licences(no premium, no extended)  for certain assets (no video). Premium, extended and video generate additional costs.

 

Image credits are useful if you have only an occasional need for stock images. Please note that the credits need to be used in between a year. With image credits you can also buy video and extended licenses.

 

If you have only 8 images, why not using the free test drive (10 images per month, first month free). However do not forget to cancel after the first month or you will have a subscription for a year at least.

2-part Best Practices For Modernizing Adobe Experience Manager

$
0
0

BPAEM.png

Register at: Modernizing AEM

 

This is a webinar series that covers various ways of modernizing your investment in Experience Manager (version 6.2 and later) and leveraging time-saving features already available in the product that help you build pages quickly and re-use content across channels. We’ll also discuss when you should use these features, and give demonstrations and examples to help you get there. 

 

Part-1: How to build pages quickly | August 20, 2019 | 8:00-9:00 am (PDT)

Learn About:

• Navigating Touch UI and unlocking features only available there

• Using Core Components to create content efficiently by using out-of-the-box building blocks

• Applying Editable Templates to become a super author and create, edit, and manage templates as needed

• Style Systems

 

Part 2: How to re-use content across channels | September 10, 2019 | 8:00-9:00 am (PDT)

Learn About:

• When and how to leverage Content and Experience Fragments to reuse content across web pages and other channels

• Considerations for using Experience Fragments in DAM

 

Who should attend: Content authors and business practitioners looking to improve their use of Experience Manager.

 

Speaker: Gabriel Walt Experience Manager Sites Product Manager, Adobe

 

 


Re: Intel i7 6850K and RTX 2080 Ti but no CUDA accelleration on warp stabilizer

$
0
0

Thanks MyerPj
Sounds interesting and the grafics you´re providing are impressive. But I´m afraid I can´t follow you. Just stopping unnecessary system tasks doesn´t make a proxi, right? How or maybe where do I make a proxi "from ...."? And why should "making a proxi" force or allow the GPU to run at 100%?

Re: Creative Suite 6 auf Windows Pro Computer neu installieren bzw. starten

$
0
0

Windows 10 und CS6 scheint so seine Probleme miteinander zu haben. Bist nicht der einzige mit dem Problem. Hast du mal die Installation mit Rechtsklick als Admin ausführen probiert? V

Re: Unlicense/Return Image

$
0
0

You're Welcome.

Have a great week!

Parsing XML document

$
0
0

Hello,

 

I have the following XML document example:

<?xml version="1.0"><root>     <element id="id1">value1</element>     <element id="id2">value2</element>     <element id="id3">value3</element>     <element id="id4">value4</element>     <element id="id5">value5</element></root>

 

Is it possible to get value by ID without looping through all XML document?

 

Thank you.

Re: Acrobat Pro DC Textfelder addieren die ein bestimmten Text beinhalten

$
0
0

Want you build the sum of fields or count the filled fields?

Both solutions would be great

 

Info: Acrobat uses Javascript, not Java.

You're right, sorry meant of course with javascript...as I said I'm still a beginner

 

Thx

Niko

Viewing all 97529 articles
Browse latest View live


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