Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
9

removing warning message about deleting existing keyframes

New Here ,
Jun 12, 2021 Jun 12, 2021

i dont think i ever once needed adobe to tell me that if i delete all the keyframes it will delete all the key frames... its really annoying everytime i want to clear the keyframes it warns me i am about to do exactly as i had planned to do. is there a way to disable this?

 

TOPICS
Editing , Error or problem , User interface or workspaces
1.1K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 12, 2021 Jun 12, 2021

Short answer nope.

To avoid the message, delete the keyframes instead of using the stopwatch.

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 17, 2023 Apr 17, 2023

100% agreed. It deafeats the porpose of having a delete all keyframe option. You don't get that warning in ae. 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Oct 06, 2023 Oct 06, 2023

After Effects does not have this. Why does Premiere? I've gotten so used to always clicking away the warning that I didn't even realize how annoying and absolutely unnecessary this dialog box is!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Oct 06, 2023 Oct 06, 2023

I'm used to it, it just takes a click and a thumb. Click the clock, thumb the spacebar.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Oct 06, 2023 Oct 06, 2023

Yes, like I said. I totally got used to closing it without even noticing. Although I should probably get used to hitting the space bar instead of clicking on it, or write a script that can automatically close that annoying little window. Also... This "one click" mentality can quickly add up to destroying the whole user experience of using Premiere.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Oct 06, 2023 Oct 06, 2023

There should definitely be a checkbox to permanently disable this warning!Schnitt 2.pngexpand image

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Feb 16, 2025 Feb 16, 2025

I know this is old, but was there ever an update that introduced a setting for this? The warning is incredibly useless when I can just ctrl+z and get it all back if I accidentally click it (which hardly ever happens in the first place).

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Feb 18, 2025 Feb 18, 2025
LATEST

For my folks out there using Autohotkey. Here is my solution to this problem (Premier Pro 25.1 in Englisch):

#SingleInstance, force
#Persistent

SetTimer, CheckPremierePro, 10000

CheckPremierePro:
If WinExist("ahk_exe Adobe Premiere Pro.exe")
{
SetTimer, CloseWarning, 10
}
else
{
SetTimer, CloseWarning, Off
}
return

CloseWarning:
If WinExist("ahk_class #32770")
{
Send, {Space}
Sleep, 100
}
return

 

Actualy, if noticed that this script does not wort because of changes to premiere pro from v24.0 to v25.1... cool. Thank you!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines