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

Re: Adobe Analytics extension, propagate custom code to all rules


Re: Unable to open sub folders on importing photos

$
0
0

https://forums.adobe.com/people/Just+Shoot+Me  wrote

"Then your problem is NOT the same as the original poster.

They had a problem getting to a Subfolder on the SD card and or a subfolder on the hard drive in the "SOURCE" section, NOT the Destination section of the import dialog."

Incorrect. You'll see from the original poster's message that he says "I am clicking on the parent folder in the RH [Right Hand] panel".  Now take a look at the screen shot he posted on Feb 25, 2018.  The RH panel is the destination.  He goes on to say "I am unable to display any subfolders below walks...".  Now, if you look again at the screen shot you'll see that 'walks' is a folder on the right hand side of the import dialogue, in a section quite clearly labelled "Destination".  It is therefore clear that my problem IS the same as that of the original poster.

"You never made it clear you were talking about the Destination section in your previous posts."

How can you say that when in my first post I said "I'm having the same problem" and then on Jun 30 2019 at 2:49pm in response to your message, I said "The problem with the subfolders (in my case at least) is on the destination side of the import dialogue"?

"And as the OP was talking about the Source section
[no, he wasn't] it was totally confusing."

 

Not to anyone else reading this thread.  I think the rest of us have it right.  The only one sowing confusion is you.

 

"I bet at the times you can not get to a subfolder on your networked drive in the Destination section of the LR import dialog you can [not?] get to that same folder using the OS File Manager either."

 

Incorrect.  At the times when Lightroom's import dialogue plays up, I canget to that same folder, and sub folders, using the OS file manager.  Furthermore, you'll see from my post of Jun 30, 2019 2:55pm that I restarted Lightroom and the problem went away (until next time).

 

I thought people came here for help, but all I'm getting from you is a misinterpretation of the facts, coupled with an aggressive attitude.  Why?

Re: Add Image is trying to convert to PDF - Can't place image in PDF

$
0
0

Yes, I did contact tech support. The person tried multiple things up to and including reinstalling Acrobat and was never able to solve the issue. He deleted some registry settings as well and that did not solve the problem.

 

No, this did not start after upgrading to Win10. I have been able to do this since I have had Win10 on this computer.

Re: Unable to open some PDF files with latest version of reader;can't click on links

$
0
0

Sorry for double posting, but I just want to give a clearer understanding of the problem I am having:

 

1. I am able to open pdf files that I saved (via Firefox Print to PDF extension) from November, April, and May, but I can't open files from December, January, or March without getting the error message (mentioned in the screenshot above). 

2. The links within the files I saved from April and May aren't clickable, and like I said before, I don't know whether or not they used to work, because I didn't test them, and TBH, when I saved these files on my computer, I had no reason to believe that there were problems of any kind. 

 

What I have tried:

 

1. Opening the file(s) with the error message: I have tried using another tool (Foxit Reader) to open the problem file(s), and that didn't help.

2. I also have tried opening the file on another computer, and same result.

 

I just did some research online and I came across an article describing hot to make a hyperlink work in a PDF file.  This is just one possible solution that I found, and I can't guarantee that it will work, but I will keep you updated.

Re: How to copy (save) styles (typeface, font size, design, etc.) of arbitrary text fragments and apply them to new text layer fragments?

$
0
0

You can use DialogModes.ALL to replace only the desired suitable fragment.


It is possible to write a script to replace only the middle (or other) text with preserving the style.But it will be quite a long and complex script.I'm too lazy to write it.

Re: Adobe Campaign Classic - Folder Structure Creation Using Database Script

$
0
0

Hi,

 

You can use this code:

var rootLabel = 'Wells Fargo';
var prefix = 'wellsFargo';

var root = NLWS.xtkFolder.create({x:{model: 'xtkFolder', label: rootLabel, name: prefix+'Root', 'parent-id': 162522790}});
root.save();
logInfo('Root id', root.id);
// Admin
var admin = NLWS.xtkFolder.create({x:{model: 'xtkFolder', label: 'Administration', name: prefix+'Administration', 'parent-id': root.id}});
admin.save();
// Campaign
var campaign = NLWS.xtkFolder.create({x:{model: 'xtkFolder', label: 'Campaign Management', name: prefix+'CampaignMgt', 'parent-id': root.id}});
campaign.save();
(NLWS.xtkFolder.create({x:{model: 'nmsDelivery', label: 'Deliveries', name: prefix+'Deliveries', 'parent-id': campaign.id}})).save();
var typo = NLWS.xtkFolder.create({x:{model: 'xtkFolder', label: 'Typology Management', name: prefix+'TypologyMgt', 'parent-id': campaign.id}});
typo.save();
(NLWS.xtkFolder.create({x:{model: 'nmsTypology', label: 'Typology', name: prefix+'Typology', 'parent-id': typo.id}})).save();
(NLWS.xtkFolder.create({x:{model: 'nmsTypologyRule', label: 'Typology Rules', name: prefix+'TypologyRules', 'parent-id': typo.id}})).save();
// Profiles
var profiles = NLWS.xtkFolder.create({x:{model: 'xtkFolder', label: 'Profiles and Targets', name: prefix+'Profiles', 'parent-id': root.id}});
profiles.save();
(NLWS.xtkFolder.create({x:{model: 'nmsRecipient', label: 'Recipients', name: prefix+'Recipients', 'parent-id': profiles.id}})).save();
(NLWS.xtkFolder.create({x:{model: 'nmsSeedList', label: 'Seed addresses', name: prefix+'Seeds', 'parent-id': profiles.id}})).save();
(NLWS.xtkFolder.create({x:{model: 'nmsGroup', label: 'Lists', name: prefix+'Lists', 'parent-id': profiles.id}})).save();
// Resources
var res = NLWS.xtkFolder.create({x:{model: 'xtkFolder', label: 'Resources', name: prefix+'Resources', 'parent-id': root.id}});
res.save();
(NLWS.xtkFolder.create({x:{model: 'xtkXslt', label: 'XSL Stylesheets', name: prefix+'Xsl', 'parent-id': res.id}})).save();

 

Replace XXX with the id of your desired parent folder. It's an int and it can be found in the folder advanced properties.

 

To dynamically generate the following structure:

20190701-121735-screenshot-4.jpg

 

Note: the "model" key in the JSON is used to automatically set all the default parameters. You may find the values for model in \datakit\nms\eng\package\folder.xml and core.xml (look for <entities schema="xtk:folder"> node)

Note 2: the "save()" method is intelligent, it will update the folders if they already exist, no need to delete them

Note 3: some schemas don't have a folder-id, such as XSL stylesheets, so every brand will be able to see other brands XSL. You may have to hardcode a filter in the advanced parameters > restriction.

 

Kind regards

Non ASCII characters not showing in selected font on web page

$
0
0

I'm trying to use several Adobe Fonts on a webpage, through a web project.

 

The HTML page I'm assembling is in Hungarian, and there are two problematic letters (which are a common problem anyway in Hungarian) which are not standard: ő and ű.

When I try some font on Adobe Fonts and enter a custom text with these letters, first an X-ed box appears on the place of these letters but then get replaced by the correct one matching the right font. (so there is something with those characters, but after a second or two they get replaced and these letters exist in those fonts) !

However, when a text with one of these characters is shown with the same font, the ő and ű characters are displayed with some default (Arial or so) font instead of the Adobe one. The encoding of the page is UTF-8 and charset in meta tag also set to UTF-8. Is there any catch, how should I make these letters appear matching the right font?

Re: lightroom shared collection when downloaded loses metadata

$
0
0

Hey cmgap, Thanks for trying to help.

 

Ok shared collection from Lightroom classic to the online version so that person I am working with can use in her project.  

Lightroom classic has lots of meta info on my images. 

The online version shows meta data.

The resulting downloaded image has almost no meta data.  Tested with multiple collections and images.  Have 1000’s of images to share.

 

Sorry if if this is the wrong group.  This is the application I am working from so it seemed relevant.  Not sure what group it should go into if not here?


Re: Very slow RAM preview with good computer specs?!

$
0
0

What is the format and size of your clip art? I'm not having any performance issues with the last two versions of AE. I'm actually a lot more productive than I was just two years ago.

Re: CP9 and Radio Button Widget no displaying in HTML5 when published

$
0
0

Postscript:  <style type="text/css">.cp-widget iframe {width:1024px !important; height:768px !important;}</style>

 

Works. Ugh.

Re: How can I duplicate conditional form fields?

$
0
0

There are going to be about 40 lines on this form.  On each line, there will be a drop-down box and a text box.  Every line has the same drop-down options, and each text box will auto-fill based on the answer in the drop-down box on that line.  Right now, I only have fields in the first line of the form.  The dropdown field is named "Haz" and the text field is named "Prev".  I am looking for a way to repeat the fields so that there are 40-45 lines on the page.  In fact, now that I mention it, I will need to repeat this on subsequent pages as well.

Re: Repère rond de flou de profondeur de champ disparu

$
0
0

De rien

C'est souvent les préférences qui sont la cause. Si jamais il y a un souci il faut dans un premier temps s'occuper des préférences

Re: Multiple string results in one field, from different dropdown selections... Please help

Re: AIR is now from HARMAN, what to expect?

$
0
0

Well, I don't think these are good news, start this negotiation in the middle of the most critical update imposed by Google. It seems that is just to force the payment model, similar to the Unity3D according to the Harman announcement that they are going to apply to all of the worried, desperate, hopeless developers that were surprised with this suddenly last minute announcement of the AIR acquisition. Andrew Frost @ajwfrost from Harman, do you really thing that AIR and Unity 3D can be compared?, do you really think Adobe AIR, that it is just an SDK, deserve a subscription payment model like Unity 3D?, Unity come fully loaded of tools of all kinds, plugins, assets, native access of almost the entire native platforms it supports, all of the mobile platforms, all of the desktop platforms, all of the game console platforms, all of the smart TV platforms, and web; it offers all of you need to build AAA Games and Apps without the need to pay for anything else, AIR and Unity are not comparable at all, so you can't be thinking in a payment model like Unity for AIR, to develop with AIR you need to invest in a lot of additional tools like ANEs, SDKs, IDEs, you depend of the most expensive extensions ever to access the simplest native functionality, even to integrate simplest technologies like Facebook login, you must pay a lot of money, and only for 2 platforms and 1 architecture, while Unity offers almost every existing platform for the same price, if you want an almost complete development ecosystem you need to be subscribed to Adobe CC, these among another lot of reasons Adobe AIR can't be charged. We are not going to pay anything for AIR, it's going to be less expensive for a thousands of developers to port their AS3 games to Haxe, frameworks like Starling and Away3D are already ported, and start new ones with another technologies much more reasonable. We are already porting all of our games to Haxe, and starting new ones with another tools that deserve its costs, we are already completing our porting and we are really sure that we are going to publish updates before Harman releases any usable AIR. Adobe always kicked out our *****, always abandoned the developers that generously supported their technologies, even controversial ones like Flash, this is going to finish with this fatal AIR new era, the future of AIR is its death.

Any suggestion how on how i can make this gif more clear?

$
0
0

WhatsApp Image 2019-07-01 at 19.25.30.jpeg

the dimesions are 150px by 150 px and i wanted to improve the quality. my setting were - adaptive, no dither, colors - 250.

 

I made file is a html 5 canvas.


Re: Laggy Camera

$
0
0

Found my own fix. I had to open up FaceTime prior to opening up character animate. No idea why it works this way.

Re: How to clean uninstall Adobe products

$
0
0

Are you a Team, Enterprise or Individual account holder?

Where to find FULL NOTES on adobe product releases

$
0
0

Hi guys,

 

I'm trying to find out if there's ONE page that has ALL of the notes for any given release for any product.

 

For instance, I want to see what's up with the latest Photoshop update. I can't seem to find ONE page that has all the info. The "Learn more/New and enhanced features | Latest release of Photoshop" tab next to the update in the Cloud app mushes all the features for that "CC 20**" version. Fixed issues in Adobe Photoshop only seems to cover bug fixes, not new features. Photoshop Release Notes doesn't even list CC2019.

 

What I'm looking for is a comprehensive, technical, detailed RELEASE NOTES LIST for an adobe product. What I would expect is a chronological break down of what is addressed in EACH dot release. Right now all I've been able to find is focused/incomplete lists or long mashups of things without chronology attached.

 

I swear usually really good at google, and I SWEAR I've seen a section of the Adobe website structured like what I described before. Am I missing something really, PAINFULLY obvious?

 

I work primarily in Photoshop, Illustrator, and XD, but would greatly appreciate directions to all of the other apps if possible.

 

 

Thanks guys!

Re: Dreamweaver won't open html files

$
0
0

You shouldn't put a question mark at the end of your fact. That makes it...a question.

 

Reproduce and note away on your Windows 10 system. Since the issue is presenting itself on a MacOS system which CC applications are separately developed for, the only thing your anecdotal evidence has to add to this conversation is that it is most likely is a bug.

 

If Adobe's track record is anything to go by, I will see Dreamweaver implementing self writing code before I see a fix for this.

Re: Adobe Captivate 2019: VR Project Export is Laggy

$
0
0

I would say that you should not bother using VR videos inside Captivate projects and after publishing -  inside SCORM files. Why Adobe even chooses to let users spend time trying to get work - well maybe somebody else could could explain.

 

I always use a CDN with an adaptive HTML5 video player when adding video to my courses.

 

/Jacob

Viewing all 150094 articles
Browse latest View live


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