Anonymous
My feedback
43 results found
-
282 votes
“Place Video from URL” option has been restored in the latest InDesign update – version 15.1.
Please update InDesign to use the feature.
—
Adobe InDesign teamAnonymous supported this idea · -
136 votes
An error occurred while saving the comment Anonymous supported this idea · -
191 votes
Dear All,
This is fixed in latest InDesign CC version. Please upgrade to the latest release.
Thanks
Abhinav AgarwalAnonymous supported this idea · -
298 votes
Hi everyone,
InDesign provides an option to export and import User Settings, providing users with a smooth and enhanced experience to restore their custom settings if needed. The feature is now available in the latest InDesign 2024(v19.3.0.058)
Helpx article - https://helpx.adobe.com/in/indesign/using/export-import-user-settings-indesign.html
Please let us know your feedback in the comments.
—
Sanyam Talwar(he/him)
Anonymous supported this idea · -
408 votes
Hello All,
Kindly provide more information about this ask. How do you plan to use the Action Panel in InDesign? Do you want it to work exactly like that in Photoshop? What are the most important actions/operations that you want to record?
Thanks
Abhinav Agarwal
Product Manger – InDesignAnonymous supported this idea · -
615 votes
In the Beta versions of InDesign, it is now possible to Open PDFs.
Work on adding more features & capabilities to this feature has also started.
--
Adobe InDesign team
Anonymous supported this idea · -
391 votes
The ability to find colors in documents in now available in InDesign’s latest release 16.0.
It can be found in a new tab of Find/Change dialog – Color.
Please let us know your feedback in comments.Regards,
Abhinav Kaushik (AK)Anonymous supported this idea · -
922 votesAnonymous supported this idea ·
-
5 votes
Hello All,
Thank you for reporting the issue to us.
We have fixed the issue in the 14.0.3 version of InDesignPlease upgrade your InDesign application to the latest version to try out the fix. The latest version of InDesign is 15.0
If you face any problems with the new update, do let us know in the comments.
An error occurred while saving the comment Anonymous commentedThanks for fixing. Seems to be working again. I'm on 14.0.3
Anonymous shared this idea · -
4 votesAnonymous supported this idea ·
-
11 votes
Hello All,
Thank you for reporting the issue to us.
We have fixed the issue in the latest version of InDesign, Id 15.0Please upgrade your InDesign application to the latest version to try out the fix.
If you face any problems with the new update, do let us know in the comments.
You may also follow the below given link for the list of all fixed issues in Id 15.0
https://helpx.adobe.com/indesign/kb/fixed-issues.html-InDesign Team
Anonymous supported this idea · -
4 votes
Hello All,
Thank you for reporting the issue to us.
We have fixed the issue in the latest version of InDesign, Id 15.0Please upgrade your InDesign application to the latest version to try out the fix.
If you face any problems with the new update, do let us know in the comments.
You may also follow the below given link for the list of all fixed issues in Id 15.0
https://helpx.adobe.com/indesign/kb/fixed-issues.html-InDesign Team
Anonymous supported this idea · -
6 votes
Hello All,
Thank you for reporting the issue to us.
We have fixed the issue in the latest version of InDesign, Id 14.0.3Please upgrade your InDesign application to the latest version to try out the fix.
If you are unable to see the update yet, go to Creative Cloud desktop application, open the menu (three dots) from the top-right corner and click on ‘Check For App Updates’.
If you face any problems with the new update, do let us know in the comments.
You may also follow the below given link for the list of all fixed issues in Id 14.0.3
https://helpx.adobe.com/indesign/kb/fixed-issues.htmlAn error occurred while saving the comment Anonymous commentedI've noticed that too; thanks for working on it. Interesting, that only so few people noticed it...
Anonymous supported this idea · -
2 votes
Hi,
Please can you send the .indd file via mail?Also, is the issue not happening with previous Indesign versions?
Thanks,
Aman
amaarora@adobe.comAnonymous supported this idea · -
10 votesAnonymous supported this idea ·
-
83 votes
Hello All,
Thank you for reporting the issue to us.
We have fixed the issue in the latest version of InDesign, Id 14.0.3Please upgrade your InDesign application to the latest version to try out the fix.
If you are unable to see the update yet, go to Creative Cloud desktop application, open the menu (three dots) from the top-right corner and click on ‘Check For App Updates’.
If you face any problems with the new update, do let us know in the comments.
You may also follow the below given link for the list of all fixed issues in Id 14.0.3
https://helpx.adobe.com/indesign/kb/fixed-issues.htmlAn error occurred while saving the comment Anonymous commented@phantom steve: Theres an instruction for Mac as well. Its not a vbs for Mac.
Although i'd prefer the Hotfix to be in the cloud as well. Maybe as a Beta-Branch.
Anonymous supported this idea · -
109 votes
Hello All,
Thank you for reporting the issue to us.
We have fixed the issue in the latest version of InDesign, Id 14.0.3Please upgrade your InDesign application to the latest version to try out the fix.
If you are unable to see the update yet, go to Creative Cloud desktop application, open the menu (three dots) from the top-right corner and click on ‘Check For App Updates’.
If you face any problems with the new update, do let us know in the comments.
You may also follow the below given link for the list of all fixed issues in Id 14.0.3
https://helpx.adobe.com/indesign/kb/fixed-issues.htmlAn error occurred while saving the comment Anonymous commentedI just noticed this is in the wrong section. It should be in SDK/Scripting Bugs.
An error occurred while saving the comment Anonymous commentedAs i wasnt able to attach the scriptfile here is the code:
var myWindow = new Window("dialog", "Konfiguration");
var myButtonGroup = myWindow.add("group");
var config = myButtonGroup.add("button", undefined, "Einstellungen", {
name: "settings"
});
var Abbrechen = myButtonGroup.add("button", undefined, "Abbrechen", {
name: "cancel"
});
config.onClick = function() {
var myConfigWin = new Window("dialog", "Einstellungen");
var contentGruppe = myConfigWin.add("group");
contentGruppe.alignChildren = "left";
contentGruppe.orientation = "column";
var contentEintrag = contentGruppe.add("group");
var contentText = contentEintrag.add("edittext", [0, 0, 750, 500], "Test", {
multiline: true
});
contentText.characters = 20;
contentText.enabled = true;
var contentButtonGruppe = myConfigWin.add("group");
var contentPlatzhalter = contentButtonGruppe.add("statictext", [0, 0, 550, 0], "");
contentButtonGruppe.orientation = "row";
contentButtonGruppe.alignChildren = "right";
var closeConfig = contentButtonGruppe.add("button", undefined, "Abbrechen", {name: "cancel"});
closeConfig.onClick = function() {
myConfigWin.close();
}
myConfigWin.show();
}
myWindow.show();An error occurred while saving the comment Anonymous commentedI'm running InDesign 14.0.2 on a macOS High Sierra (10.13.6)
In a script i created I have a Dialog. It has a button that opens another dialog.
Before my last indesign-update (CC 14.0.2) the second dialog would open and when i closed it, i could use the previous dialog window again.
Now with the Update when I open the second dialog and close it again, i cant use (or close) the previous dialog and it blocks me from using InDesign. I can move the dialogwindow around but thats it so i have to restart indesign.
I tested this on two colleague's system with the same InDesign version (14.0.2) and had the same result.
I tested this on a colleague's system with 14.0.1 and it worked as intended. (Also it worked for me before the update)Attached is a testscript with the dialogs and a short videodemonstration.
Pls fix this, as we use this function to change settings in configfiles for scripts we use.
Anonymous shared this idea · -
3 votesAnonymous shared this idea ·
-
12 votes
Thanks for reporting the issue. We are looking into it
-Aman
Anonymous supported this idea · -
19 votes
Hello All,
Thank you for reporting the issue to us.
We have fixed the issue in the latest version of InDesign, Id 14.0.3Please upgrade your InDesign application to the latest version to try out the fix.
If you are unable to see the update yet, go to Creative Cloud desktop application, open the menu (three dots) from the top-right corner and click on ‘Check For App Updates’.
If you face any problems with the new update, do let us know in the comments.
You may also follow the below given link for the list of all fixed issues in Id 14.0.3
https://helpx.adobe.com/indesign/kb/fixed-issues.htmlAnonymous supported this idea ·
I think this issue goes even beyond the preferences panel; there are several settings you can set with buttons in the menu-bar.
Depending on if you have a document open or not, it sets that setting as document specific or global.
For example, the display performance setting can be set globally in the preferences panel or the menu bar (when no document is open). If a document is open, the button in the menu bar sets the display performance only for that document.
When chosing a setting in the menu bar, we need indicators, if those settings are refering to the document or the actual preferences of InDesign.