Quantcast
Channel: Adobe Community : All Content - All Communities
Viewing all 290743 articles
Browse latest View live

Using getTemplate in JSP requires user to be logged in?

$
0
0

Hi

I know business logic in JSPs is bad, but I need to come up with a solution quickly with how the codebase was setup. Anyways, I wanted to execute code only on a certain template so I'm using 

currentPage.getTemplate().getTitle().equals("SomeTemplate")

 I could provide code context but I think its more of permissions issue than a code issue. It only works when I log in, and if I'm not logged in it breaks. What permission do I need to edit to fix this.


Cancel suscription

$
0
0

Long story short: in 2017 I started a CC subscription, then I canceled it at the last month of the subscription year. Now, a few days ago I paid again another monthly subscription and I want to cancel (it's been 7 days now) but I don't know if this counts as a RENEWAL, since in the site states that renewals don't get refunds. and if it's so, it just charges me the first month?

 

thanks

Photoshop will not render 3d animations completely

$
0
0

All,

I am creating simple animations using Photoshop's 3d and a timeline. My preview works fine but in my videos, the part is stagnant and does nothing. When I try and render as a photoshop sequence, I only see the scene from a completely different view. is this glitchy. What am I doing wrong? It's killing me slowly as it should be so simple.

 

PS CC '19

Imac Retina 5K

How to Open the word document on browser using the slingservlet

$
0
0

Hi Team,

 

Need help on how to open a word document on the browser using the sling servlet.

 

I am able to open the pdf files by setting the content-disposition as inline but I am not able to open the word docs with the same.

 

Can anyone have any ideas on how to do it please guide me.

 

Req is: Need to download the file to users local desktop and open it automatically.

 

Thanks

Uma

Premiere Pro CC 2019 NOT locking projects

$
0
0

Premiere is allowing two editors to open the same project without a warning and without activating "read only mode." The project doesn't appear to be locked and opens just fine. So we are constantly rewriting over modifications and later have to rebuild what one editor was working on that got saved over. What could the problem be?

CFB2018 RDS security -

$
0
0

I can't seem to connect to RDS running on the local machine using CFB2018.  It's CFserver 2018 and neither a password nor no authentication works.


Any guidance would be appreciated.  See this screenshot for more info:  03.13.2019-13.44.52

After Effects Signout: Error 201

$
0
0

Hi,

Has anyone encountered an issue with AE 2019 when trying to sign out, AE returns with the following error message: 

 

Sorry, After Effects CC has encountered an error and needs to close.

 

You will not be able to use After Effects CC at this time. Please contact Customer Support and use the reference code 201 for more information on how to resolve this issue.

 

 

I do not have a specific formula to reproduce but it happens fairly often, so i would not say intermittent or random.  Not having any issues logging in, just logging out.

 

thanks

Frame Above/Below Pgf Conversion to RoboHelp Alignment Issues

$
0
0

TCS 5 User (Frame 12/RoboHelp 11)

 

I have a FrameMaker source book linked to a RoboHelp project with a named paragraph style, "Note." In FM Paragraph Designer, "Note" specifies a line (or border) above and below the paragraph (via field names "Frame Above Pgf"/"Below Pgf").  These frames/borders are defined as graphics in the FM reference page for the book.

 

In the past, when I've synched the files from FM to RH, the above/below paragraph border for this Note style did not get converted at all in RH, meaning in RH, Note text is not bordered with a line above or below, which is fine.  TCS manual specifically states that graphics that are not inside anchored frames do not get imported, and these borders are inside graphic frames, not anchored frames. 

 

However, I recently edited the FM files and synched them to RH, and suddenly the above/below borders now appear in the RH file.  I don't know why, as I have not updated my software.  The problem is, they are not aligned properly. The left and right margins of the top line are to the left of the the l/r margins of the bottom line.  I see from the HTML code that the borders were imported as images.

 

I cannot find a setting in the Conversion Settings that would allow me to tweak these borders, either to omit them in the RH file, or to align them properly.  They appear throughout my 680-page document, so I cannot tweak them ad hoc.  My preference would be to eliminate them, from RH (not FM) since the the border image in RH appears to have a fixed width, and therefore does not dynamically adjust to correspond to the length of the text/window.

 

Any tips on how to fix this alignment or eliminate the border when converting to RH?

 

Images attached.

Note Style Frame.png

 

Note Style RH.png


PS CC 2019 fügt beim 3D-Rendern störende Pixel hinzu, die ein regelmäßiges Muster ergeben.

$
0
0

Hallo ADOBE-EXPERTEN,

PS CC 2019 fügt beim 3D-Rendern störende Pixel hinzu, die ein regelmäßiges Muster ergeben. Es sieht aus, als würde ADOBE eine Art Copyright einfügen, wie es in Demoversionen oft der Fall ist. Ich habe jedoch keine Demoversion, sondern bin zahlender Kunde. Kennt jemand eine Lösung, wie man die störenden Pixel vermeiden kann?

 

Vielen Dank, Scotty

Bildschirmfoto 2019-03-13 um 09.29.19.png

@Reference or bind/unbind or get/set ; which is the right way ?

$
0
0

Hi All

 

   This question is more or less similar to The annotation @Reference is disallowed for this location  . Today I was faced with a question. So the question was like "How will you refer a service in another service or component ? " So my obvious answer was using @Reference. But the the person told that @Reference doesn't work with new OSGI R6 annotation (which was non acceptable for me because all the projects with almost all the archetype till 17 I am able to get it work) . I never faced issue with using @Reference . So my second answer was "Ok. There was once a scenario where i got an error which said @Reference not allowed here , so then after so much of searching I found out that , it can be worked around using bind/unbind" . This answer also didn't satisfy. So then he informed me that we have to get a service using getters and setters in new OSGI R6 annotations. This was a new thing to me as I have never faced a situation where @Reference returned me null.

 

  After this discussion , i assumed it could be the case with a latest archetype like 17 . So I created a project with the very latest archetype and tried getting my service using @Reference annotation. It worked like as usual. So I wanted to confirm the solution mentioned by the person and after lot of searching I got few leads on how to use it . java - Resolving an OSGi service instance from a static method - Stack Overflow   . I did give it a try and it worked.

 

  So my question to the community is , as per OSGI R6 annotations  what is the right way to do this ? What are the implications of doing each way ? Is there any documentation which will explain on this ? When I looked for few documentations , one like feike_visserUsing OSGi R6 annotations (>= AEM6.2) - Experience Delivers told @Reference has no change which I can also confirm from all the test I did.

 

Find below the sample done using Setter and getter for getting service. This worked as normal as @Reference . The problem here is I am not able to justify why it is done this way or why it works when using @Reference.

 

One of my colleague actually informed me that for him in latest project all the other ways gave null and so when he used setter/getter only he could get service . This has confused me more as I have never experience a null while using @Reference.

 

Exporting an Illustrator file as a DXF file for quilting machine?

$
0
0

I an trying to export a simple line drawing from Illustrator as a DXF file to use in my quilting machine's software ( Gammill's Creative Studio ) I can import other DXF files into the Gammill software easily, even some very old ones, but nothing I create in Illustrator will import. Is there a trick?

Cant install adobe XD

$
0
0

When i click the download option it tells me that the app is downloading and that adobe cc will open where i can install it, but after adobe cc opens nothing happens and there is no where i can see my dowloads or apps on the desktop version of adobe cc (windows 10),

 

 

this is the page it takes me to;

Screenshot - fe17a5fcf03e4bce106aee060628f96b - Gyazo

Pro Constant Crash

$
0
0

I'm having issues with Premiere Pro right after startup. Whether i open the premiere pro file directly or navigate to it after startup, as soon as i double click or open, it crashes. My screen will go black for a second, then pop back up with a new window.
premiere pro error.PNG
After choosing either option my screen will go blank again as Premiere Pro is forced to close.
I have gotten around this before by changing the folders where both the file and the projects files are contained, but that doesn't seem to work anymore.

 

I've even changed computers, but my issue stays the same. I have a fairly large computer with ample amounts of RAM and dual processor.

 

Also, I'm in the somewhat intermediate category in my knowledge of Premiere Pro, so it could be something simple that i just haven't learned yet.

Any thoughts on what the problem could be?
Thanks.

I don't understand Character Styles!!

$
0
0

I've tried to use character styles many times, and usually get so frustrated and give up. But I really want to figure this stuff out so that I can use these useful little tools properly!! Here is what I'm struggling with right now:

 

I have a text box with text size 29.45 pt in it. If I click on this text and select it and create a new character style, I get a character style that is 52 pt, not 29.45 pt as the text is appearing.

If I instead select that text and click on the "clear override" button, the text changes to another font altogether and is now 3.37 pt.

What??

 

I decided to just start over. I created a new text box with size 29.45 pt text. I selected the text and created a new character style and named it "Slider Heading". In the settings, I can see that the size set for this new character style is set to 29.45, just like I want.

If I make a brand new text box and apply my "Slider Heading" character style, it works!

But if I select the text I've been working with already and select "Slider Heading", nothing happens. A little plus sign appears next to its name though. I tried clicking the "clear overrides" button. This changes the text to 16.52 pt. That seems random to me... If I try to again click on "Slider Heading", nothing happens and the little plus sign next to the name is gone.

 

I don't understand!!! I hope someone does. Please impart your wisdom upon me!

Is saving section to file the only way to "mend" cuts?

$
0
0

If I "cut" up a clip, is there a way to "uncut" it or "mend" it so it doesn't have any cuts in it?I know I can select a segment, save it to an MP4 file, and re-insert it in the timeline but I was wondering if there is another way? Is it any different in Premiere Pro?


Missing fonts Adobe XD preview app

$
0
0

I tried every solution on this forum, but when i try to preview my screens in creative cloud with the adobe XD app i get 'fonts missing'. I use the font Baufrau.

When i create a public link, it will load the font.

I updated the app and the programm to the latest version.

How can i solve this?

how to remove decimal value (.00) from slider control

$
0
0

Please ask me how to remove decimal value (.00) from slider control and add % (if possible) in after effects cs6.

Versions of PS Cloud Based service

$
0
0

Hi

I have just updated by apps to run PS but still have a previous version showing on my Mac.  Is it ok to remove it or how to I find where I can set my computer to automatically remove old versions.  Many thanks

Missing approved files from My Portfolio

$
0
0

5 of my approved photos are missing when viewing my portfolio. I can see them via the dashboard.

Any idea how how I can get them to be displayed?

Missing "LEARN" Button on Home Page

$
0
0

I have InDesign CC 2019.  On the home page, the "LEARN" Button which is directly beneath the home button is not shown/available.  Please advise.  Thanks.

Viewing all 290743 articles
Browse latest View live