├── .gitignore ├── LICENSE ├── README.md ├── index.html ├── json ├── 2015.3.json ├── 2015.json ├── 2017.json ├── 2018.json ├── 2019.json ├── 2020.json ├── 2021.json ├── 2022.json ├── 2023.json ├── 2024.json ├── 2025.json ├── manual.json └── name-overrides.json ├── media └── viewer.jpg ├── package.json ├── parser ├── menu-scan-run.js ├── parse-dat.js └── scanner.scpt ├── src ├── app.tsx ├── badge │ ├── badge.scss │ ├── badge.tsx │ └── hb-icon.svg ├── favicon.svg ├── globals.d.ts ├── main.tsx └── styles.scss ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | media/videos 7 | parser/steps/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) Hyper Brew LLC 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # After Effects Command IDs 2 | 3 | ### v2.0.1 4 | 5 | [![License](https://img.shields.io/badge/License-MIT-green.svg)](https://github.com/hyperbrew/after-effects-command-ids/blob/master/LICENSE) 6 | [![Chat](https://img.shields.io/badge/chat-discord-7289da.svg)](https://discord.gg/PC3EvvuRbc) 7 | 8 | Find and use Command IDs for scripting in Adobe After Effects across versions. 9 | 10 | _Full blog post:_ https://hyperbrew.co/blog/after-effects-command-ids/ 11 | 12 | --- 13 | 14 | ## Viewer 15 | 16 | Open the viewer to quickly search and find the Command ID for your version of After Effects: 17 | 18 | https://hyperbrew.github.io/after-effects-command-ids 19 | 20 | ![Viewer](./media/viewer.jpg) 21 | 22 | --- 23 | 24 | ## Usage 25 | 26 | Use Command IDs in After Effects with `app.executeCommand();` 27 | 28 | --- 29 | 30 | ## JSON 31 | 32 | Download the complete list of JSON file for each version of After Effects in the [`/json/`](./json) folder. 33 | 34 | --- 35 | 36 | ## Scanner 37 | 38 | v2.0 adds a MacOS Menu Scanner to the process to capture even more Command IDs. 39 | 40 | To run yourself: 41 | 42 | - clone the repo on Mac 43 | - install dependencies: `yarn` 44 | - Launch the desired After Effects version 45 | - Update the version variable in `parser\menu-scan-run.js` to your After Effects Version (e.g. `2024`, `2025`, etc) 46 | - run the scanner: `yarn scan` (or just `yarn scan-post` if you already have generated the `1-results-raw-vvvv.txt` which takes several minues) 47 | - wait several minutes for the process to complete 48 | - results will printed to: `8-merged-results-vvvv.json` 49 | 50 | See the scanner in [`/parser/menu-scan-run.js`](./parser/menu-scan-run.js) for more details 51 | 52 | --- 53 | 54 | ## Menu Develop Quickstart 55 | 56 | - Install: `yarn` 57 | - Develop: `yarn dev` 58 | - Build: `yarn build` 59 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | After Effects Command IDs 7 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /json/2015.3.json: -------------------------------------------------------------------------------- 1 | { 2 | "1": "Quit", 3 | "2": "NewProject", 4 | "3": "OpenProject", 5 | "4": "Close", 6 | "5": "Save", 7 | "6": "SaveAs", 8 | "7": "Revert", 9 | "8": "PageSetup", 10 | "9": "Print", 11 | "16": "Undo", 12 | "18": "Cut", 13 | "19": "Copy", 14 | "20": "Paste", 15 | "21": "Clear", 16 | "23": "SelectAll", 17 | "53": "CopyExpressionOnly", 18 | "256": "AboutAfterEffects", 19 | "2000": "NewComposition", 20 | "2003": "File", 21 | "2004": "DeselectAll", 22 | "2005": "AddFootagetoComp", 23 | "2007": "CompositionSettings", 24 | "2012": "SetPosterTime", 25 | "2016": "BringtoFront", 26 | "2017": "SendtoBack", 27 | "2018": "BringForward", 28 | "2019": "SendBackward", 29 | "2020": "Transform", 30 | "2021": "LayerSettings", 31 | "2024": "TimeStretch", 32 | "2025": "PICT", 33 | "2035": "Redo", 34 | "2037": "Resolution", 35 | "2038": "Solid", 36 | "2040": "Mask", 37 | "2041": "Quality", 38 | "2042": "Wireframe", 39 | "2044": "Draft", 40 | "2045": "Best", 41 | "2046": "Quarter", 42 | "2047": "Half", 43 | "2048": "Full", 44 | "2049": "Custom", 45 | "2051": "FreeTransformPoints", 46 | "2052": "Inverted", 47 | "2053": "Switches", 48 | "2054": "HideOtherVideo", 49 | "2055": "ShowAllVideo", 50 | "2056": "Audio", 51 | "2059": "Video", 52 | "2062": "Effect", 53 | "2065": "Position", 54 | "2066": "Scale", 55 | "2068": "MaskShape", 56 | "2069": "MaskFeather", 57 | "2070": "Opacity", 58 | "2071": "Precompose", 59 | "2072": "RemoveAll", 60 | "2076": "GotoTime", 61 | "2077": "Main", 62 | "2078": "File", 63 | "2079": "Preferences", 64 | "2080": "Duplicate", 65 | "2081": "Third", 66 | "2092": "ZoomIn", 67 | "2093": "ZoomOut", 68 | "2101": "1", 69 | "2102": "InterpretFootage", 70 | "2103": "Proxy", 71 | "2104": "File", 72 | "2105": "Import", 73 | "2106": "SetProxy", 74 | "2107": "ConsolidateAllFootage", 75 | "2109": "RemoveUnusedFootage", 76 | "2113": "Shy", 77 | "2114": "Lock", 78 | "2116": "MotionBlur", 79 | "2118": "File", 80 | "2119": "None", 81 | "2125": "SavePreview", 82 | "2131": "Preview", 83 | "2135": "TimeReverseLayer", 84 | "2139": "NewFolder", 85 | "2142": "EditOriginal", 86 | "2149": "RenderSettings", 87 | "2150": "OutputModule", 88 | "2153": "EnableTimeRemapping", 89 | "2154": "AddOutputModule", 90 | "2155": "Custom", 91 | "2156": "FittoComp", 92 | "2157": "AddMarker", 93 | "2158": "DuplicatePreserveFile", 94 | "2159": "KeyframeAssistant", 95 | "2160": "Collapse", 96 | "2161": "AddtoRenderQueue", 97 | "2162": "BlendingMode", 98 | "2163": "EffectControls", 99 | "2165": "AutoOrient", 100 | "2166": "SaveaCopy", 101 | "2167": "Normal", 102 | "2168": "Dissolve", 103 | "2169": "DancingDissolve", 104 | "2170": "Add", 105 | "2171": "Multiply", 106 | "2172": "Screen", 107 | "2173": "Overlay", 108 | "2174": "SoftLight", 109 | "2175": "HardLight", 110 | "2176": "ClassicColorDodge", 111 | "2177": "ClassicColorBurn", 112 | "2178": "Darken", 113 | "2179": "Lighten", 114 | "2180": "ClassicDifference", 115 | "2181": "Exclusion", 116 | "2182": "Hue", 117 | "2183": "Saturation", 118 | "2184": "Color", 119 | "2185": "Luminosity", 120 | "2186": "StencilAlpha", 121 | "2187": "StencilLuma", 122 | "2188": "SilhouetteAlpha", 123 | "2189": "SilhouetteLuma", 124 | "2190": "PreserveTransparency", 125 | "2191": "NoTrackMatte", 126 | "2192": "AlphaMatte", 127 | "2193": "AlphaInvertedMatte", 128 | "2194": "LumaMatte", 129 | "2195": "LumaInvertedMatte", 130 | "2197": "LuminescentPremul", 131 | "2198": "AlphaAdd", 132 | "2199": "Difference", 133 | "2200": "ColorDodge", 134 | "2201": "ColorBurn", 135 | "2202": "LinearDodge", 136 | "2203": "LinearBurn", 137 | "2204": "LinearLight", 138 | "2205": "VividLight", 139 | "2206": "PinLight", 140 | "2207": "HardMix", 141 | "2208": "LighterColor", 142 | "2209": "DarkerColor", 143 | "2210": "Subtract", 144 | "2211": "Divide", 145 | "2226": "ToggleHoldKeyframe", 146 | "2227": "KeyframeInterpolation", 147 | "2228": "KeyframeVelocity", 148 | "2233": "SaveFrameAs", 149 | "2236": "MultipleFiles", 150 | "2237": "ReplaceFootage", 151 | "2240": "EditValue", 152 | "2241": "KeyframeValue", 153 | "2244": "UnlockAllLayers", 154 | "2254": "RememberInterpretation", 155 | "2255": "ApplyInterpretation", 156 | "2257": "ReloadFootage", 157 | "2258": "CompFlowchartView", 158 | "2263": "AdjustmentLayer", 159 | "2264": "New", 160 | "2265": "Templates", 161 | "2269": "TrackMatte", 162 | "2274": "ShowGuides", 163 | "2275": "LockGuides", 164 | "2276": "ClearGuides", 165 | "2277": "ShowGrid", 166 | "2278": "SnaptoGrid", 167 | "2279": "AdjustmentLayer", 168 | "2280": "ShowRulers", 169 | "2283": "ImportRecentFootage", 170 | "2284": "OpenRecentProjects", 171 | "2286": "SnaptoGuides", 172 | "2289": "FrameBlending", 173 | "2290": "Off", 174 | "2291": "FrameMix", 175 | "2292": "PixelMotion", 176 | "2310": "RecentFootageList", 177 | "2330": "RecentProjectList", 178 | "2350": "None", 179 | "2358": "Label", 180 | "2359": "General", 181 | "2360": "TrimComptoWorkArea", 182 | "2361": "Display", 183 | "2362": "Import", 184 | "2363": "Output", 185 | "2364": "GridsGuides", 186 | "2365": "Labels", 187 | "2367": "NewMask", 188 | "2368": "RemoveMask", 189 | "2369": "RemoveAllMasks", 190 | "2370": "Purge", 191 | "2371": "Undo", 192 | "2372": "ImageCaches", 193 | "2373": "All", 194 | "2374": "Closed", 195 | "2387": "RevealPropertiesWithKeyframes", 196 | "2434": "Audio", 197 | "2435": "ShowLayerControls", 198 | "2436": "SelectLabelGroup", 199 | "2439": "DiskCaching", 200 | "2440": "Mode", 201 | "2441": "None", 202 | "2442": "Add", 203 | "2443": "Subtract", 204 | "2444": "Intersect", 205 | "2445": "Lighten", 206 | "2446": "Darken", 207 | "2447": "Difference", 208 | "2448": "ResetMask", 209 | "2450": "ApplyAnimationPreset", 210 | "2451": "RecentAnimationPresets", 211 | "2452": "LastEffect", 212 | "2453": "MaskOpacity", 213 | "2454": "Locked", 214 | "2455": "LockOtherMasks", 215 | "2456": "UnlockAllMasks", 216 | "2457": "WatchFolder", 217 | "2460": "RecentFavoritesList", 218 | "2481": "Snapshot", 219 | "2482": "CollectFiles", 220 | "2494": "Export", 221 | "2518": "AddKeyframe", 222 | "2519": "PreviousKeyframe", 223 | "2520": "NextKeyframe", 224 | "2521": "Reset", 225 | "2523": "OpenSourceWindow", 226 | "2524": "HideLockedMasks", 227 | "2536": "RevealinTimeline", 228 | "2537": "DeleteThisMarker", 229 | "2538": "DeleteAllMarkers", 230 | "2539": "UpdateMarkersFromSource", 231 | "2541": "3DLayer", 232 | "2552": "AdobeDynamicLink", 233 | "2553": "NewPremiereProSequence", 234 | "2554": "ImportPremiereProSequence", 235 | "2557": "Shutter180Phase0", 236 | "2558": "Shutter360Phase0", 237 | "2559": "Shutter90Phase0", 238 | "2560": "Shutter180Phase180", 239 | "2561": "Shutter720Phase360", 240 | "2563": "Light", 241 | "2564": "Camera", 242 | "2565": "LockMarkers", 243 | "2566": "Solo", 244 | "2567": "Settings", 245 | "2568": "TrackMotion", 246 | "2605": "Reset", 247 | "2606": "New", 248 | "2607": "Find", 249 | "2611": "ProjectSettings", 250 | "2613": "LiftWorkArea", 251 | "2614": "ExtractWorkArea", 252 | "2623": "Orientation", 253 | "2624": "Assign3DViewShortcut", 254 | "2625": "Switch3DView", 255 | "2626": "A", 256 | "2627": "B", 257 | "2628": "C", 258 | "2641": "EditValue", 259 | "2642": "Reset3DView", 260 | "2643": "TrackthisProperty", 261 | "2701": "SetKeyframe", 262 | "2702": "AddExpression", 263 | "2703": "SwitchtoLast3DView", 264 | "2704": "VideoPreview", 265 | "2705": "Previews", 266 | "2710": "ActiveCamera", 267 | "2711": "Front", 268 | "2712": "Left", 269 | "2713": "Top", 270 | "2714": "Back", 271 | "2715": "Right", 272 | "2716": "Bottom", 273 | "2717": "CustomView1", 274 | "2718": "CustomView2", 275 | "2719": "CustomView3", 276 | "2732": "FittoCompWidth", 277 | "2733": "FittoCompHeight", 278 | "2735": "ReduceProject", 279 | "2736": "MaskExpansion", 280 | "2738": "Workspace", 281 | "2739": "SaveWorkspace", 282 | "2767": "NullObject", 283 | "2768": "SetFirstVertex", 284 | "2769": "Custom", 285 | "2771": "RevealAllModifiedProperties", 286 | "2776": "ViewOptions", 287 | "2777": "CreateProxy", 288 | "2778": "Still", 289 | "2779": "Movie", 290 | "2780": "Prerender", 291 | "2781": "NextBlendingMode", 292 | "2782": "PreviousBlendingMode", 293 | "2792": "Rotation", 294 | "2797": "MotionBlur", 295 | "2798": "SameAsLayer", 296 | "2799": "On", 297 | "2800": "Off", 298 | "2824": "OneCompView", 299 | "2825": "TwoCompViews", 300 | "2826": "FourCompViews", 301 | "2834": "LookatSelectedLayers", 302 | "2835": "LookatAllLayers", 303 | "2836": "Text", 304 | "2933": "CreateOutlines", 305 | "2934": "SelectEqualKeyframes", 306 | "2995": "History", 307 | "2997": "CropComptoRegionofInterest", 308 | "3013": "ShowTextPanels", 309 | "3016": "Property", 310 | "3017": "Selector", 311 | "3018": "DeleteBrush", 312 | "3019": "AnchorPoint", 313 | "3020": "Position", 314 | "3021": "Scale", 315 | "3022": "Skew", 316 | "3023": "Rotation", 317 | "3024": "StrokeWidth", 318 | "3025": "Tracking", 319 | "3026": "LineAnchor", 320 | "3027": "CharacterOffset", 321 | "3028": "CharacterValue", 322 | "3029": "RGB", 323 | "3030": "Hue", 324 | "3031": "Saturation", 325 | "3032": "Brightness", 326 | "3033": "Opacity", 327 | "3034": "RGB", 328 | "3035": "Hue", 329 | "3036": "Saturation", 330 | "3037": "Brightness", 331 | "3038": "Opacity", 332 | "3039": "FillColor", 333 | "3040": "StrokeColor", 334 | "3041": "Wiggly", 335 | "3042": "Opacity", 336 | "3043": "LineSpacing", 337 | "3044": "Autotrace", 338 | "3052": "AllTransformProperties", 339 | "3053": "RotoBezier", 340 | "3058": "RemoveAllTextAnimators", 341 | "3063": "Expression", 342 | "3064": "ConvertShape", 343 | "3065": "Horizontal", 344 | "3066": "Vertical", 345 | "3070": "WithLayeredComp", 346 | "3071": "UserInterfaceColors", 347 | "3072": "SelectPreviousKeyframes", 348 | "3073": "SelectFollowingKeyframes", 349 | "3075": "SaveAnimationPreset", 350 | "3081": "GuideLayer", 351 | "3088": "IncrementandSave", 352 | "3122": "AutoSave", 353 | "3124": "MemoryMultiprocessing", 354 | "3125": "AudioHardware", 355 | "3126": "AudioOutputMapping", 356 | "3147": "AdobePhotoshopFile", 357 | "3148": "AdobePhotoshopFile", 358 | "3153": "RoveAcrossTime", 359 | "3154": "CloseProject", 360 | "3155": "Time", 361 | "3565": "NewWorkspace", 362 | "3566": "ResetWorkspace", 363 | "3689": "Browse", 364 | "3690": "RevealinBridge", 365 | "3691": "BrowsePresets", 366 | "3695": "FreezeFrame", 367 | "3696": "RevealCompInPW", 368 | "3697": "EditinAdobeAudition", 369 | "3698": "Blur", 370 | "3700": "NewViewer", 371 | "3703": "SimulateOutput", 372 | "3704": "UseDisplayColorManagement", 373 | "3705": "NoOutputSimulation", 374 | "3706": "Kodak5218toKodak2383", 375 | "3707": "AssignWorkspaceShortcut", 376 | "3708": "A", 377 | "3709": "B", 378 | "3710": "C", 379 | "3736": "ShapeLayer", 380 | "3737": "EnablePercharacter3D", 381 | "3739": "LayerStyles", 382 | "3745": "MaskandShapePath", 383 | "3754": "HDTVRec709", 384 | "3755": "SDTVNTSC", 385 | "3756": "SDTVPAL", 386 | "3757": "MacintoshRGB", 387 | "3758": "WindowsRGB", 388 | "3759": "MyCustomRGB", 389 | "3760": "Custom", 390 | "3764": "SeparateDimensions", 391 | "3766": "FlipHorizontal", 392 | "3767": "FlipVertical", 393 | "3781": "CreateOutlines", 394 | "3784": "OpenLayer", 395 | "3785": "SaveAsXML", 396 | "3791": "UpgradeProjectPARsToCS4", 397 | "3792": "OpenMiniFlowPopup", 398 | "3798": "Arrange", 399 | "3799": "ConvertToEditable", 400 | "3800": "AddToAMERenderQueue", 401 | "3814": "UCFtoKodak2383", 402 | "3819": "CenterInView", 403 | "3840": "SaveAs", 404 | "3841": "SaveAsCSPrevious", 405 | "3932": "CreateFootageOutlines", 406 | "3972": "EnvironLayer", 407 | "3973": "CreateFootageOutlines", 408 | "3983": "Track3DCameraMotion", 409 | "3984": "AddtoRenderQueue", 410 | "3986": "WarpStabilizer", 411 | "3987": "FeatherFalloff", 412 | "3988": "Smooth", 413 | "3989": "Linear", 414 | "3991": "FeatherHold", 415 | "3992": "FeatherEditTension", 416 | "3993": "FeatherEditExtent", 417 | "3999": "GoToKeyframeTime", 418 | "4008": "Cinema4DFile", 419 | "4011": "RevealPropertiesWithAnimation", 420 | "4015": "EnableAutoStopwatch", 421 | "4016": "Extensions", 422 | "4017": "AddFontsFromTypekit", 423 | "4018": "BrowseAddOns", 424 | "4021": "Brainstorm", 425 | "4022": "ImportCCLibraries", 426 | "4023": "EditWorkspace", 427 | "10200": "AllMemoryDiskCache", 428 | "10205": "AddToAMERenderQueue", 429 | "10207": "Bilinear", 430 | "10208": "Bicubic", 431 | "10305": "UserProfile", 432 | "10307": "UserProfile", 433 | "10310": "Copy", 434 | "10311": "TrackMask", 435 | "10312": "CenterAnchor", 436 | "10313": "Copy", 437 | "10314": "PlayPreview", 438 | "10410": "OpenAnimal", 439 | "10420": "LicenseFootage" 440 | } 441 | -------------------------------------------------------------------------------- /json/2015.json: -------------------------------------------------------------------------------- 1 | { 2 | "1": "Quit", 3 | "2": "NewProject", 4 | "3": "OpenProject", 5 | "4": "Close", 6 | "5": "Save", 7 | "6": "SaveAs", 8 | "7": "Revert", 9 | "8": "PageSetup", 10 | "9": "Print", 11 | "16": "Undo", 12 | "18": "Cut", 13 | "19": "Copy", 14 | "20": "Paste", 15 | "21": "Clear", 16 | "23": "SelectAll", 17 | "53": "CopyExpressionOnly", 18 | "256": "AboutAfterEffects", 19 | "2000": "NewComposition", 20 | "2003": "File", 21 | "2004": "DeselectAll", 22 | "2005": "AddFootagetoComp", 23 | "2007": "CompositionSettings", 24 | "2012": "SetPosterTime", 25 | "2016": "BringtoFront", 26 | "2017": "SendtoBack", 27 | "2018": "BringForward", 28 | "2019": "SendBackward", 29 | "2020": "Transform", 30 | "2021": "LayerSettings", 31 | "2024": "TimeStretch", 32 | "2025": "PICT", 33 | "2035": "Redo", 34 | "2037": "Resolution", 35 | "2038": "Solid", 36 | "2040": "Mask", 37 | "2041": "Quality", 38 | "2042": "Wireframe", 39 | "2044": "Draft", 40 | "2045": "Best", 41 | "2046": "Quarter", 42 | "2047": "Half", 43 | "2048": "Full", 44 | "2049": "Custom", 45 | "2051": "FreeTransformPoints", 46 | "2052": "Inverted", 47 | "2053": "Switches", 48 | "2054": "HideOtherVideo", 49 | "2055": "ShowAllVideo", 50 | "2056": "Audio", 51 | "2059": "Video", 52 | "2062": "Effect", 53 | "2065": "Position", 54 | "2066": "Scale", 55 | "2068": "MaskShape", 56 | "2069": "MaskFeather", 57 | "2070": "Opacity", 58 | "2071": "Precompose", 59 | "2072": "RemoveAll", 60 | "2076": "GotoTime", 61 | "2077": "Main", 62 | "2078": "File", 63 | "2079": "Preferences", 64 | "2080": "Duplicate", 65 | "2081": "Third", 66 | "2092": "ZoomIn", 67 | "2093": "ZoomOut", 68 | "2101": "1", 69 | "2102": "InterpretFootage", 70 | "2103": "Proxy", 71 | "2104": "File", 72 | "2105": "Import", 73 | "2106": "SetProxy", 74 | "2107": "ConsolidateAllFootage", 75 | "2109": "RemoveUnusedFootage", 76 | "2113": "Shy", 77 | "2114": "Lock", 78 | "2116": "MotionBlur", 79 | "2118": "File", 80 | "2119": "None", 81 | "2125": "SavePreview", 82 | "2131": "Preview", 83 | "2135": "TimeReverseLayer", 84 | "2139": "NewFolder", 85 | "2142": "EditOriginal", 86 | "2149": "RenderSettings", 87 | "2150": "OutputModule", 88 | "2153": "EnableTimeRemapping", 89 | "2154": "AddOutputModule", 90 | "2155": "Custom", 91 | "2156": "FittoComp", 92 | "2157": "AddMarker", 93 | "2158": "DuplicatePreserveFile", 94 | "2159": "KeyframeAssistant", 95 | "2160": "Collapse", 96 | "2161": "AddtoRenderQueue", 97 | "2162": "BlendingMode", 98 | "2163": "EffectControls", 99 | "2165": "AutoOrient", 100 | "2166": "SaveaCopy", 101 | "2167": "Normal", 102 | "2168": "Dissolve", 103 | "2169": "DancingDissolve", 104 | "2170": "Add", 105 | "2171": "Multiply", 106 | "2172": "Screen", 107 | "2173": "Overlay", 108 | "2174": "SoftLight", 109 | "2175": "HardLight", 110 | "2176": "ClassicColorDodge", 111 | "2177": "ClassicColorBurn", 112 | "2178": "Darken", 113 | "2179": "Lighten", 114 | "2180": "ClassicDifference", 115 | "2181": "Exclusion", 116 | "2182": "Hue", 117 | "2183": "Saturation", 118 | "2184": "Color", 119 | "2185": "Luminosity", 120 | "2186": "StencilAlpha", 121 | "2187": "StencilLuma", 122 | "2188": "SilhouetteAlpha", 123 | "2189": "SilhouetteLuma", 124 | "2190": "PreserveTransparency", 125 | "2191": "NoTrackMatte", 126 | "2192": "AlphaMatte", 127 | "2193": "AlphaInvertedMatte", 128 | "2194": "LumaMatte", 129 | "2195": "LumaInvertedMatte", 130 | "2197": "LuminescentPremul", 131 | "2198": "AlphaAdd", 132 | "2199": "Difference", 133 | "2200": "ColorDodge", 134 | "2201": "ColorBurn", 135 | "2202": "LinearDodge", 136 | "2203": "LinearBurn", 137 | "2204": "LinearLight", 138 | "2205": "VividLight", 139 | "2206": "PinLight", 140 | "2207": "HardMix", 141 | "2208": "LighterColor", 142 | "2209": "DarkerColor", 143 | "2210": "Subtract", 144 | "2211": "Divide", 145 | "2226": "ToggleHoldKeyframe", 146 | "2227": "KeyframeInterpolation", 147 | "2228": "KeyframeVelocity", 148 | "2233": "SaveFrameAs", 149 | "2236": "MultipleFiles", 150 | "2237": "ReplaceFootage", 151 | "2240": "EditValue", 152 | "2241": "KeyframeValue", 153 | "2244": "UnlockAllLayers", 154 | "2254": "RememberInterpretation", 155 | "2255": "ApplyInterpretation", 156 | "2257": "ReloadFootage", 157 | "2258": "CompFlowchartView", 158 | "2263": "AdjustmentLayer", 159 | "2264": "New", 160 | "2265": "Templates", 161 | "2269": "TrackMatte", 162 | "2274": "ShowGuides", 163 | "2275": "LockGuides", 164 | "2276": "ClearGuides", 165 | "2277": "ShowGrid", 166 | "2278": "SnaptoGrid", 167 | "2279": "AdjustmentLayer", 168 | "2280": "ShowRulers", 169 | "2283": "ImportRecentFootage", 170 | "2284": "OpenRecentProjects", 171 | "2286": "SnaptoGuides", 172 | "2289": "FrameBlending", 173 | "2290": "Off", 174 | "2291": "FrameMix", 175 | "2292": "PixelMotion", 176 | "2310": "RecentFootageList", 177 | "2330": "RecentProjectList", 178 | "2350": "None", 179 | "2358": "Label", 180 | "2359": "General", 181 | "2360": "TrimComptoWorkArea", 182 | "2361": "Display", 183 | "2362": "Import", 184 | "2363": "Output", 185 | "2364": "GridsGuides", 186 | "2365": "Labels", 187 | "2367": "NewMask", 188 | "2368": "RemoveMask", 189 | "2369": "RemoveAllMasks", 190 | "2370": "Purge", 191 | "2371": "Undo", 192 | "2372": "ImageCaches", 193 | "2373": "All", 194 | "2374": "Closed", 195 | "2387": "RevealPropertiesWithKeyframes", 196 | "2434": "Audio", 197 | "2435": "ShowLayerControls", 198 | "2436": "SelectLabelGroup", 199 | "2439": "DiskCaching", 200 | "2440": "Mode", 201 | "2441": "None", 202 | "2442": "Add", 203 | "2443": "Subtract", 204 | "2444": "Intersect", 205 | "2445": "Lighten", 206 | "2446": "Darken", 207 | "2447": "Difference", 208 | "2448": "ResetMask", 209 | "2450": "ApplyAnimationPreset", 210 | "2451": "RecentAnimationPresets", 211 | "2452": "LastEffect", 212 | "2453": "MaskOpacity", 213 | "2454": "Locked", 214 | "2455": "LockOtherMasks", 215 | "2456": "UnlockAllMasks", 216 | "2457": "WatchFolder", 217 | "2460": "RecentFavoritesList", 218 | "2481": "Snapshot", 219 | "2482": "CollectFiles", 220 | "2494": "Export", 221 | "2518": "AddKeyframe", 222 | "2519": "PreviousKeyframe", 223 | "2520": "NextKeyframe", 224 | "2521": "Reset", 225 | "2523": "OpenSourceWindow", 226 | "2524": "HideLockedMasks", 227 | "2536": "RevealinTimeline", 228 | "2537": "DeleteThisMarker", 229 | "2538": "DeleteAllMarkers", 230 | "2539": "UpdateMarkersFromSource", 231 | "2541": "3DLayer", 232 | "2552": "AdobeDynamicLink", 233 | "2553": "NewPremiereProSequence", 234 | "2554": "ImportPremiereProSequence", 235 | "2557": "Shutter180Phase0", 236 | "2558": "Shutter360Phase0", 237 | "2559": "Shutter90Phase0", 238 | "2560": "Shutter180Phase180", 239 | "2561": "Shutter720Phase360", 240 | "2563": "Light", 241 | "2564": "Camera", 242 | "2565": "LockMarkers", 243 | "2566": "Solo", 244 | "2567": "Settings", 245 | "2568": "TrackMotion", 246 | "2605": "Reset", 247 | "2606": "New", 248 | "2607": "Find", 249 | "2611": "ProjectSettings", 250 | "2613": "LiftWorkArea", 251 | "2614": "ExtractWorkArea", 252 | "2623": "Orientation", 253 | "2624": "Assign3DViewShortcut", 254 | "2625": "Switch3DView", 255 | "2626": "A", 256 | "2627": "B", 257 | "2628": "C", 258 | "2641": "EditValue", 259 | "2642": "Reset3DView", 260 | "2643": "TrackthisProperty", 261 | "2701": "SetKeyframe", 262 | "2702": "AddExpression", 263 | "2703": "SwitchtoLast3DView", 264 | "2704": "VideoPreview", 265 | "2705": "Previews", 266 | "2710": "ActiveCamera", 267 | "2711": "Front", 268 | "2712": "Left", 269 | "2713": "Top", 270 | "2714": "Back", 271 | "2715": "Right", 272 | "2716": "Bottom", 273 | "2717": "CustomView1", 274 | "2718": "CustomView2", 275 | "2719": "CustomView3", 276 | "2732": "FittoCompWidth", 277 | "2733": "FittoCompHeight", 278 | "2735": "ReduceProject", 279 | "2736": "MaskExpansion", 280 | "2738": "Workspace", 281 | "2739": "SaveWorkspace", 282 | "2767": "NullObject", 283 | "2768": "SetFirstVertex", 284 | "2769": "Custom", 285 | "2771": "RevealAllModifiedProperties", 286 | "2776": "ViewOptions", 287 | "2777": "CreateProxy", 288 | "2778": "Still", 289 | "2779": "Movie", 290 | "2780": "Prerender", 291 | "2781": "NextBlendingMode", 292 | "2782": "PreviousBlendingMode", 293 | "2792": "Rotation", 294 | "2797": "MotionBlur", 295 | "2798": "SameAsLayer", 296 | "2799": "On", 297 | "2800": "Off", 298 | "2824": "OneCompView", 299 | "2825": "TwoCompViews", 300 | "2826": "FourCompViews", 301 | "2834": "LookatSelectedLayers", 302 | "2835": "LookatAllLayers", 303 | "2836": "Text", 304 | "2933": "CreateOutlines", 305 | "2934": "SelectEqualKeyframes", 306 | "2995": "History", 307 | "2997": "CropComptoRegionofInterest", 308 | "3013": "ShowTextPanels", 309 | "3016": "Property", 310 | "3017": "Selector", 311 | "3018": "DeleteBrush", 312 | "3019": "AnchorPoint", 313 | "3020": "Position", 314 | "3021": "Scale", 315 | "3022": "Skew", 316 | "3023": "Rotation", 317 | "3024": "StrokeWidth", 318 | "3025": "Tracking", 319 | "3026": "LineAnchor", 320 | "3027": "CharacterOffset", 321 | "3028": "CharacterValue", 322 | "3029": "RGB", 323 | "3030": "Hue", 324 | "3031": "Saturation", 325 | "3032": "Brightness", 326 | "3033": "Opacity", 327 | "3034": "RGB", 328 | "3035": "Hue", 329 | "3036": "Saturation", 330 | "3037": "Brightness", 331 | "3038": "Opacity", 332 | "3039": "FillColor", 333 | "3040": "StrokeColor", 334 | "3041": "Wiggly", 335 | "3042": "Opacity", 336 | "3043": "LineSpacing", 337 | "3044": "Autotrace", 338 | "3052": "AllTransformProperties", 339 | "3053": "RotoBezier", 340 | "3058": "RemoveAllTextAnimators", 341 | "3063": "Expression", 342 | "3064": "ConvertShape", 343 | "3065": "Horizontal", 344 | "3066": "Vertical", 345 | "3070": "WithLayeredComp", 346 | "3071": "UserInterfaceColors", 347 | "3072": "SelectPreviousKeyframes", 348 | "3073": "SelectFollowingKeyframes", 349 | "3075": "SaveAnimationPreset", 350 | "3081": "GuideLayer", 351 | "3088": "IncrementandSave", 352 | "3122": "AutoSave", 353 | "3124": "MemoryMultiprocessing", 354 | "3125": "AudioHardware", 355 | "3126": "AudioOutputMapping", 356 | "3147": "AdobePhotoshopFile", 357 | "3148": "AdobePhotoshopFile", 358 | "3153": "RoveAcrossTime", 359 | "3154": "CloseProject", 360 | "3155": "Time", 361 | "3565": "NewWorkspace", 362 | "3566": "ResetWorkspace", 363 | "3689": "Browse", 364 | "3690": "RevealinBridge", 365 | "3691": "BrowsePresets", 366 | "3695": "FreezeFrame", 367 | "3696": "RevealCompInPW", 368 | "3697": "EditinAdobeAudition", 369 | "3698": "Blur", 370 | "3700": "NewViewer", 371 | "3703": "SimulateOutput", 372 | "3704": "UseDisplayColorManagement", 373 | "3705": "NoOutputSimulation", 374 | "3706": "Kodak5218toKodak2383", 375 | "3707": "AssignWorkspaceShortcut", 376 | "3708": "A", 377 | "3709": "B", 378 | "3710": "C", 379 | "3736": "ShapeLayer", 380 | "3737": "EnablePercharacter3D", 381 | "3739": "LayerStyles", 382 | "3745": "MaskandShapePath", 383 | "3754": "HDTVRec709", 384 | "3755": "SDTVNTSC", 385 | "3756": "SDTVPAL", 386 | "3757": "MacintoshRGB", 387 | "3758": "WindowsRGB", 388 | "3759": "MyCustomRGB", 389 | "3760": "Custom", 390 | "3764": "SeparateDimensions", 391 | "3766": "FlipHorizontal", 392 | "3767": "FlipVertical", 393 | "3781": "CreateOutlines", 394 | "3784": "OpenLayer", 395 | "3785": "SaveAsXML", 396 | "3791": "UpgradeProjectPARsToCS4", 397 | "3792": "OpenMiniFlowPopup", 398 | "3798": "Arrange", 399 | "3799": "ConvertToEditable", 400 | "3800": "AddToAMERenderQueue", 401 | "3814": "UCFtoKodak2383", 402 | "3819": "CenterInView", 403 | "3840": "SaveAs", 404 | "3841": "SaveAsCSPrevious", 405 | "3932": "CreateFootageOutlines", 406 | "3972": "EnvironLayer", 407 | "3973": "CreateFootageOutlines", 408 | "3983": "Track3DCameraMotion", 409 | "3984": "AddtoRenderQueue", 410 | "3986": "WarpStabilizer", 411 | "3987": "FeatherFalloff", 412 | "3988": "Smooth", 413 | "3989": "Linear", 414 | "3991": "FeatherHold", 415 | "3992": "FeatherEditTension", 416 | "3993": "FeatherEditExtent", 417 | "3999": "GoToKeyframeTime", 418 | "4008": "Cinema4DFile", 419 | "4011": "RevealPropertiesWithAnimation", 420 | "4015": "EnableAutoStopwatch", 421 | "4016": "Extensions", 422 | "4017": "AddFontsFromTypekit", 423 | "4018": "BrowseAddOns", 424 | "4021": "Brainstorm", 425 | "4022": "ImportCCLibraries", 426 | "4023": "EditWorkspace", 427 | "10200": "AllMemoryDiskCache", 428 | "10205": "AddToAMERenderQueue", 429 | "10207": "Bilinear", 430 | "10208": "Bicubic", 431 | "10305": "UserProfile", 432 | "10307": "UserProfile", 433 | "10310": "Copy", 434 | "10311": "TrackMask", 435 | "10312": "CenterAnchor", 436 | "10313": "Copy", 437 | "10314": "PlayPreview", 438 | "10410": "OpenAnimal" 439 | } 440 | -------------------------------------------------------------------------------- /json/2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "1": "Quit", 3 | "2": "NewProject", 4 | "3": "OpenProject", 5 | "4": "Close", 6 | "5": "Save", 7 | "6": "SaveAs", 8 | "7": "Revert", 9 | "8": "PageSetup", 10 | "9": "Print", 11 | "16": "Undo", 12 | "18": "Cut", 13 | "19": "Copy", 14 | "20": "Paste", 15 | "21": "Clear", 16 | "23": "SelectAll", 17 | "53": "CopyExpressionOnly", 18 | "256": "AboutAfterEffects", 19 | "2000": "NewComposition", 20 | "2003": "File", 21 | "2004": "DeselectAll", 22 | "2005": "AddFootagetoComp", 23 | "2007": "CompositionSettings", 24 | "2012": "SetPosterTime", 25 | "2016": "BringtoFront", 26 | "2017": "SendtoBack", 27 | "2018": "BringForward", 28 | "2019": "SendBackward", 29 | "2020": "Transform", 30 | "2021": "LayerSettings", 31 | "2024": "TimeStretch", 32 | "2025": "PICT", 33 | "2035": "Redo", 34 | "2037": "Resolution", 35 | "2038": "Solid", 36 | "2040": "Mask", 37 | "2041": "Quality", 38 | "2042": "Wireframe", 39 | "2044": "Draft", 40 | "2045": "Best", 41 | "2046": "Quarter", 42 | "2047": "Half", 43 | "2048": "Full", 44 | "2049": "Custom", 45 | "2051": "FreeTransformPoints", 46 | "2052": "Inverted", 47 | "2053": "Switches", 48 | "2054": "HideOtherVideo", 49 | "2055": "ShowAllVideo", 50 | "2056": "Audio", 51 | "2059": "Video", 52 | "2062": "Effect", 53 | "2065": "Position", 54 | "2066": "Scale", 55 | "2068": "MaskShape", 56 | "2069": "MaskFeather", 57 | "2070": "Opacity", 58 | "2071": "Precompose", 59 | "2072": "RemoveAll", 60 | "2076": "GotoTime", 61 | "2077": "Main", 62 | "2078": "File", 63 | "2079": "Preferences", 64 | "2080": "Duplicate", 65 | "2081": "Third", 66 | "2092": "ZoomIn", 67 | "2093": "ZoomOut", 68 | "2101": "1", 69 | "2102": "InterpretFootage", 70 | "2103": "Proxy", 71 | "2104": "File", 72 | "2105": "Import", 73 | "2106": "SetProxy", 74 | "2107": "ConsolidateAllFootage", 75 | "2109": "RemoveUnusedFootage", 76 | "2113": "Shy", 77 | "2114": "Lock", 78 | "2116": "MotionBlur", 79 | "2118": "File", 80 | "2119": "None", 81 | "2125": "SavePreview", 82 | "2131": "Preview", 83 | "2135": "TimeReverseLayer", 84 | "2139": "NewFolder", 85 | "2142": "EditOriginal", 86 | "2149": "RenderSettings", 87 | "2150": "OutputModule", 88 | "2153": "EnableTimeRemapping", 89 | "2154": "AddOutputModule", 90 | "2155": "Custom", 91 | "2156": "FittoComp", 92 | "2157": "AddMarker", 93 | "2158": "DuplicatePreserveFile", 94 | "2159": "KeyframeAssistant", 95 | "2160": "Collapse", 96 | "2161": "AddtoRenderQueue", 97 | "2162": "BlendingMode", 98 | "2163": "EffectControls", 99 | "2165": "AutoOrient", 100 | "2166": "SaveaCopy", 101 | "2167": "Normal", 102 | "2168": "Dissolve", 103 | "2169": "DancingDissolve", 104 | "2170": "Add", 105 | "2171": "Multiply", 106 | "2172": "Screen", 107 | "2173": "Overlay", 108 | "2174": "SoftLight", 109 | "2175": "HardLight", 110 | "2176": "ClassicColorDodge", 111 | "2177": "ClassicColorBurn", 112 | "2178": "Darken", 113 | "2179": "Lighten", 114 | "2180": "ClassicDifference", 115 | "2181": "Exclusion", 116 | "2182": "Hue", 117 | "2183": "Saturation", 118 | "2184": "Color", 119 | "2185": "Luminosity", 120 | "2186": "StencilAlpha", 121 | "2187": "StencilLuma", 122 | "2188": "SilhouetteAlpha", 123 | "2189": "SilhouetteLuma", 124 | "2190": "PreserveTransparency", 125 | "2191": "NoTrackMatte", 126 | "2192": "AlphaMatte", 127 | "2193": "AlphaInvertedMatte", 128 | "2194": "LumaMatte", 129 | "2195": "LumaInvertedMatte", 130 | "2197": "LuminescentPremul", 131 | "2198": "AlphaAdd", 132 | "2199": "Difference", 133 | "2200": "ColorDodge", 134 | "2201": "ColorBurn", 135 | "2202": "LinearDodge", 136 | "2203": "LinearBurn", 137 | "2204": "LinearLight", 138 | "2205": "VividLight", 139 | "2206": "PinLight", 140 | "2207": "HardMix", 141 | "2208": "LighterColor", 142 | "2209": "DarkerColor", 143 | "2210": "Subtract", 144 | "2211": "Divide", 145 | "2226": "ToggleHoldKeyframe", 146 | "2227": "KeyframeInterpolation", 147 | "2228": "KeyframeVelocity", 148 | "2233": "SaveFrameAs", 149 | "2236": "MultipleFiles", 150 | "2237": "ReplaceFootage", 151 | "2240": "EditValue", 152 | "2241": "KeyframeValue", 153 | "2244": "UnlockAllLayers", 154 | "2254": "RememberInterpretation", 155 | "2255": "ApplyInterpretation", 156 | "2257": "ReloadFootage", 157 | "2258": "CompFlowchartView", 158 | "2263": "AdjustmentLayer", 159 | "2264": "New", 160 | "2265": "Templates", 161 | "2269": "TrackMatte", 162 | "2274": "ShowGuides", 163 | "2275": "LockGuides", 164 | "2276": "ClearGuides", 165 | "2277": "ShowGrid", 166 | "2278": "SnaptoGrid", 167 | "2279": "AdjustmentLayer", 168 | "2280": "ShowRulers", 169 | "2283": "ImportRecentFootage", 170 | "2284": "OpenRecentProjects", 171 | "2286": "SnaptoGuides", 172 | "2289": "FrameBlending", 173 | "2290": "Off", 174 | "2291": "FrameMix", 175 | "2292": "PixelMotion", 176 | "2310": "RecentFootageList", 177 | "2330": "RecentProjectList", 178 | "2350": "None", 179 | "2358": "Label", 180 | "2359": "General", 181 | "2360": "TrimComptoWorkArea", 182 | "2361": "Display", 183 | "2362": "Import", 184 | "2363": "Output", 185 | "2364": "GridsGuides", 186 | "2365": "Labels", 187 | "2367": "NewMask", 188 | "2368": "RemoveMask", 189 | "2369": "RemoveAllMasks", 190 | "2370": "Purge", 191 | "2371": "Undo", 192 | "2372": "ImageCaches", 193 | "2373": "All", 194 | "2374": "Closed", 195 | "2387": "RevealPropertiesWithKeyframes", 196 | "2434": "Audio", 197 | "2435": "ShowLayerControls", 198 | "2436": "SelectLabelGroup", 199 | "2439": "DiskCaching", 200 | "2440": "Mode", 201 | "2441": "None", 202 | "2442": "Add", 203 | "2443": "Subtract", 204 | "2444": "Intersect", 205 | "2445": "Lighten", 206 | "2446": "Darken", 207 | "2447": "Difference", 208 | "2448": "ResetMask", 209 | "2450": "ApplyAnimationPreset", 210 | "2451": "RecentAnimationPresets", 211 | "2452": "LastEffect", 212 | "2453": "MaskOpacity", 213 | "2454": "Locked", 214 | "2455": "LockOtherMasks", 215 | "2456": "UnlockAllMasks", 216 | "2457": "WatchFolder", 217 | "2460": "RecentFavoritesList", 218 | "2481": "Snapshot", 219 | "2482": "CollectFiles", 220 | "2494": "Export", 221 | "2518": "AddKeyframe", 222 | "2519": "PreviousKeyframe", 223 | "2520": "NextKeyframe", 224 | "2521": "Reset", 225 | "2523": "OpenSourceWindow", 226 | "2524": "HideLockedMasks", 227 | "2536": "RevealinTimeline", 228 | "2537": "DeleteThisMarker", 229 | "2538": "DeleteAllMarkers", 230 | "2539": "UpdateMarkersFromSource", 231 | "2541": "3DLayer", 232 | "2552": "AdobeDynamicLink", 233 | "2553": "NewPremiereProSequence", 234 | "2554": "ImportPremiereProSequence", 235 | "2557": "Shutter180Phase0", 236 | "2558": "Shutter360Phase0", 237 | "2559": "Shutter90Phase0", 238 | "2560": "Shutter180Phase180", 239 | "2561": "Shutter720Phase360", 240 | "2563": "Light", 241 | "2564": "Camera", 242 | "2565": "LockMarkers", 243 | "2566": "Solo", 244 | "2567": "Settings", 245 | "2568": "TrackMotion", 246 | "2605": "Reset", 247 | "2606": "New", 248 | "2607": "Find", 249 | "2611": "ProjectSettings", 250 | "2613": "LiftWorkArea", 251 | "2614": "ExtractWorkArea", 252 | "2623": "Orientation", 253 | "2624": "Assign3DViewShortcut", 254 | "2625": "Switch3DView", 255 | "2626": "A", 256 | "2627": "B", 257 | "2628": "C", 258 | "2641": "EditValue", 259 | "2642": "Reset3DView", 260 | "2643": "TrackthisProperty", 261 | "2701": "SetKeyframe", 262 | "2702": "AddExpression", 263 | "2703": "SwitchtoLast3DView", 264 | "2704": "VideoPreview", 265 | "2705": "Previews", 266 | "2710": "ActiveCamera", 267 | "2711": "Front", 268 | "2712": "Left", 269 | "2713": "Top", 270 | "2714": "Back", 271 | "2715": "Right", 272 | "2716": "Bottom", 273 | "2717": "CustomView1", 274 | "2718": "CustomView2", 275 | "2719": "CustomView3", 276 | "2732": "FittoCompWidth", 277 | "2733": "FittoCompHeight", 278 | "2735": "ReduceProject", 279 | "2736": "MaskExpansion", 280 | "2738": "Workspace", 281 | "2739": "SaveWorkspace", 282 | "2767": "NullObject", 283 | "2768": "SetFirstVertex", 284 | "2769": "Custom", 285 | "2771": "RevealAllModifiedProperties", 286 | "2776": "ViewOptions", 287 | "2777": "CreateProxy", 288 | "2778": "Still", 289 | "2779": "Movie", 290 | "2780": "Prerender", 291 | "2781": "NextBlendingMode", 292 | "2782": "PreviousBlendingMode", 293 | "2792": "Rotation", 294 | "2797": "MotionBlur", 295 | "2798": "SameAsLayer", 296 | "2799": "On", 297 | "2800": "Off", 298 | "2824": "OneCompView", 299 | "2825": "TwoCompViews", 300 | "2826": "FourCompViews", 301 | "2834": "LookatSelectedLayers", 302 | "2835": "LookatAllLayers", 303 | "2836": "Text", 304 | "2933": "CreateOutlines", 305 | "2934": "SelectEqualKeyframes", 306 | "2995": "History", 307 | "2997": "CropComptoRegionofInterest", 308 | "3013": "ShowTextPanels", 309 | "3016": "Property", 310 | "3017": "Selector", 311 | "3018": "DeleteBrush", 312 | "3019": "AnchorPoint", 313 | "3020": "Position", 314 | "3021": "Scale", 315 | "3022": "Skew", 316 | "3023": "Rotation", 317 | "3024": "StrokeWidth", 318 | "3025": "Tracking", 319 | "3026": "LineAnchor", 320 | "3027": "CharacterOffset", 321 | "3028": "CharacterValue", 322 | "3029": "RGB", 323 | "3030": "Hue", 324 | "3031": "Saturation", 325 | "3032": "Brightness", 326 | "3033": "Opacity", 327 | "3034": "RGB", 328 | "3035": "Hue", 329 | "3036": "Saturation", 330 | "3037": "Brightness", 331 | "3038": "Opacity", 332 | "3039": "FillColor", 333 | "3040": "StrokeColor", 334 | "3041": "Wiggly", 335 | "3042": "Opacity", 336 | "3043": "LineSpacing", 337 | "3044": "Autotrace", 338 | "3052": "AllTransformProperties", 339 | "3053": "RotoBezier", 340 | "3058": "RemoveAllTextAnimators", 341 | "3063": "Expression", 342 | "3064": "ConvertShape", 343 | "3065": "Horizontal", 344 | "3066": "Vertical", 345 | "3070": "WithLayeredComp", 346 | "3071": "UserInterfaceColors", 347 | "3072": "SelectPreviousKeyframes", 348 | "3073": "SelectFollowingKeyframes", 349 | "3075": "SaveAnimationPreset", 350 | "3081": "GuideLayer", 351 | "3088": "IncrementandSave", 352 | "3122": "AutoSave", 353 | "3124": "MemoryMultiprocessing", 354 | "3125": "AudioHardware", 355 | "3126": "AudioOutputMapping", 356 | "3129": "NewProject", 357 | "3130": "Type", 358 | "3147": "AdobePhotoshopFile", 359 | "3148": "AdobePhotoshopFile", 360 | "3153": "RoveAcrossTime", 361 | "3154": "CloseProject", 362 | "3155": "Time", 363 | "3565": "NewWorkspace", 364 | "3566": "ResetWorkspace", 365 | "3689": "Browse", 366 | "3690": "RevealinBridge", 367 | "3691": "BrowsePresets", 368 | "3695": "FreezeFrame", 369 | "3696": "RevealCompInPW", 370 | "3697": "EditinAdobeAudition", 371 | "3698": "Blur", 372 | "3700": "NewViewer", 373 | "3703": "SimulateOutput", 374 | "3704": "UseDisplayColorManagement", 375 | "3705": "NoOutputSimulation", 376 | "3706": "Kodak5218toKodak2383", 377 | "3707": "AssignWorkspaceShortcut", 378 | "3708": "A", 379 | "3709": "B", 380 | "3710": "C", 381 | "3736": "ShapeLayer", 382 | "3737": "EnablePercharacter3D", 383 | "3739": "LayerStyles", 384 | "3745": "MaskandShapePath", 385 | "3754": "HDTVRec709", 386 | "3755": "SDTVNTSC", 387 | "3756": "SDTVPAL", 388 | "3757": "MacintoshRGB", 389 | "3758": "WindowsRGB", 390 | "3759": "MyCustomRGB", 391 | "3760": "Custom", 392 | "3764": "SeparateDimensions", 393 | "3766": "FlipHorizontal", 394 | "3767": "FlipVertical", 395 | "3781": "CreateOutlines", 396 | "3784": "OpenLayer", 397 | "3785": "SaveAsXML", 398 | "3791": "UpgradeProjectPARsToCS4", 399 | "3792": "OpenMiniFlowPopup", 400 | "3798": "Arrange", 401 | "3799": "ConvertToEditable", 402 | "3800": "AddToAMERenderQueue", 403 | "3814": "UCFtoKodak2383", 404 | "3819": "CenterInView", 405 | "3840": "SaveAs", 406 | "3841": "SaveAsCSPrevious", 407 | "3932": "CreateFootageOutlines", 408 | "3972": "EnvironLayer", 409 | "3973": "CreateFootageOutlines", 410 | "3983": "Track3DCameraMotion", 411 | "3984": "AddtoRenderQueue", 412 | "3986": "WarpStabilizer", 413 | "3987": "FeatherFalloff", 414 | "3988": "Smooth", 415 | "3989": "Linear", 416 | "3991": "FeatherHold", 417 | "3992": "FeatherEditTension", 418 | "3993": "FeatherEditExtent", 419 | "3999": "GoToKeyframeTime", 420 | "4008": "Cinema4DFile", 421 | "4011": "RevealPropertiesWithAnimation", 422 | "4015": "EnableAutoStopwatch", 423 | "4016": "Extensions", 424 | "4017": "AddFontsFromTypekit", 425 | "4018": "BrowseAddOns", 426 | "4021": "Brainstorm", 427 | "4022": "ImportCCLibraries", 428 | "4023": "EditWorkspace", 429 | "4027": "FreezeOnLastFrame", 430 | "10200": "AllMemoryDiskCache", 431 | "10205": "AddToAMERenderQueue", 432 | "10207": "Bilinear", 433 | "10208": "Bicubic", 434 | "10305": "UserProfile", 435 | "10307": "UserProfile", 436 | "10310": "Copy", 437 | "10311": "TrackMask", 438 | "10312": "CenterAnchor", 439 | "10313": "Copy", 440 | "10314": "PlayPreview", 441 | "10410": "OpenAnimal", 442 | "10420": "LicenseFootage" 443 | } 444 | -------------------------------------------------------------------------------- /json/2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "1": "Quit", 3 | "2": "NewProject", 4 | "3": "OpenProject", 5 | "4": "Close", 6 | "5": "Save", 7 | "6": "SaveAs", 8 | "7": "Revert", 9 | "8": "PageSetup", 10 | "9": "Print", 11 | "16": "Undo", 12 | "18": "Cut", 13 | "19": "Copy", 14 | "20": "Paste", 15 | "21": "Clear", 16 | "23": "SelectAll", 17 | "53": "CopyExpressionOnly", 18 | "256": "AboutAfterEffects", 19 | "2000": "NewComposition", 20 | "2003": "File", 21 | "2004": "DeselectAll", 22 | "2005": "AddFootagetoComp", 23 | "2007": "CompositionSettings", 24 | "2008": "RenameLayer", 25 | "2012": "SetPosterTime", 26 | "2016": "BringtoFront", 27 | "2017": "SendtoBack", 28 | "2018": "BringForward", 29 | "2019": "SendBackward", 30 | "2020": "Transform", 31 | "2021": "LayerSettings", 32 | "2024": "TimeStretch", 33 | "2025": "PICT", 34 | "2035": "Redo", 35 | "2037": "Resolution", 36 | "2038": "Solid", 37 | "2040": "Mask", 38 | "2041": "Quality", 39 | "2042": "Wireframe", 40 | "2044": "Draft", 41 | "2045": "Best", 42 | "2046": "Quarter", 43 | "2047": "Half", 44 | "2048": "Full", 45 | "2049": "Custom", 46 | "2051": "FreeTransformPoints", 47 | "2052": "Inverted", 48 | "2053": "Switches", 49 | "2054": "HideOtherVideo", 50 | "2055": "ShowAllVideo", 51 | "2056": "Audio", 52 | "2059": "Video", 53 | "2062": "Effect", 54 | "2065": "Position", 55 | "2066": "Scale", 56 | "2068": "MaskShape", 57 | "2069": "MaskFeather", 58 | "2070": "Opacity", 59 | "2071": "Precompose", 60 | "2072": "RemoveAll", 61 | "2076": "GotoTime", 62 | "2077": "Main", 63 | "2078": "File", 64 | "2079": "Preferences", 65 | "2080": "Duplicate", 66 | "2081": "Third", 67 | "2092": "ZoomIn", 68 | "2093": "ZoomOut", 69 | "2101": "1", 70 | "2102": "InterpretFootage", 71 | "2103": "Proxy", 72 | "2104": "File", 73 | "2105": "Import", 74 | "2106": "SetProxy", 75 | "2107": "ConsolidateAllFootage", 76 | "2109": "RemoveUnusedFootage", 77 | "2113": "Shy", 78 | "2114": "Lock", 79 | "2116": "MotionBlur", 80 | "2118": "File", 81 | "2119": "None", 82 | "2125": "SavePreview", 83 | "2131": "Preview", 84 | "2135": "TimeReverseLayer", 85 | "2139": "NewFolder", 86 | "2142": "EditOriginal", 87 | "2149": "RenderSettings", 88 | "2150": "OutputModule", 89 | "2153": "EnableTimeRemapping", 90 | "2154": "AddOutputModule", 91 | "2155": "Custom", 92 | "2156": "FittoComp", 93 | "2157": "AddMarker", 94 | "2158": "DuplicatePreserveFile", 95 | "2159": "KeyframeAssistant", 96 | "2160": "Collapse", 97 | "2161": "AddtoRenderQueue", 98 | "2162": "BlendingMode", 99 | "2163": "EffectControls", 100 | "2165": "AutoOrient", 101 | "2166": "SaveaCopy", 102 | "2167": "Normal", 103 | "2168": "Dissolve", 104 | "2169": "DancingDissolve", 105 | "2170": "Add", 106 | "2171": "Multiply", 107 | "2172": "Screen", 108 | "2173": "Overlay", 109 | "2174": "SoftLight", 110 | "2175": "HardLight", 111 | "2176": "ClassicColorDodge", 112 | "2177": "ClassicColorBurn", 113 | "2178": "Darken", 114 | "2179": "Lighten", 115 | "2180": "ClassicDifference", 116 | "2181": "Exclusion", 117 | "2182": "Hue", 118 | "2183": "Saturation", 119 | "2184": "Color", 120 | "2185": "Luminosity", 121 | "2186": "StencilAlpha", 122 | "2187": "StencilLuma", 123 | "2188": "SilhouetteAlpha", 124 | "2189": "SilhouetteLuma", 125 | "2190": "PreserveTransparency", 126 | "2191": "NoTrackMatte", 127 | "2192": "AlphaMatte", 128 | "2193": "AlphaInvertedMatte", 129 | "2194": "LumaMatte", 130 | "2195": "LumaInvertedMatte", 131 | "2197": "LuminescentPremul", 132 | "2198": "AlphaAdd", 133 | "2199": "Difference", 134 | "2200": "ColorDodge", 135 | "2201": "ColorBurn", 136 | "2202": "LinearDodge", 137 | "2203": "LinearBurn", 138 | "2204": "LinearLight", 139 | "2205": "VividLight", 140 | "2206": "PinLight", 141 | "2207": "HardMix", 142 | "2208": "LighterColor", 143 | "2209": "DarkerColor", 144 | "2210": "Subtract", 145 | "2211": "Divide", 146 | "2226": "ToggleHoldKeyframe", 147 | "2227": "KeyframeInterpolation", 148 | "2228": "KeyframeVelocity", 149 | "2233": "SaveFrameAs", 150 | "2236": "MultipleFiles", 151 | "2237": "ReplaceFootage", 152 | "2240": "EditValue", 153 | "2241": "KeyframeValue", 154 | "2244": "UnlockAllLayers", 155 | "2254": "RememberInterpretation", 156 | "2255": "ApplyInterpretation", 157 | "2257": "ReloadFootage", 158 | "2258": "CompFlowchartView", 159 | "2263": "AdjustmentLayer", 160 | "2264": "New", 161 | "2265": "Templates", 162 | "2269": "TrackMatte", 163 | "2274": "ShowGuides", 164 | "2275": "LockGuides", 165 | "2276": "ClearGuides", 166 | "2277": "ShowGrid", 167 | "2278": "SnaptoGrid", 168 | "2279": "AdjustmentLayer", 169 | "2280": "ShowRulers", 170 | "2283": "ImportRecentFootage", 171 | "2284": "OpenRecentProjects", 172 | "2286": "SnaptoGuides", 173 | "2289": "FrameBlending", 174 | "2290": "Off", 175 | "2291": "FrameMix", 176 | "2292": "PixelMotion", 177 | "2310": "RecentFootageList", 178 | "2330": "RecentProjectList", 179 | "2350": "None", 180 | "2358": "Label", 181 | "2359": "General", 182 | "2360": "TrimComptoWorkArea", 183 | "2361": "Display", 184 | "2362": "Import", 185 | "2363": "Output", 186 | "2364": "GridsGuides", 187 | "2365": "Labels", 188 | "2367": "NewMask", 189 | "2368": "RemoveMask", 190 | "2369": "RemoveAllMasks", 191 | "2370": "Purge", 192 | "2371": "Undo", 193 | "2372": "ImageCaches", 194 | "2373": "All", 195 | "2374": "Closed", 196 | "2387": "RevealPropertiesWithKeyframes", 197 | "2434": "Audio", 198 | "2435": "ShowLayerControls", 199 | "2436": "SelectLabelGroup", 200 | "2439": "DiskCaching", 201 | "2440": "Mode", 202 | "2441": "None", 203 | "2442": "Add", 204 | "2443": "Subtract", 205 | "2444": "Intersect", 206 | "2445": "Lighten", 207 | "2446": "Darken", 208 | "2447": "Difference", 209 | "2448": "ResetMask", 210 | "2450": "ApplyAnimationPreset", 211 | "2451": "RecentAnimationPresets", 212 | "2452": "LastEffect", 213 | "2453": "MaskOpacity", 214 | "2454": "Locked", 215 | "2455": "LockOtherMasks", 216 | "2456": "UnlockAllMasks", 217 | "2457": "WatchFolder", 218 | "2460": "RecentFavoritesList", 219 | "2481": "Snapshot", 220 | "2482": "CollectFiles", 221 | "2494": "Export", 222 | "2517": "RevealLayerSourceinProject", 223 | "2518": "AddKeyframe", 224 | "2519": "PreviousKeyframe", 225 | "2520": "NextKeyframe", 226 | "2521": "Reset", 227 | "2522": "RevealLayerinProjectFlowchartView", 228 | "2523": "OpenLayerSourceWindow", 229 | "2524": "HideLockedMasks", 230 | "2536": "RevealinTimeline", 231 | "2537": "DeleteThisMarker", 232 | "2538": "DeleteAllMarkers", 233 | "2539": "UpdateMarkersFromSource", 234 | "2541": "3DLayer", 235 | "2552": "AdobeDynamicLink", 236 | "2553": "NewPremiereProSequence", 237 | "2554": "ImportPremiereProSequence", 238 | "2557": "Shutter180Phase0", 239 | "2558": "Shutter360Phase0", 240 | "2559": "Shutter90Phase0", 241 | "2560": "Shutter180Phase180", 242 | "2561": "Shutter720Phase360", 243 | "2563": "Light", 244 | "2564": "Camera", 245 | "2565": "LockMarkers", 246 | "2566": "Solo", 247 | "2567": "Settings", 248 | "2568": "Track2DMotion", 249 | "2605": "Reset", 250 | "2606": "New", 251 | "2607": "Find", 252 | "2611": "ProjectSettings", 253 | "2613": "LiftWorkArea", 254 | "2614": "ExtractWorkArea", 255 | "2623": "Orientation", 256 | "2624": "Assign3DViewShortcut", 257 | "2625": "Switch3DView", 258 | "2626": "A", 259 | "2627": "B", 260 | "2628": "C", 261 | "2641": "EditValue", 262 | "2642": "Reset3DView", 263 | "2643": "TrackthisProperty", 264 | "2701": "SetKeyframe", 265 | "2702": "AddExpression", 266 | "2703": "SwitchtoLast3DView", 267 | "2704": "VideoPreview", 268 | "2705": "Previews", 269 | "2710": "ActiveCamera", 270 | "2711": "Front", 271 | "2712": "Left", 272 | "2713": "Top", 273 | "2714": "Back", 274 | "2715": "Right", 275 | "2716": "Bottom", 276 | "2717": "CustomView1", 277 | "2718": "CustomView2", 278 | "2719": "CustomView3", 279 | "2731": "RevealExpressionErrors", 280 | "2732": "FittoCompWidth", 281 | "2733": "FittoCompHeight", 282 | "2735": "ReduceProject", 283 | "2736": "MaskExpansion", 284 | "2738": "Workspace", 285 | "2739": "SaveWorkspace", 286 | "2767": "NullObject", 287 | "2768": "SetFirstVertex", 288 | "2769": "Custom", 289 | "2771": "RevealAllModifiedProperties", 290 | "2776": "ViewOptions", 291 | "2777": "CreateProxy", 292 | "2778": "Still", 293 | "2779": "Movie", 294 | "2780": "Prerender", 295 | "2781": "NextBlendingMode", 296 | "2782": "PreviousBlendingMode", 297 | "2792": "Rotation", 298 | "2797": "MotionBlur", 299 | "2798": "SameAsLayer", 300 | "2799": "On", 301 | "2800": "Off", 302 | "2824": "OneCompView", 303 | "2825": "TwoCompViews", 304 | "2826": "FourCompViews", 305 | "2834": "LookatSelectedLayers", 306 | "2835": "LookatAllLayers", 307 | "2836": "Text", 308 | "2933": "CreateOutlineMasks", 309 | "2934": "SelectEqualKeyframes", 310 | "2995": "History", 311 | "2997": "CropComptoRegionofInterest", 312 | "3013": "ShowTextPanels", 313 | "3016": "Property", 314 | "3017": "Selector", 315 | "3018": "DeleteBrush", 316 | "3019": "AnchorPoint", 317 | "3020": "Position", 318 | "3021": "Scale", 319 | "3022": "Skew", 320 | "3023": "Rotation", 321 | "3024": "StrokeWidth", 322 | "3025": "Tracking", 323 | "3026": "LineAnchor", 324 | "3027": "CharacterOffset", 325 | "3028": "CharacterValue", 326 | "3029": "RGB", 327 | "3030": "Hue", 328 | "3031": "Saturation", 329 | "3032": "Brightness", 330 | "3033": "Opacity", 331 | "3034": "RGB", 332 | "3035": "Hue", 333 | "3036": "Saturation", 334 | "3037": "Brightness", 335 | "3038": "Opacity", 336 | "3039": "FillColor", 337 | "3040": "StrokeColor", 338 | "3041": "Wiggly", 339 | "3042": "Opacity", 340 | "3043": "LineSpacing", 341 | "3044": "Autotrace", 342 | "3052": "AllTransformProperties", 343 | "3053": "RotoBezier", 344 | "3058": "RemoveAllTextAnimators", 345 | "3063": "Expression", 346 | "3064": "ConvertShape", 347 | "3065": "Horizontal", 348 | "3066": "Vertical", 349 | "3070": "WithLayeredComp", 350 | "3071": "UserInterfaceColors", 351 | "3072": "SelectPreviousKeyframes", 352 | "3073": "SelectFollowingKeyframes", 353 | "3075": "SaveAnimationPreset", 354 | "3081": "GuideLayer", 355 | "3088": "IncrementandSave", 356 | "3122": "AutoSave", 357 | "3124": "MemoryMultiprocessing", 358 | "3125": "AudioHardware", 359 | "3126": "AudioOutputMapping", 360 | "3129": "NewProject", 361 | "3130": "Type", 362 | "3147": "AdobePhotoshopFile", 363 | "3148": "AdobePhotoshopFile", 364 | "3153": "RoveAcrossTime", 365 | "3154": "CloseProject", 366 | "3155": "Time", 367 | "3565": "NewWorkspace", 368 | "3566": "ResetWorkspace", 369 | "3689": "Browse", 370 | "3690": "RevealinBridge", 371 | "3691": "BrowsePresets", 372 | "3695": "FreezeFrame", 373 | "3696": "RevealCompInPW", 374 | "3697": "EditinAdobeAudition", 375 | "3698": "Blur", 376 | "3700": "NewViewer", 377 | "3703": "SimulateOutput", 378 | "3704": "UseDisplayColorManagement", 379 | "3705": "NoOutputSimulation", 380 | "3706": "Kodak5218toKodak2383", 381 | "3707": "AssignWorkspaceShortcut", 382 | "3708": "A", 383 | "3709": "B", 384 | "3710": "C", 385 | "3734": "OpenEffectControls", 386 | "3736": "ShapeLayer", 387 | "3737": "EnablePercharacter3D", 388 | "3739": "LayerStyles", 389 | "3745": "MaskandShapePath", 390 | "3754": "HDTVRec709", 391 | "3755": "SDTVNTSC", 392 | "3756": "SDTVPAL", 393 | "3757": "MacintoshRGB", 394 | "3758": "WindowsRGB", 395 | "3759": "MyCustomRGB", 396 | "3760": "Custom", 397 | "3764": "SeparateDimensions", 398 | "3766": "FlipHorizontal", 399 | "3767": "FlipVertical", 400 | "3781": "CreateOutlineShape", 401 | "3784": "OpenLayerWindow", 402 | "3785": "SaveAsXML", 403 | "3791": "UpgradeProjectPARsToCS4", 404 | "3792": "OpenMiniFlowPopup", 405 | "3798": "Arrange", 406 | "3799": "ConvertToEditable", 407 | "3800": "AddToAMERenderQueue", 408 | "3814": "UCFtoKodak2383", 409 | "3819": "CenterInView", 410 | "3840": "SaveAs", 411 | "3841": "SaveAsCSPrevious1", 412 | "3842": "Camera", 413 | "3972": "EnvironLayer", 414 | "3973": "CreateFootageOutlines", 415 | "3983": "Track3DCameraMotion", 416 | "3984": "AddtoRenderQueue", 417 | "3986": "WarpStabilizer", 418 | "3987": "FeatherFalloff", 419 | "3988": "Smooth", 420 | "3989": "Linear", 421 | "3991": "FeatherHold", 422 | "3992": "FeatherEditTension", 423 | "3993": "FeatherEditExtent", 424 | "3999": "GoToKeyframeTime", 425 | "4008": "Cinema4DFile", 426 | "4011": "RevealPropertiesWithAnimation", 427 | "4015": "EnableAutoStopwatch", 428 | "4016": "Extensions", 429 | "4017": "AddFontsFromTypekit", 430 | "4018": "FindExtensions", 431 | "4021": "Brainstorm", 432 | "4022": "ImportCCLibraries", 433 | "4023": "EditWorkspace", 434 | "4027": "FreezeOnLastFrame", 435 | "4035": "SaveAsCC13", 436 | "4036": "CreateDataFootageLayerKeyframes", 437 | "4042": "AddPropToCapsules", 438 | "4043": "Reveal", 439 | "4044": "Create", 440 | "4045": "TrackAndStabilize", 441 | "4046": "Open", 442 | "10200": "AllMemoryDiskCache", 443 | "10205": "AddToAMERenderQueue", 444 | "10207": "Bilinear", 445 | "10208": "Bicubic", 446 | "10305": "UserProfile", 447 | "10307": "UserProfile", 448 | "10310": "Copy", 449 | "10311": "TrackMask", 450 | "10312": "CenterAnchor", 451 | "10313": "Copy", 452 | "10314": "PlayPreview", 453 | "10420": "LicenseFootage", 454 | "10426": "KSV" 455 | } 456 | -------------------------------------------------------------------------------- /json/2019.json: -------------------------------------------------------------------------------- 1 | { 2 | "1": "Quit", 3 | "2": "NewProject", 4 | "3": "OpenProject", 5 | "4": "Close", 6 | "5": "Save", 7 | "6": "SaveAs", 8 | "7": "Revert", 9 | "8": "PageSetup", 10 | "9": "Print", 11 | "16": "Undo", 12 | "18": "Cut", 13 | "19": "Copy", 14 | "20": "Paste", 15 | "21": "Clear", 16 | "23": "SelectAll", 17 | "53": "CopyExpressionOnly", 18 | "256": "AboutAfterEffects", 19 | "2000": "NewComposition", 20 | "2003": "File", 21 | "2004": "DeselectAll", 22 | "2005": "AddFootagetoComp", 23 | "2007": "CompositionSettings", 24 | "2008": "RenameLayer", 25 | "2012": "SetPosterTime", 26 | "2016": "BringtoFront", 27 | "2017": "SendtoBack", 28 | "2018": "BringForward", 29 | "2019": "SendBackward", 30 | "2020": "Transform", 31 | "2021": "LayerSettings", 32 | "2024": "TimeStretch", 33 | "2025": "PICT", 34 | "2035": "Redo", 35 | "2037": "Resolution", 36 | "2038": "Solid", 37 | "2040": "Mask", 38 | "2041": "Quality", 39 | "2042": "Wireframe", 40 | "2044": "Draft", 41 | "2045": "Best", 42 | "2046": "Quarter", 43 | "2047": "Half", 44 | "2048": "Full", 45 | "2049": "Custom", 46 | "2051": "FreeTransformPoints", 47 | "2052": "Inverted", 48 | "2053": "Switches", 49 | "2054": "HideOtherVideo", 50 | "2055": "ShowAllVideo", 51 | "2056": "Audio", 52 | "2059": "Video", 53 | "2062": "Effect", 54 | "2065": "Position", 55 | "2066": "Scale", 56 | "2068": "MaskShape", 57 | "2069": "MaskFeather", 58 | "2070": "Opacity", 59 | "2071": "Precompose", 60 | "2072": "RemoveAll", 61 | "2076": "GotoTime", 62 | "2077": "Main", 63 | "2078": "File", 64 | "2079": "Preferences", 65 | "2080": "Duplicate", 66 | "2081": "Third", 67 | "2092": "ZoomIn", 68 | "2093": "ZoomOut", 69 | "2101": "1", 70 | "2102": "InterpretFootage", 71 | "2103": "Proxy", 72 | "2104": "File", 73 | "2105": "Import", 74 | "2106": "SetProxy", 75 | "2107": "ConsolidateAllFootage", 76 | "2109": "RemoveUnusedFootage", 77 | "2113": "Shy", 78 | "2114": "Lock", 79 | "2116": "MotionBlur", 80 | "2118": "File", 81 | "2119": "None", 82 | "2125": "SavePreview", 83 | "2131": "Preview", 84 | "2135": "TimeReverseLayer", 85 | "2139": "NewFolder", 86 | "2142": "EditOriginal", 87 | "2149": "RenderSettings", 88 | "2150": "OutputModule", 89 | "2153": "EnableTimeRemapping", 90 | "2154": "AddOutputModule", 91 | "2155": "Custom", 92 | "2156": "FittoComp", 93 | "2157": "AddMarker", 94 | "2158": "DuplicatePreserveFile", 95 | "2159": "KeyframeAssistant", 96 | "2160": "Collapse", 97 | "2161": "AddtoRenderQueue", 98 | "2162": "BlendingMode", 99 | "2163": "EffectControls", 100 | "2165": "AutoOrient", 101 | "2166": "SaveaCopy", 102 | "2167": "Normal", 103 | "2168": "Dissolve", 104 | "2169": "DancingDissolve", 105 | "2170": "Add", 106 | "2171": "Multiply", 107 | "2172": "Screen", 108 | "2173": "Overlay", 109 | "2174": "SoftLight", 110 | "2175": "HardLight", 111 | "2176": "ClassicColorDodge", 112 | "2177": "ClassicColorBurn", 113 | "2178": "Darken", 114 | "2179": "Lighten", 115 | "2180": "ClassicDifference", 116 | "2181": "Exclusion", 117 | "2182": "Hue", 118 | "2183": "Saturation", 119 | "2184": "Color", 120 | "2185": "Luminosity", 121 | "2186": "StencilAlpha", 122 | "2187": "StencilLuma", 123 | "2188": "SilhouetteAlpha", 124 | "2189": "SilhouetteLuma", 125 | "2190": "PreserveTransparency", 126 | "2191": "NoTrackMatte", 127 | "2192": "AlphaMatte", 128 | "2193": "AlphaInvertedMatte", 129 | "2194": "LumaMatte", 130 | "2195": "LumaInvertedMatte", 131 | "2197": "LuminescentPremul", 132 | "2198": "AlphaAdd", 133 | "2199": "Difference", 134 | "2200": "ColorDodge", 135 | "2201": "ColorBurn", 136 | "2202": "LinearDodge", 137 | "2203": "LinearBurn", 138 | "2204": "LinearLight", 139 | "2205": "VividLight", 140 | "2206": "PinLight", 141 | "2207": "HardMix", 142 | "2208": "LighterColor", 143 | "2209": "DarkerColor", 144 | "2210": "Subtract", 145 | "2211": "Divide", 146 | "2226": "ToggleHoldKeyframe", 147 | "2227": "KeyframeInterpolation", 148 | "2228": "KeyframeVelocity", 149 | "2233": "SaveFrameAs", 150 | "2236": "MultipleFiles", 151 | "2237": "ReplaceFootage", 152 | "2240": "EditValue", 153 | "2241": "KeyframeValue", 154 | "2244": "UnlockAllLayers", 155 | "2254": "RememberInterpretation", 156 | "2255": "ApplyInterpretation", 157 | "2257": "ReloadFootage", 158 | "2258": "CompFlowchartView", 159 | "2263": "AdjustmentLayer", 160 | "2264": "New", 161 | "2265": "Templates", 162 | "2269": "TrackMatte", 163 | "2274": "ShowGuides", 164 | "2275": "LockGuides", 165 | "2276": "ClearGuides", 166 | "2277": "ShowGrid", 167 | "2278": "SnaptoGrid", 168 | "2279": "AdjustmentLayer", 169 | "2280": "ShowRulers", 170 | "2283": "ImportRecentFootage", 171 | "2284": "OpenRecentProjects", 172 | "2286": "SnaptoGuides", 173 | "2289": "FrameBlending", 174 | "2290": "Off", 175 | "2291": "FrameMix", 176 | "2292": "PixelMotion", 177 | "2310": "RecentFootageList", 178 | "2330": "RecentProjectList", 179 | "2350": "None", 180 | "2358": "Label", 181 | "2359": "General", 182 | "2360": "TrimComptoWorkArea", 183 | "2361": "Display", 184 | "2362": "Import", 185 | "2363": "Output", 186 | "2364": "GridsGuides", 187 | "2365": "Labels", 188 | "2367": "NewMask", 189 | "2368": "RemoveMask", 190 | "2369": "RemoveAllMasks", 191 | "2370": "Purge", 192 | "2371": "Undo", 193 | "2372": "ImageCaches", 194 | "2373": "All", 195 | "2374": "Closed", 196 | "2387": "RevealPropertiesWithKeyframes", 197 | "2434": "Audio", 198 | "2435": "ShowLayerControls", 199 | "2436": "SelectLabelGroup", 200 | "2439": "DiskCaching", 201 | "2440": "Mode", 202 | "2441": "None", 203 | "2442": "Add", 204 | "2443": "Subtract", 205 | "2444": "Intersect", 206 | "2445": "Lighten", 207 | "2446": "Darken", 208 | "2447": "Difference", 209 | "2448": "ResetMask", 210 | "2450": "ApplyAnimationPreset", 211 | "2451": "RecentAnimationPresets", 212 | "2452": "LastEffect", 213 | "2453": "MaskOpacity", 214 | "2454": "Locked", 215 | "2455": "LockOtherMasks", 216 | "2456": "UnlockAllMasks", 217 | "2457": "WatchFolder", 218 | "2460": "RecentFavoritesList", 219 | "2481": "Snapshot", 220 | "2482": "CollectFiles", 221 | "2494": "Export", 222 | "2517": "RevealLayerSourceinProject", 223 | "2518": "AddKeyframe", 224 | "2519": "PreviousKeyframe", 225 | "2520": "NextKeyframe", 226 | "2521": "Reset", 227 | "2522": "RevealLayerinProjectFlowchartView", 228 | "2523": "OpenLayerSourceWindow", 229 | "2524": "HideLockedMasks", 230 | "2536": "RevealinTimeline", 231 | "2537": "DeleteThisMarker", 232 | "2538": "DeleteAllMarkers", 233 | "2539": "UpdateMarkersFromSource", 234 | "2541": "3DLayer", 235 | "2552": "AdobeDynamicLink", 236 | "2553": "NewPremiereProSequence", 237 | "2554": "ImportPremiereProSequence", 238 | "2557": "Shutter180Phase0", 239 | "2558": "Shutter360Phase0", 240 | "2559": "Shutter90Phase0", 241 | "2560": "Shutter180Phase180", 242 | "2561": "Shutter720Phase360", 243 | "2563": "Light", 244 | "2564": "Camera", 245 | "2565": "LockMarkers", 246 | "2566": "Solo", 247 | "2567": "Settings", 248 | "2568": "Track2DMotion", 249 | "2605": "Reset", 250 | "2606": "New", 251 | "2607": "Find", 252 | "2611": "ProjectSettings", 253 | "2613": "LiftWorkArea", 254 | "2614": "ExtractWorkArea", 255 | "2623": "Orientation", 256 | "2624": "Assign3DViewShortcut", 257 | "2625": "Switch3DView", 258 | "2626": "A", 259 | "2627": "B", 260 | "2628": "C", 261 | "2641": "EditValue", 262 | "2642": "Reset3DView", 263 | "2643": "TrackthisProperty", 264 | "2701": "SetKeyframe", 265 | "2702": "AddExpression", 266 | "2703": "SwitchtoLast3DView", 267 | "2704": "VideoPreview", 268 | "2705": "Previews", 269 | "2710": "ActiveCamera", 270 | "2711": "Front", 271 | "2712": "Left", 272 | "2713": "Top", 273 | "2714": "Back", 274 | "2715": "Right", 275 | "2716": "Bottom", 276 | "2717": "CustomView1", 277 | "2718": "CustomView2", 278 | "2719": "CustomView3", 279 | "2731": "RevealExpressionErrors", 280 | "2732": "FittoCompWidth", 281 | "2733": "FittoCompHeight", 282 | "2735": "ReduceProject", 283 | "2736": "MaskExpansion", 284 | "2738": "Workspace", 285 | "2739": "SaveWorkspace", 286 | "2767": "NullObject", 287 | "2768": "SetFirstVertex", 288 | "2769": "Custom", 289 | "2771": "RevealAllModifiedProperties", 290 | "2776": "ViewOptions", 291 | "2777": "CreateProxy", 292 | "2778": "Still", 293 | "2779": "Movie", 294 | "2780": "Prerender", 295 | "2781": "NextBlendingMode", 296 | "2782": "PreviousBlendingMode", 297 | "2792": "Rotation", 298 | "2797": "MotionBlur", 299 | "2798": "SameAsLayer", 300 | "2799": "On", 301 | "2800": "Off", 302 | "2824": "OneCompView", 303 | "2825": "TwoCompViews", 304 | "2826": "FourCompViews", 305 | "2834": "LookatSelectedLayers", 306 | "2835": "LookatAllLayers", 307 | "2836": "Text", 308 | "2933": "CreateOutlineMasks", 309 | "2934": "SelectEqualKeyframes", 310 | "2995": "History", 311 | "2997": "CropComptoRegionofInterest", 312 | "3013": "ShowTextPanels", 313 | "3016": "Property", 314 | "3017": "Selector", 315 | "3018": "DeleteBrush", 316 | "3019": "AnchorPoint", 317 | "3020": "Position", 318 | "3021": "Scale", 319 | "3022": "Skew", 320 | "3023": "Rotation", 321 | "3024": "StrokeWidth", 322 | "3025": "Tracking", 323 | "3026": "LineAnchor", 324 | "3027": "CharacterOffset", 325 | "3028": "CharacterValue", 326 | "3029": "RGB", 327 | "3030": "Hue", 328 | "3031": "Saturation", 329 | "3032": "Brightness", 330 | "3033": "Opacity", 331 | "3034": "RGB", 332 | "3035": "Hue", 333 | "3036": "Saturation", 334 | "3037": "Brightness", 335 | "3038": "Opacity", 336 | "3039": "FillColor", 337 | "3040": "StrokeColor", 338 | "3041": "Wiggly", 339 | "3042": "Opacity", 340 | "3043": "LineSpacing", 341 | "3044": "Autotrace", 342 | "3052": "AllTransformProperties", 343 | "3053": "RotoBezier", 344 | "3058": "RemoveAllTextAnimators", 345 | "3063": "Expression", 346 | "3064": "ConvertShape", 347 | "3065": "Horizontal", 348 | "3066": "Vertical", 349 | "3070": "WithLayeredComp", 350 | "3071": "UserInterfaceColors", 351 | "3072": "SelectPreviousKeyframes", 352 | "3073": "SelectFollowingKeyframes", 353 | "3075": "SaveAnimationPreset", 354 | "3081": "GuideLayer", 355 | "3088": "IncrementandSave", 356 | "3122": "AutoSave", 357 | "3124": "MemoryMultiprocessing", 358 | "3125": "AudioHardware", 359 | "3126": "AudioOutputMapping", 360 | "3129": "NewProject", 361 | "3130": "Type", 362 | "3131": "ScriptsExpressions", 363 | "3147": "AdobePhotoshopFile", 364 | "3148": "AdobePhotoshopFile", 365 | "3153": "RoveAcrossTime", 366 | "3154": "CloseProject", 367 | "3155": "Time", 368 | "3565": "NewWorkspace", 369 | "3566": "ResetWorkspace", 370 | "3689": "Browse", 371 | "3690": "RevealinBridge", 372 | "3691": "BrowsePresets", 373 | "3695": "FreezeFrame", 374 | "3696": "RevealCompInPW", 375 | "3697": "EditinAdobeAudition", 376 | "3698": "Blur", 377 | "3700": "NewViewer", 378 | "3703": "SimulateOutput", 379 | "3704": "UseDisplayColorManagement", 380 | "3705": "NoOutputSimulation", 381 | "3706": "Kodak5218toKodak2383", 382 | "3707": "AssignWorkspaceShortcut", 383 | "3708": "A", 384 | "3709": "B", 385 | "3710": "C", 386 | "3734": "OpenEffectControls", 387 | "3736": "ShapeLayer", 388 | "3737": "EnablePercharacter3D", 389 | "3739": "LayerStyles", 390 | "3745": "MaskandShapePath", 391 | "3754": "HDTVRec709", 392 | "3755": "SDTVNTSC", 393 | "3756": "SDTVPAL", 394 | "3757": "MacintoshRGB", 395 | "3758": "WindowsRGB", 396 | "3759": "MyCustomRGB", 397 | "3760": "Custom", 398 | "3764": "SeparateDimensions", 399 | "3766": "FlipHorizontal", 400 | "3767": "FlipVertical", 401 | "3781": "CreateOutlineShape", 402 | "3784": "OpenLayerWindow", 403 | "3785": "SaveAsXML", 404 | "3791": "UpgradeProjectPARsToCS4", 405 | "3792": "OpenMiniFlowPopup", 406 | "3798": "Arrange", 407 | "3799": "ConvertToEditable", 408 | "3800": "AddToAMERenderQueue", 409 | "3814": "UCFtoKodak2383", 410 | "3819": "CenterInView", 411 | "3840": "SaveAs", 412 | "3841": "SaveAsCSPrevious1", 413 | "3842": "Camera", 414 | "3972": "EnvironLayer", 415 | "3973": "CreateFootageOutlines", 416 | "3983": "Track3DCameraMotion", 417 | "3984": "AddtoRenderQueue", 418 | "3986": "WarpStabilizer", 419 | "3987": "FeatherFalloff", 420 | "3988": "Smooth", 421 | "3989": "Linear", 422 | "3991": "FeatherHold", 423 | "3992": "FeatherEditTension", 424 | "3993": "FeatherEditExtent", 425 | "3999": "GoToKeyframeTime", 426 | "4008": "Cinema4DFile", 427 | "4011": "RevealPropertiesWithAnimation", 428 | "4015": "EnableAutoStopwatch", 429 | "4016": "Extensions", 430 | "4017": "AddFontsFromAdobe", 431 | "4018": "FindExtensions", 432 | "4021": "Brainstorm", 433 | "4022": "ImportCCLibraries", 434 | "4023": "EditWorkspace", 435 | "4027": "FreezeOnLastFrame", 436 | "4036": "CreateDataFootageLayerKeyframes", 437 | "4042": "AddPropToCapsules", 438 | "4043": "Reveal", 439 | "4044": "Create", 440 | "4045": "TrackAndStabilize", 441 | "4046": "Open", 442 | "4048": "SaveAsCC14", 443 | "4049": "CAFillLayer", 444 | "4150": "TaffyTimeHeir", 445 | "4151": "CreateIntro", 446 | "4152": "CreateOutro", 447 | "4153": "CreateProtectedRegion", 448 | "4154": "EnableProtectedRegion", 449 | "4158": "ImportGuides", 450 | "4159": "ExportGuides", 451 | "10200": "AllMemoryDiskCache", 452 | "10205": "AddToAMERenderQueue", 453 | "10207": "Bilinear", 454 | "10208": "Bicubic", 455 | "10305": "UserProfile", 456 | "10307": "UserProfile", 457 | "10310": "Copy", 458 | "10311": "TrackMask", 459 | "10312": "CenterAnchor", 460 | "10313": "Copy", 461 | "10314": "PlayPreview", 462 | "10420": "LicenseFootage", 463 | "10426": "KSV", 464 | "10450": "EnableExpressions", 465 | "10451": "DisableExpressions", 466 | "10502": "GenerateLayerMarkersFromAudioBeats", 467 | "10503": "GenerateLayerMarkersFromAudioEvents", 468 | "10504": "SyncPropertyToAudioBeats" 469 | } 470 | -------------------------------------------------------------------------------- /json/2020.json: -------------------------------------------------------------------------------- 1 | { 2 | "1": "Quit", 3 | "2": "NewProject", 4 | "3": "OpenProject", 5 | "4": "Close", 6 | "5": "Save", 7 | "6": "SaveAs", 8 | "7": "Revert", 9 | "8": "PageSetup", 10 | "9": "Print", 11 | "16": "Undo", 12 | "18": "Cut", 13 | "19": "Copy", 14 | "20": "Paste", 15 | "21": "Clear", 16 | "23": "SelectAll", 17 | "53": "CopyExpressionOnly", 18 | "256": "AboutAfterEffects", 19 | "2000": "NewComposition", 20 | "2003": "File", 21 | "2004": "DeselectAll", 22 | "2005": "AddFootagetoComp", 23 | "2007": "CompositionSettings", 24 | "2008": "RenameLayer", 25 | "2012": "SetPosterTime", 26 | "2016": "MoveToTop", 27 | "2017": "MoveToBottom", 28 | "2018": "MoveUp", 29 | "2019": "MoveDown", 30 | "2020": "Transform", 31 | "2021": "LayerSettings", 32 | "2024": "TimeStretch", 33 | "2025": "PICT", 34 | "2035": "Redo", 35 | "2037": "Resolution", 36 | "2038": "Solid", 37 | "2040": "Mask", 38 | "2041": "Quality", 39 | "2042": "Wireframe", 40 | "2044": "Draft", 41 | "2045": "Best", 42 | "2046": "Quarter", 43 | "2047": "Half", 44 | "2048": "Full", 45 | "2049": "Custom", 46 | "2051": "FreeTransformPoints", 47 | "2052": "Inverted", 48 | "2053": "Switches", 49 | "2054": "HideOtherVideo", 50 | "2055": "ShowAllVideo", 51 | "2056": "Audio", 52 | "2059": "Video", 53 | "2062": "Effect", 54 | "2065": "Position", 55 | "2066": "Scale", 56 | "2068": "MaskShape", 57 | "2069": "MaskFeather", 58 | "2070": "Opacity", 59 | "2071": "Precompose", 60 | "2072": "RemoveAll", 61 | "2073": "About", 62 | "2076": "GotoTime", 63 | "2077": "Main", 64 | "2078": "File", 65 | "2079": "Preferences", 66 | "2080": "Duplicate", 67 | "2081": "Third", 68 | "2092": "ZoomIn", 69 | "2093": "ZoomOut", 70 | "2101": "1", 71 | "2102": "InterpretFootage", 72 | "2103": "Proxy", 73 | "2104": "File", 74 | "2105": "Import", 75 | "2106": "SetProxy", 76 | "2107": "ConsolidateAllFootage", 77 | "2109": "RemoveUnusedFootage", 78 | "2113": "Shy", 79 | "2114": "Lock", 80 | "2116": "MotionBlur", 81 | "2118": "File", 82 | "2119": "None", 83 | "2125": "SavePreview", 84 | "2131": "Preview", 85 | "2135": "TimeReverseLayer", 86 | "2139": "NewFolder", 87 | "2142": "EditOriginal", 88 | "2149": "RenderSettings", 89 | "2150": "OutputModule", 90 | "2153": "EnableTimeRemapping", 91 | "2154": "AddOutputModule", 92 | "2155": "Custom", 93 | "2156": "FittoComp", 94 | "2157": "AddMarker", 95 | "2158": "DuplicatePreserveFile", 96 | "2159": "KeyframeAssistant", 97 | "2160": "Collapse", 98 | "2161": "AddtoRenderQueue", 99 | "2162": "BlendingMode", 100 | "2163": "EffectControls", 101 | "2165": "AutoOrient", 102 | "2166": "SaveaCopy", 103 | "2167": "Normal", 104 | "2168": "Dissolve", 105 | "2169": "DancingDissolve", 106 | "2170": "Add", 107 | "2171": "Multiply", 108 | "2172": "Screen", 109 | "2173": "Overlay", 110 | "2174": "SoftLight", 111 | "2175": "HardLight", 112 | "2176": "ClassicColorDodge", 113 | "2177": "ClassicColorBurn", 114 | "2178": "Darken", 115 | "2179": "Lighten", 116 | "2180": "ClassicDifference", 117 | "2181": "Exclusion", 118 | "2182": "Hue", 119 | "2183": "Saturation", 120 | "2184": "Color", 121 | "2185": "Luminosity", 122 | "2186": "StencilAlpha", 123 | "2187": "StencilLuma", 124 | "2188": "SilhouetteAlpha", 125 | "2189": "SilhouetteLuma", 126 | "2190": "PreserveTransparency", 127 | "2191": "NoTrackMatte", 128 | "2192": "AlphaMatte", 129 | "2193": "AlphaInvertedMatte", 130 | "2194": "LumaMatte", 131 | "2195": "LumaInvertedMatte", 132 | "2197": "LuminescentPremul", 133 | "2198": "AlphaAdd", 134 | "2199": "Difference", 135 | "2200": "ColorDodge", 136 | "2201": "ColorBurn", 137 | "2202": "LinearDodge", 138 | "2203": "LinearBurn", 139 | "2204": "LinearLight", 140 | "2205": "VividLight", 141 | "2206": "PinLight", 142 | "2207": "HardMix", 143 | "2208": "LighterColor", 144 | "2209": "DarkerColor", 145 | "2210": "Subtract", 146 | "2211": "Divide", 147 | "2226": "ToggleHoldKeyframe", 148 | "2227": "KeyframeInterpolation", 149 | "2228": "KeyframeVelocity", 150 | "2233": "SaveFrameAs", 151 | "2236": "MultipleFiles", 152 | "2237": "ReplaceFootage", 153 | "2240": "EditValue", 154 | "2241": "KeyframeValue", 155 | "2244": "UnlockAllLayers", 156 | "2254": "RememberInterpretation", 157 | "2255": "ApplyInterpretation", 158 | "2257": "ReloadFootage", 159 | "2258": "CompFlowchartView", 160 | "2263": "AdjustmentLayer", 161 | "2264": "New", 162 | "2265": "Templates", 163 | "2269": "TrackMatte", 164 | "2274": "ShowGuides", 165 | "2275": "LockGuides", 166 | "2276": "ClearGuides", 167 | "2277": "ShowGrid", 168 | "2278": "SnaptoGrid", 169 | "2279": "AdjustmentLayer", 170 | "2280": "ShowRulers", 171 | "2283": "ImportRecentFootage", 172 | "2284": "OpenRecentProjects", 173 | "2286": "SnaptoGuides", 174 | "2289": "FrameBlending", 175 | "2290": "Off", 176 | "2291": "FrameMix", 177 | "2292": "PixelMotion", 178 | "2310": "RecentFootageList", 179 | "2330": "RecentProjectList", 180 | "2350": "None", 181 | "2358": "Label", 182 | "2359": "General", 183 | "2360": "TrimComptoWorkArea", 184 | "2361": "Display", 185 | "2362": "Import", 186 | "2363": "Output", 187 | "2364": "GridsGuides", 188 | "2365": "Labels", 189 | "2367": "NewMask", 190 | "2368": "RemoveMask", 191 | "2369": "RemoveAllMasks", 192 | "2370": "Purge", 193 | "2371": "Undo", 194 | "2372": "ImageCaches", 195 | "2373": "All", 196 | "2374": "Closed", 197 | "2387": "RevealPropertiesWithKeyframes", 198 | "2434": "Audio", 199 | "2435": "ShowLayerControls", 200 | "2436": "SelectLabelGroup", 201 | "2439": "DiskCaching", 202 | "2440": "Mode", 203 | "2441": "None", 204 | "2442": "Add", 205 | "2443": "Subtract", 206 | "2444": "Intersect", 207 | "2445": "Lighten", 208 | "2446": "Darken", 209 | "2447": "Difference", 210 | "2448": "ResetMask", 211 | "2450": "ApplyAnimationPreset", 212 | "2451": "RecentAnimationPresets", 213 | "2452": "LastEffect", 214 | "2453": "MaskOpacity", 215 | "2454": "Locked", 216 | "2455": "LockOtherMasks", 217 | "2456": "UnlockAllMasks", 218 | "2457": "WatchFolder", 219 | "2460": "RecentFavoritesList", 220 | "2481": "Snapshot", 221 | "2482": "CollectFiles", 222 | "2494": "Export", 223 | "2517": "RevealLayerSourceinProject", 224 | "2518": "AddKeyframe", 225 | "2519": "PreviousKeyframe", 226 | "2520": "NextKeyframe", 227 | "2521": "Reset", 228 | "2522": "RevealLayerinProjectFlowchartView", 229 | "2523": "OpenLayerSourceWindow", 230 | "2524": "HideLockedMasks", 231 | "2536": "RevealinTimeline", 232 | "2537": "DeleteThisMarker", 233 | "2538": "DeleteAllMarkers", 234 | "2539": "UpdateMarkersFromSource", 235 | "2541": "3DLayer", 236 | "2552": "AdobeDynamicLink", 237 | "2553": "NewPremiereProSequence", 238 | "2554": "ImportPremiereProSequence", 239 | "2557": "Shutter180Phase0", 240 | "2558": "Shutter360Phase0", 241 | "2559": "Shutter90Phase0", 242 | "2560": "Shutter180Phase180", 243 | "2561": "Shutter720Phase360", 244 | "2563": "Light", 245 | "2564": "Camera", 246 | "2565": "LockMarkers", 247 | "2566": "Solo", 248 | "2567": "Settings", 249 | "2568": "Track2DMotion", 250 | "2605": "Reset", 251 | "2606": "New", 252 | "2607": "Find", 253 | "2611": "ProjectSettings", 254 | "2613": "LiftWorkArea", 255 | "2614": "ExtractWorkArea", 256 | "2623": "Orientation", 257 | "2624": "Assign3DViewShortcut", 258 | "2625": "Switch3DView", 259 | "2626": "A", 260 | "2627": "B", 261 | "2628": "C", 262 | "2641": "EditValue", 263 | "2642": "Reset3DView", 264 | "2643": "TrackthisProperty", 265 | "2644": "EditProperties", 266 | "2645": "CreateCameraFrom3DView", 267 | "2701": "SetKeyframe", 268 | "2702": "AddExpression", 269 | "2703": "SwitchtoLast3DView", 270 | "2704": "VideoPreview", 271 | "2705": "Previews", 272 | "2710": "ActiveCamera", 273 | "2711": "Front", 274 | "2712": "Left", 275 | "2713": "Top", 276 | "2714": "Back", 277 | "2715": "Right", 278 | "2716": "Bottom", 279 | "2717": "CustomView1", 280 | "2718": "CustomView2", 281 | "2719": "CustomView3", 282 | "2731": "RevealExpressionErrors", 283 | "2732": "FittoCompWidth", 284 | "2733": "FittoCompHeight", 285 | "2735": "ReduceProject", 286 | "2736": "MaskExpansion", 287 | "2738": "Workspace", 288 | "2739": "SaveWorkspace", 289 | "2767": "NullObject", 290 | "2768": "SetFirstVertex", 291 | "2769": "Custom", 292 | "2771": "RevealAllModifiedProperties", 293 | "2776": "ViewOptions", 294 | "2777": "CreateProxy", 295 | "2778": "Still", 296 | "2779": "Movie", 297 | "2780": "Prerender", 298 | "2781": "NextBlendingMode", 299 | "2782": "PreviousBlendingMode", 300 | "2792": "Rotation", 301 | "2797": "MotionBlur", 302 | "2798": "SameAsLayer", 303 | "2799": "On", 304 | "2800": "Off", 305 | "2824": "OneCompView", 306 | "2825": "TwoCompViews", 307 | "2826": "FourCompViews", 308 | "2834": "LookatSelectedLayers", 309 | "2835": "LookatAllLayers", 310 | "2836": "Text", 311 | "2933": "CreateOutlineMasks", 312 | "2934": "SelectEqualKeyframes", 313 | "2995": "History", 314 | "2997": "CropComptoRegionofInterest", 315 | "3013": "ShowTextPanels", 316 | "3016": "Property", 317 | "3017": "Selector", 318 | "3018": "DeleteBrush", 319 | "3019": "AnchorPoint", 320 | "3020": "Position", 321 | "3021": "Scale", 322 | "3022": "Skew", 323 | "3023": "Rotation", 324 | "3024": "StrokeWidth", 325 | "3025": "Tracking", 326 | "3026": "LineAnchor", 327 | "3027": "CharacterOffset", 328 | "3028": "CharacterValue", 329 | "3029": "RGB", 330 | "3030": "Hue", 331 | "3031": "Saturation", 332 | "3032": "Brightness", 333 | "3033": "Opacity", 334 | "3034": "RGB", 335 | "3035": "Hue", 336 | "3036": "Saturation", 337 | "3037": "Brightness", 338 | "3038": "Opacity", 339 | "3039": "FillColor", 340 | "3040": "StrokeColor", 341 | "3041": "Wiggly", 342 | "3042": "Opacity", 343 | "3043": "LineSpacing", 344 | "3044": "Autotrace", 345 | "3052": "AllTransformProperties", 346 | "3053": "RotoBezier", 347 | "3058": "RemoveAllTextAnimators", 348 | "3063": "Expression", 349 | "3064": "ConvertShape", 350 | "3065": "Horizontal", 351 | "3066": "Vertical", 352 | "3070": "WithLayeredComp", 353 | "3071": "UserInterfaceColors", 354 | "3072": "SelectPreviousKeyframes", 355 | "3073": "SelectFollowingKeyframes", 356 | "3075": "SaveAnimationPreset", 357 | "3081": "GuideLayer", 358 | "3088": "IncrementandSave", 359 | "3122": "AutoSave", 360 | "3124": "MemoryMultiprocessing", 361 | "3125": "AudioHardware", 362 | "3126": "AudioOutputMapping", 363 | "3129": "NewProject", 364 | "3130": "Type", 365 | "3131": "ScriptsExpressions", 366 | "3132": "Camera3D", 367 | "3147": "AdobePhotoshopFile", 368 | "3148": "AdobePhotoshopFile", 369 | "3153": "RoveAcrossTime", 370 | "3154": "CloseProject", 371 | "3155": "Time", 372 | "3565": "NewWorkspace", 373 | "3566": "ResetWorkspace", 374 | "3689": "Browse", 375 | "3690": "RevealinBridge", 376 | "3691": "BrowsePresets", 377 | "3695": "FreezeFrame", 378 | "3696": "RevealCompInPW", 379 | "3697": "EditinAdobeAudition", 380 | "3698": "Blur", 381 | "3700": "NewViewer", 382 | "3703": "SimulateOutput", 383 | "3704": "UseDisplayColorManagement", 384 | "3705": "NoOutputSimulation", 385 | "3706": "Kodak5218toKodak2383", 386 | "3707": "AssignWorkspaceShortcut", 387 | "3708": "A", 388 | "3709": "B", 389 | "3710": "C", 390 | "3734": "OpenEffectControls", 391 | "3736": "ShapeLayer", 392 | "3737": "EnablePercharacter3D", 393 | "3739": "LayerStyles", 394 | "3745": "MaskandShapePath", 395 | "3754": "HDTVRec709", 396 | "3755": "SDTVNTSC", 397 | "3756": "SDTVPAL", 398 | "3757": "MacintoshRGB", 399 | "3758": "WindowsRGB", 400 | "3759": "MyCustomRGB", 401 | "3760": "Custom", 402 | "3764": "SeparateDimensions", 403 | "3766": "FlipHorizontal", 404 | "3767": "FlipVertical", 405 | "3781": "CreateOutlineShape", 406 | "3784": "OpenLayerWindow", 407 | "3785": "SaveAsXML", 408 | "3791": "UpgradeProjectPARsToCS4", 409 | "3792": "OpenMiniFlowPopup", 410 | "3798": "Arrange", 411 | "3799": "ConvertToEditable", 412 | "3800": "AddToAMERenderQueue", 413 | "3814": "UCFtoKodak2383", 414 | "3819": "CenterInView", 415 | "3840": "SaveAs", 416 | "3842": "Camera", 417 | "3972": "EnvironLayer", 418 | "3973": "CreateFootageOutlines", 419 | "3983": "Track3DCameraMotion", 420 | "3984": "AddtoRenderQueue", 421 | "3986": "WarpStabilizer", 422 | "3987": "FeatherFalloff", 423 | "3988": "Smooth", 424 | "3989": "Linear", 425 | "3991": "FeatherHold", 426 | "3992": "FeatherEditTension", 427 | "3993": "FeatherEditExtent", 428 | "3999": "GoToKeyframeTime", 429 | "4008": "Cinema4DFile", 430 | "4011": "RevealPropertiesWithAnimation", 431 | "4015": "EnableAutoStopwatch", 432 | "4016": "Extensions", 433 | "4017": "AddFontsFromAdobe", 434 | "4018": "FindExtensions", 435 | "4021": "Brainstorm", 436 | "4022": "ImportCCLibraries", 437 | "4023": "EditWorkspace", 438 | "4027": "FreezeOnLastFrame", 439 | "4036": "CreateDataFootageLayerKeyframes", 440 | "4042": "AddPropToCapsules", 441 | "4043": "Reveal", 442 | "4044": "Create", 443 | "4045": "TrackAndStabilize", 444 | "4046": "Open", 445 | "4049": "CAFillLayer", 446 | "4150": "TaffyTimeHeir", 447 | "4151": "CreateIntro", 448 | "4152": "CreateOutro", 449 | "4153": "CreateProtectedRegion", 450 | "4154": "EnableProtectedRegion", 451 | "4158": "ImportGuides", 452 | "4159": "ExportGuides", 453 | "10200": "AllMemoryDiskCache", 454 | "10205": "AddToAMERenderQueue", 455 | "10207": "Bilinear", 456 | "10208": "Bicubic", 457 | "10305": "UserProfile", 458 | "10307": "UserProfile", 459 | "10310": "Copy", 460 | "10311": "TrackMask", 461 | "10312": "CenterAnchor", 462 | "10313": "Copy", 463 | "10314": "PlayPreview", 464 | "10420": "LicenseFootage", 465 | "10426": "KSV", 466 | "10450": "EnableExpressions", 467 | "10451": "DisableExpressions", 468 | "10502": "GenerateLayerMarkersFromAudioBeats", 469 | "10503": "GenerateLayerMarkersFromAudioEvents", 470 | "10504": "SyncPropertyToAudioBeats" 471 | } 472 | -------------------------------------------------------------------------------- /json/2021.json: -------------------------------------------------------------------------------- 1 | { 2 | "1": "Quit", 3 | "2": "NewProject", 4 | "3": "OpenProject", 5 | "4": "Close", 6 | "5": "Save", 7 | "6": "SaveAs", 8 | "7": "Revert", 9 | "8": "PageSetup", 10 | "9": "Print", 11 | "16": "Undo", 12 | "18": "Cut", 13 | "19": "Copy", 14 | "20": "Paste", 15 | "21": "Clear", 16 | "23": "SelectAll", 17 | "53": "CopyExpressionOnly", 18 | "256": "AboutAfterEffects", 19 | "2000": "NewComposition", 20 | "2003": "File", 21 | "2004": "DeselectAll", 22 | "2005": "AddFootagetoComp", 23 | "2007": "CompositionSettings", 24 | "2008": "RenameLayer", 25 | "2012": "SetPosterTime", 26 | "2016": "MoveToTop", 27 | "2017": "MoveToBottom", 28 | "2018": "MoveUp", 29 | "2019": "MoveDown", 30 | "2020": "Transform", 31 | "2021": "LayerSettings", 32 | "2024": "TimeStretch", 33 | "2025": "PICT", 34 | "2035": "Redo", 35 | "2037": "Resolution", 36 | "2038": "Solid", 37 | "2040": "Mask", 38 | "2041": "Quality", 39 | "2042": "Wireframe", 40 | "2044": "Draft", 41 | "2045": "Best", 42 | "2046": "Quarter", 43 | "2047": "Half", 44 | "2048": "Full", 45 | "2049": "Custom", 46 | "2051": "FreeTransformPoints", 47 | "2052": "Inverted", 48 | "2053": "Switches", 49 | "2054": "HideOtherVideo", 50 | "2055": "ShowAllVideo", 51 | "2056": "Audio", 52 | "2059": "Video", 53 | "2062": "Effect", 54 | "2065": "Position", 55 | "2066": "Scale", 56 | "2068": "MaskShape", 57 | "2069": "MaskFeather", 58 | "2070": "Opacity", 59 | "2071": "Precompose", 60 | "2072": "RemoveAll", 61 | "2073": "About", 62 | "2076": "GotoTime", 63 | "2077": "Main", 64 | "2078": "File", 65 | "2079": "Preferences", 66 | "2080": "Duplicate", 67 | "2081": "Third", 68 | "2092": "ZoomIn", 69 | "2093": "ZoomOut", 70 | "2101": "1", 71 | "2102": "InterpretFootage", 72 | "2103": "Proxy", 73 | "2104": "File", 74 | "2105": "Import", 75 | "2106": "SetProxy", 76 | "2107": "ConsolidateAllFootage", 77 | "2109": "RemoveUnusedFootage", 78 | "2113": "Shy", 79 | "2114": "Lock", 80 | "2116": "MotionBlur", 81 | "2118": "File", 82 | "2119": "None", 83 | "2125": "SavePreview", 84 | "2131": "Preview", 85 | "2135": "TimeReverseLayer", 86 | "2139": "NewFolder", 87 | "2142": "EditOriginal", 88 | "2149": "RenderSettings", 89 | "2150": "OutputModule", 90 | "2153": "EnableTimeRemapping", 91 | "2154": "AddOutputModule", 92 | "2155": "Custom", 93 | "2156": "FittoComp", 94 | "2157": "AddMarker", 95 | "2158": "DuplicatePreserveFile", 96 | "2159": "KeyframeAssistant", 97 | "2160": "Collapse", 98 | "2161": "AddtoRenderQueue", 99 | "2162": "BlendingMode", 100 | "2163": "EffectControls", 101 | "2165": "AutoOrient", 102 | "2166": "SaveaCopy", 103 | "2167": "Normal", 104 | "2168": "Dissolve", 105 | "2169": "DancingDissolve", 106 | "2170": "Add", 107 | "2171": "Multiply", 108 | "2172": "Screen", 109 | "2173": "Overlay", 110 | "2174": "SoftLight", 111 | "2175": "HardLight", 112 | "2176": "ClassicColorDodge", 113 | "2177": "ClassicColorBurn", 114 | "2178": "Darken", 115 | "2179": "Lighten", 116 | "2180": "ClassicDifference", 117 | "2181": "Exclusion", 118 | "2182": "Hue", 119 | "2183": "Saturation", 120 | "2184": "Color", 121 | "2185": "Luminosity", 122 | "2186": "StencilAlpha", 123 | "2187": "StencilLuma", 124 | "2188": "SilhouetteAlpha", 125 | "2189": "SilhouetteLuma", 126 | "2190": "PreserveTransparency", 127 | "2191": "NoTrackMatte", 128 | "2192": "AlphaMatte", 129 | "2193": "AlphaInvertedMatte", 130 | "2194": "LumaMatte", 131 | "2195": "LumaInvertedMatte", 132 | "2197": "LuminescentPremul", 133 | "2198": "AlphaAdd", 134 | "2199": "Difference", 135 | "2200": "ColorDodge", 136 | "2201": "ColorBurn", 137 | "2202": "LinearDodge", 138 | "2203": "LinearBurn", 139 | "2204": "LinearLight", 140 | "2205": "VividLight", 141 | "2206": "PinLight", 142 | "2207": "HardMix", 143 | "2208": "LighterColor", 144 | "2209": "DarkerColor", 145 | "2210": "Subtract", 146 | "2211": "Divide", 147 | "2226": "ToggleHoldKeyframe", 148 | "2227": "KeyframeInterpolation", 149 | "2228": "KeyframeVelocity", 150 | "2233": "SaveFrameAs", 151 | "2236": "MultipleFiles", 152 | "2237": "ReplaceFootage", 153 | "2240": "EditValue", 154 | "2241": "KeyframeValue", 155 | "2244": "UnlockAllLayers", 156 | "2254": "RememberInterpretation", 157 | "2255": "ApplyInterpretation", 158 | "2257": "ReloadFootage", 159 | "2258": "CompFlowchartView", 160 | "2263": "AdjustmentLayer", 161 | "2264": "New", 162 | "2265": "Templates", 163 | "2269": "TrackMatte", 164 | "2274": "ShowGuides", 165 | "2275": "LockGuides", 166 | "2276": "ClearGuides", 167 | "2277": "ShowGrid", 168 | "2278": "SnaptoGrid", 169 | "2279": "AdjustmentLayer", 170 | "2280": "ShowRulers", 171 | "2283": "ImportRecentFootage", 172 | "2284": "OpenRecentProjects", 173 | "2286": "SnaptoGuides", 174 | "2289": "FrameBlending", 175 | "2290": "Off", 176 | "2291": "FrameMix", 177 | "2292": "PixelMotion", 178 | "2310": "RecentFootageList", 179 | "2330": "RecentProjectList", 180 | "2350": "None", 181 | "2358": "Label", 182 | "2359": "General", 183 | "2360": "TrimComptoWorkArea", 184 | "2361": "Display", 185 | "2362": "Import", 186 | "2363": "Output", 187 | "2364": "GridsGuides", 188 | "2365": "Labels", 189 | "2367": "NewMask", 190 | "2368": "RemoveMask", 191 | "2369": "RemoveAllMasks", 192 | "2370": "Purge", 193 | "2371": "Undo", 194 | "2372": "ImageCaches", 195 | "2373": "All", 196 | "2374": "Closed", 197 | "2387": "RevealPropertiesWithKeyframes", 198 | "2434": "Audio", 199 | "2435": "ShowLayerControls", 200 | "2436": "SelectLabelGroup", 201 | "2439": "DiskCaching", 202 | "2440": "Mode", 203 | "2441": "None", 204 | "2442": "Add", 205 | "2443": "Subtract", 206 | "2444": "Intersect", 207 | "2445": "Lighten", 208 | "2446": "Darken", 209 | "2447": "Difference", 210 | "2448": "ResetMask", 211 | "2450": "ApplyAnimationPreset", 212 | "2451": "RecentAnimationPresets", 213 | "2452": "LastEffect", 214 | "2453": "MaskOpacity", 215 | "2454": "Locked", 216 | "2455": "LockOtherMasks", 217 | "2456": "UnlockAllMasks", 218 | "2457": "WatchFolder", 219 | "2460": "RecentFavoritesList", 220 | "2481": "Snapshot", 221 | "2482": "CollectFiles", 222 | "2494": "Export", 223 | "2517": "RevealLayerSourceinProject", 224 | "2518": "AddKeyframe", 225 | "2519": "PreviousKeyframe", 226 | "2520": "NextKeyframe", 227 | "2521": "Reset", 228 | "2522": "RevealLayerinProjectFlowchartView", 229 | "2523": "OpenLayerSourceWindow", 230 | "2524": "HideLockedMasks", 231 | "2536": "RevealinTimeline", 232 | "2537": "DeleteThisMarker", 233 | "2538": "DeleteAllMarkers", 234 | "2539": "UpdateMarkersFromSource", 235 | "2541": "3DLayer", 236 | "2552": "AdobeDynamicLink", 237 | "2553": "NewPremiereProSequence", 238 | "2554": "ImportPremiereProSequence", 239 | "2557": "Shutter180Phase0", 240 | "2558": "Shutter360Phase0", 241 | "2559": "Shutter90Phase0", 242 | "2560": "Shutter180Phase180", 243 | "2561": "Shutter720Phase360", 244 | "2563": "Light", 245 | "2564": "Camera", 246 | "2565": "LockMarkers", 247 | "2566": "Solo", 248 | "2567": "Settings", 249 | "2568": "Track2DMotion", 250 | "2605": "Reset", 251 | "2606": "New", 252 | "2607": "Find", 253 | "2611": "ProjectSettings", 254 | "2613": "LiftWorkArea", 255 | "2614": "ExtractWorkArea", 256 | "2623": "Orientation", 257 | "2624": "Assign3DViewShortcut", 258 | "2625": "Switch3DView", 259 | "2626": "A", 260 | "2627": "B", 261 | "2628": "C", 262 | "2641": "EditValue", 263 | "2642": "Reset3DView", 264 | "2643": "TrackthisProperty", 265 | "2644": "EditProperties", 266 | "2645": "CreateCameraFrom3DView", 267 | "2647": "Reset3DView", 268 | "2648": "Reset3DView", 269 | "2649": "CreateCameraFrom3DView", 270 | "2650": "SwitchViewLayout", 271 | "2691": "1Up", 272 | "2692": "2Up", 273 | "2693": "3Up", 274 | "2699": "ShareViewOptions", 275 | "2701": "SetKeyframe", 276 | "2702": "AddExpression", 277 | "2703": "SwitchtoLast3DView", 278 | "2704": "VideoPreview", 279 | "2705": "Previews", 280 | "2710": "ActiveCamera", 281 | "2711": "Front", 282 | "2712": "Left", 283 | "2713": "Top", 284 | "2714": "Back", 285 | "2715": "Right", 286 | "2716": "Bottom", 287 | "2717": "CustomView1", 288 | "2718": "CustomView2", 289 | "2719": "CustomView3", 290 | "2731": "RevealExpressionErrors", 291 | "2732": "FittoCompWidth", 292 | "2733": "FittoCompHeight", 293 | "2735": "ReduceProject", 294 | "2736": "MaskExpansion", 295 | "2738": "Workspace", 296 | "2739": "SaveWorkspace", 297 | "2767": "NullObject", 298 | "2768": "SetFirstVertex", 299 | "2769": "Custom", 300 | "2771": "RevealAllModifiedProperties", 301 | "2776": "ViewOptions", 302 | "2777": "CreateProxy", 303 | "2778": "Still", 304 | "2779": "Movie", 305 | "2780": "Prerender", 306 | "2781": "NextBlendingMode", 307 | "2782": "PreviousBlendingMode", 308 | "2792": "Rotation", 309 | "2797": "MotionBlur", 310 | "2798": "SameAsLayer", 311 | "2799": "On", 312 | "2800": "Off", 313 | "2824": "OneCompView", 314 | "2825": "TwoCompViews", 315 | "2826": "FourCompViews", 316 | "2834": "LookatSelectedLayers", 317 | "2835": "LookatAllLayers", 318 | "2836": "Text", 319 | "2933": "CreateOutlineMasks", 320 | "2934": "SelectEqualKeyframes", 321 | "2995": "History", 322 | "2997": "CropComptoRegionofInterest", 323 | "3013": "ShowTextPanels", 324 | "3016": "Property", 325 | "3017": "Selector", 326 | "3018": "DeleteBrush", 327 | "3019": "AnchorPoint", 328 | "3020": "Position", 329 | "3021": "Scale", 330 | "3022": "Skew", 331 | "3023": "Rotation", 332 | "3024": "StrokeWidth", 333 | "3025": "Tracking", 334 | "3026": "LineAnchor", 335 | "3027": "CharacterOffset", 336 | "3028": "CharacterValue", 337 | "3029": "RGB", 338 | "3030": "Hue", 339 | "3031": "Saturation", 340 | "3032": "Brightness", 341 | "3033": "Opacity", 342 | "3034": "RGB", 343 | "3035": "Hue", 344 | "3036": "Saturation", 345 | "3037": "Brightness", 346 | "3038": "Opacity", 347 | "3039": "FillColor", 348 | "3040": "StrokeColor", 349 | "3041": "Wiggly", 350 | "3042": "Opacity", 351 | "3043": "LineSpacing", 352 | "3044": "Autotrace", 353 | "3052": "AllTransformProperties", 354 | "3053": "RotoBezier", 355 | "3058": "RemoveAllTextAnimators", 356 | "3063": "Expression", 357 | "3064": "ConvertShape", 358 | "3065": "Horizontal", 359 | "3066": "Vertical", 360 | "3070": "WithLayeredComp", 361 | "3071": "UserInterfaceColors", 362 | "3072": "SelectPreviousKeyframes", 363 | "3073": "SelectFollowingKeyframes", 364 | "3075": "SaveAnimationPreset", 365 | "3081": "GuideLayer", 366 | "3088": "IncrementandSave", 367 | "3122": "AutoSave", 368 | "3124": "MemoryMultiprocessing", 369 | "3125": "AudioHardware", 370 | "3126": "AudioOutputMapping", 371 | "3129": "NewProject", 372 | "3130": "Type", 373 | "3131": "ScriptsExpressions", 374 | "3132": "Camera3D", 375 | "3133": "Notifications", 376 | "3147": "AdobePhotoshopFile", 377 | "3148": "AdobePhotoshopFile", 378 | "3153": "RoveAcrossTime", 379 | "3154": "CloseProject", 380 | "3155": "Time", 381 | "3565": "NewWorkspace", 382 | "3566": "ResetWorkspace", 383 | "3689": "Browse", 384 | "3690": "RevealinBridge", 385 | "3691": "BrowsePresets", 386 | "3695": "FreezeFrame", 387 | "3696": "RevealCompInPW", 388 | "3697": "EditinAdobeAudition", 389 | "3698": "Blur", 390 | "3700": "NewViewer", 391 | "3703": "SimulateOutput", 392 | "3704": "UseDisplayColorManagement", 393 | "3705": "NoOutputSimulation", 394 | "3706": "Kodak5218toKodak2383", 395 | "3707": "AssignWorkspaceShortcut", 396 | "3708": "A", 397 | "3709": "B", 398 | "3710": "C", 399 | "3734": "OpenEffectControls", 400 | "3736": "ShapeLayer", 401 | "3737": "EnablePercharacter3D", 402 | "3739": "LayerStyles", 403 | "3745": "MaskandShapePath", 404 | "3754": "HDTVRec709", 405 | "3755": "SDTVNTSC", 406 | "3756": "SDTVPAL", 407 | "3757": "MacintoshRGB", 408 | "3758": "WindowsRGB", 409 | "3759": "MyCustomRGB", 410 | "3760": "Custom", 411 | "3764": "SeparateDimensions", 412 | "3766": "FlipHorizontal", 413 | "3767": "FlipVertical", 414 | "3781": "CreateOutlineShape", 415 | "3784": "OpenLayerWindow", 416 | "3785": "SaveAsXML", 417 | "3791": "UpgradeProjectPARsToCS4", 418 | "3792": "OpenMiniFlowPopup", 419 | "3798": "Arrange", 420 | "3799": "ConvertToEditable", 421 | "3800": "AddToAMERenderQueue", 422 | "3814": "UCFtoKodak2383", 423 | "3819": "CenterInView", 424 | "3840": "SaveAs", 425 | "3842": "Camera", 426 | "3972": "EnvironLayer", 427 | "3973": "CreateFootageOutlines", 428 | "3983": "Track3DCameraMotion", 429 | "3984": "AddtoRenderQueue", 430 | "3986": "WarpStabilizer", 431 | "3987": "FeatherFalloff", 432 | "3988": "Smooth", 433 | "3989": "Linear", 434 | "3991": "FeatherHold", 435 | "3992": "FeatherEditTension", 436 | "3993": "FeatherEditExtent", 437 | "3999": "GoToKeyframeTime", 438 | "4008": "Cinema4DFile", 439 | "4011": "RevealPropertiesWithAnimation", 440 | "4015": "EnableAutoStopwatch", 441 | "4016": "Extensions", 442 | "4017": "AddFontsFromAdobe", 443 | "4018": "FindExtensions", 444 | "4021": "Brainstorm", 445 | "4022": "ImportCCLibraries", 446 | "4023": "EditWorkspace", 447 | "4027": "FreezeOnLastFrame", 448 | "4036": "CreateDataFootageLayerKeyframes", 449 | "4042": "AddPropToCapsules", 450 | "4043": "Reveal", 451 | "4044": "Create", 452 | "4045": "TrackAndStabilize", 453 | "4046": "Open", 454 | "4049": "CAFillLayer", 455 | "4150": "TaffyTimeHeir", 456 | "4151": "CreateIntro", 457 | "4152": "CreateOutro", 458 | "4153": "CreateProtectedRegion", 459 | "4154": "EnableProtectedRegion", 460 | "4158": "ImportGuides", 461 | "4159": "ExportGuides", 462 | "4208": "NextKeyframe", 463 | "4209": "EditExpression", 464 | "10200": "AllMemoryDiskCache", 465 | "10205": "AddToAMERenderQueue", 466 | "10207": "Bilinear", 467 | "10208": "Bicubic", 468 | "10305": "UserProfile", 469 | "10307": "UserProfile", 470 | "10310": "Copy", 471 | "10311": "TrackMask", 472 | "10312": "CenterAnchor", 473 | "10313": "Copy", 474 | "10314": "PlayPreview", 475 | "10420": "LicenseFootage", 476 | "10450": "EnableExpressions", 477 | "10451": "DisableExpressions", 478 | "10502": "GenerateLayerMarkersFromAudioBeats", 479 | "10503": "GenerateLayerMarkersFromAudioEvents", 480 | "10504": "SyncPropertyToAudioBeats", 481 | "10512": "Default" 482 | } 483 | -------------------------------------------------------------------------------- /json/2022.json: -------------------------------------------------------------------------------- 1 | { 2 | "1": "Quit", 3 | "2": "NewProject", 4 | "3": "OpenProject", 5 | "4": "Close", 6 | "5": "Save", 7 | "6": "SaveAs", 8 | "7": "Revert", 9 | "8": "PageSetup", 10 | "9": "Print", 11 | "16": "Undo", 12 | "18": "Cut", 13 | "19": "Copy", 14 | "20": "Paste", 15 | "21": "Clear", 16 | "23": "SelectAll", 17 | "53": "CopyExpressionOnly", 18 | "256": "AboutAfterEffects", 19 | "2000": "NewComposition", 20 | "2003": "File", 21 | "2004": "DeselectAll", 22 | "2005": "AddFootagetoComp", 23 | "2007": "CompositionSettings", 24 | "2008": "RenameLayer", 25 | "2012": "SetPosterTime", 26 | "2016": "MoveToTop", 27 | "2017": "MoveToBottom", 28 | "2018": "MoveUp", 29 | "2019": "MoveDown", 30 | "2020": "Transform", 31 | "2021": "LayerSettings", 32 | "2024": "TimeStretch", 33 | "2025": "PICT", 34 | "2035": "Redo", 35 | "2037": "Resolution", 36 | "2038": "Solid", 37 | "2040": "Mask", 38 | "2041": "Quality", 39 | "2042": "Wireframe", 40 | "2044": "Draft", 41 | "2045": "Best", 42 | "2046": "Quarter", 43 | "2047": "Half", 44 | "2048": "Full", 45 | "2049": "Custom", 46 | "2051": "FreeTransformPoints", 47 | "2052": "Inverted", 48 | "2053": "Switches", 49 | "2054": "HideOtherVideo", 50 | "2055": "ShowAllVideo", 51 | "2056": "Audio", 52 | "2059": "Video", 53 | "2062": "Effect", 54 | "2065": "Position", 55 | "2066": "Scale", 56 | "2068": "MaskShape", 57 | "2069": "MaskFeather", 58 | "2070": "Opacity", 59 | "2071": "Precompose", 60 | "2072": "RemoveAll", 61 | "2073": "About", 62 | "2076": "GotoTime", 63 | "2077": "Main", 64 | "2078": "File", 65 | "2079": "Preferences", 66 | "2080": "Duplicate", 67 | "2081": "Third", 68 | "2092": "ZoomIn", 69 | "2093": "ZoomOut", 70 | "2101": "1", 71 | "2102": "InterpretFootage", 72 | "2103": "Proxy", 73 | "2104": "File", 74 | "2105": "Import", 75 | "2106": "SetProxy", 76 | "2107": "ConsolidateAllFootage", 77 | "2109": "RemoveUnusedFootage", 78 | "2113": "Shy", 79 | "2114": "Lock", 80 | "2116": "MotionBlur", 81 | "2118": "File", 82 | "2119": "None", 83 | "2125": "SavePreview", 84 | "2131": "Preview", 85 | "2135": "TimeReverseLayer", 86 | "2139": "NewFolder", 87 | "2142": "EditOriginal", 88 | "2149": "RenderSettings", 89 | "2150": "OutputModule", 90 | "2153": "EnableTimeRemapping", 91 | "2154": "AddOutputModule", 92 | "2155": "Custom", 93 | "2156": "FittoComp", 94 | "2157": "AddMarker", 95 | "2158": "DuplicatePreserveFile", 96 | "2159": "KeyframeAssistant", 97 | "2160": "Collapse", 98 | "2161": "AddtoRenderQueue", 99 | "2162": "BlendingMode", 100 | "2163": "EffectControls", 101 | "2165": "AutoOrient", 102 | "2166": "SaveaCopy", 103 | "2167": "Normal", 104 | "2168": "Dissolve", 105 | "2169": "DancingDissolve", 106 | "2170": "Add", 107 | "2171": "Multiply", 108 | "2172": "Screen", 109 | "2173": "Overlay", 110 | "2174": "SoftLight", 111 | "2175": "HardLight", 112 | "2176": "ClassicColorDodge", 113 | "2177": "ClassicColorBurn", 114 | "2178": "Darken", 115 | "2179": "Lighten", 116 | "2180": "ClassicDifference", 117 | "2181": "Exclusion", 118 | "2182": "Hue", 119 | "2183": "Saturation", 120 | "2184": "Color", 121 | "2185": "Luminosity", 122 | "2186": "StencilAlpha", 123 | "2187": "StencilLuma", 124 | "2188": "SilhouetteAlpha", 125 | "2189": "SilhouetteLuma", 126 | "2190": "PreserveTransparency", 127 | "2191": "NoTrackMatte", 128 | "2192": "AlphaMatte", 129 | "2193": "AlphaInvertedMatte", 130 | "2194": "LumaMatte", 131 | "2195": "LumaInvertedMatte", 132 | "2197": "LuminescentPremul", 133 | "2198": "AlphaAdd", 134 | "2199": "Difference", 135 | "2200": "ColorDodge", 136 | "2201": "ColorBurn", 137 | "2202": "LinearDodge", 138 | "2203": "LinearBurn", 139 | "2204": "LinearLight", 140 | "2205": "VividLight", 141 | "2206": "PinLight", 142 | "2207": "HardMix", 143 | "2208": "LighterColor", 144 | "2209": "DarkerColor", 145 | "2210": "Subtract", 146 | "2211": "Divide", 147 | "2226": "ToggleHoldKeyframe", 148 | "2227": "KeyframeInterpolation", 149 | "2228": "KeyframeVelocity", 150 | "2233": "SaveFrameAs", 151 | "2236": "MultipleFiles", 152 | "2237": "ReplaceFootage", 153 | "2240": "EditValue", 154 | "2241": "KeyframeValue", 155 | "2244": "UnlockAllLayers", 156 | "2254": "RememberInterpretation", 157 | "2255": "ApplyInterpretation", 158 | "2257": "ReloadFootage", 159 | "2258": "CompFlowchartView", 160 | "2263": "AdjustmentLayer", 161 | "2264": "New", 162 | "2265": "Templates", 163 | "2269": "TrackMatte", 164 | "2274": "ShowGuides", 165 | "2275": "LockGuides", 166 | "2276": "ClearGuides", 167 | "2277": "ShowGrid", 168 | "2278": "SnaptoGrid", 169 | "2279": "AdjustmentLayer", 170 | "2280": "ShowRulers", 171 | "2283": "ImportRecentFootage", 172 | "2284": "OpenRecentProjects", 173 | "2286": "SnaptoGuides", 174 | "2289": "FrameBlending", 175 | "2290": "Off", 176 | "2291": "FrameMix", 177 | "2292": "PixelMotion", 178 | "2310": "RecentFootageList", 179 | "2330": "RecentProjectList", 180 | "2350": "None", 181 | "2358": "Label", 182 | "2359": "General", 183 | "2360": "TrimComptoWorkArea", 184 | "2361": "Display", 185 | "2362": "Import", 186 | "2363": "Output", 187 | "2364": "GridsGuides", 188 | "2365": "Labels", 189 | "2367": "NewMask", 190 | "2368": "RemoveMask", 191 | "2369": "RemoveAllMasks", 192 | "2370": "Purge", 193 | "2371": "Undo", 194 | "2372": "ImageCaches", 195 | "2373": "All", 196 | "2374": "Closed", 197 | "2387": "RevealPropertiesWithKeyframes", 198 | "2434": "Audio", 199 | "2435": "ShowLayerControls", 200 | "2436": "SelectLabelGroup", 201 | "2439": "DiskCaching", 202 | "2440": "Mode", 203 | "2441": "None", 204 | "2442": "Add", 205 | "2443": "Subtract", 206 | "2444": "Intersect", 207 | "2445": "Lighten", 208 | "2446": "Darken", 209 | "2447": "Difference", 210 | "2448": "ResetMask", 211 | "2450": "ApplyAnimationPreset", 212 | "2451": "RecentAnimationPresets", 213 | "2452": "LastEffect", 214 | "2453": "MaskOpacity", 215 | "2454": "Locked", 216 | "2455": "LockOtherMasks", 217 | "2456": "UnlockAllMasks", 218 | "2457": "WatchFolder", 219 | "2460": "RecentFavoritesList", 220 | "2481": "Snapshot", 221 | "2482": "CollectFiles", 222 | "2494": "Export", 223 | "2517": "RevealLayerSourceinProject", 224 | "2518": "AddKeyframe", 225 | "2519": "PreviousKeyframe", 226 | "2520": "NextKeyframe", 227 | "2521": "Reset", 228 | "2522": "RevealLayerinProjectFlowchartView", 229 | "2523": "OpenLayerSourceWindow", 230 | "2524": "HideLockedMasks", 231 | "2536": "RevealinTimeline", 232 | "2537": "DeleteThisMarker", 233 | "2538": "DeleteAllMarkers", 234 | "2539": "UpdateMarkersFromSource", 235 | "2541": "3DLayer", 236 | "2552": "AdobeDynamicLink", 237 | "2553": "NewPremiereProSequence", 238 | "2554": "ImportPremiereProSequence", 239 | "2557": "Shutter180Phase0", 240 | "2558": "Shutter360Phase0", 241 | "2559": "Shutter90Phase0", 242 | "2560": "Shutter180Phase180", 243 | "2561": "Shutter720Phase360", 244 | "2563": "Light", 245 | "2564": "Camera", 246 | "2565": "LockMarkers", 247 | "2566": "Solo", 248 | "2567": "Settings", 249 | "2568": "Track2DMotion", 250 | "2605": "Reset", 251 | "2606": "New", 252 | "2607": "Find", 253 | "2611": "ProjectSettings", 254 | "2613": "LiftWorkArea", 255 | "2614": "ExtractWorkArea", 256 | "2623": "Orientation", 257 | "2624": "Assign3DViewShortcut", 258 | "2625": "Switch3DView", 259 | "2626": "A", 260 | "2627": "B", 261 | "2628": "C", 262 | "2641": "EditValue", 263 | "2642": "Reset3DView", 264 | "2643": "TrackthisProperty", 265 | "2644": "EditProperties", 266 | "2645": "CreateCameraFrom3DView", 267 | "2647": "Reset3DView", 268 | "2648": "Reset3DView", 269 | "2649": "CreateCameraFrom3DView", 270 | "2650": "SwitchViewLayout", 271 | "2691": "1Up", 272 | "2692": "2Up", 273 | "2693": "3Up", 274 | "2699": "ShareViewOptions", 275 | "2701": "SetKeyframe", 276 | "2702": "AddExpression", 277 | "2703": "SwitchtoLast3DView", 278 | "2704": "VideoPreview", 279 | "2705": "Previews", 280 | "2710": "ActiveCamera", 281 | "2711": "Front", 282 | "2712": "Left", 283 | "2713": "Top", 284 | "2714": "Back", 285 | "2715": "Right", 286 | "2716": "Bottom", 287 | "2717": "CustomView1", 288 | "2718": "CustomView2", 289 | "2719": "CustomView3", 290 | "2731": "RevealExpressionErrors", 291 | "2732": "FittoCompWidth", 292 | "2733": "FittoCompHeight", 293 | "2735": "ReduceProject", 294 | "2736": "MaskExpansion", 295 | "2738": "Workspace", 296 | "2739": "SaveWorkspace", 297 | "2767": "NullObject", 298 | "2768": "SetFirstVertex", 299 | "2769": "Custom", 300 | "2771": "RevealAllModifiedProperties", 301 | "2776": "ViewOptions", 302 | "2777": "CreateProxy", 303 | "2778": "Still", 304 | "2779": "Movie", 305 | "2780": "Prerender", 306 | "2781": "NextBlendingMode", 307 | "2782": "PreviousBlendingMode", 308 | "2792": "Rotation", 309 | "2797": "MotionBlur", 310 | "2798": "SameAsLayer", 311 | "2799": "On", 312 | "2800": "Off", 313 | "2824": "OneCompView", 314 | "2825": "TwoCompViews", 315 | "2826": "FourCompViews", 316 | "2834": "LookatSelectedLayers", 317 | "2835": "LookatAllLayers", 318 | "2836": "Text", 319 | "2933": "CreateOutlineMasks", 320 | "2934": "SelectEqualKeyframes", 321 | "2995": "History", 322 | "2997": "CropComptoRegionofInterest", 323 | "3013": "ShowTextPanels", 324 | "3016": "Property", 325 | "3017": "Selector", 326 | "3018": "DeleteBrush", 327 | "3019": "AnchorPoint", 328 | "3020": "Position", 329 | "3021": "Scale", 330 | "3022": "Skew", 331 | "3023": "Rotation", 332 | "3024": "StrokeWidth", 333 | "3025": "Tracking", 334 | "3026": "LineAnchor", 335 | "3027": "CharacterOffset", 336 | "3028": "CharacterValue", 337 | "3029": "RGB", 338 | "3030": "Hue", 339 | "3031": "Saturation", 340 | "3032": "Brightness", 341 | "3033": "Opacity", 342 | "3034": "RGB", 343 | "3035": "Hue", 344 | "3036": "Saturation", 345 | "3037": "Brightness", 346 | "3038": "Opacity", 347 | "3039": "FillColor", 348 | "3040": "StrokeColor", 349 | "3041": "Wiggly", 350 | "3042": "Opacity", 351 | "3043": "LineSpacing", 352 | "3044": "Autotrace", 353 | "3052": "AllTransformProperties", 354 | "3053": "RotoBezier", 355 | "3058": "RemoveAllTextAnimators", 356 | "3063": "Expression", 357 | "3064": "ConvertShape", 358 | "3065": "Horizontal", 359 | "3066": "Vertical", 360 | "3070": "WithLayeredComp", 361 | "3071": "UserInterfaceColors", 362 | "3072": "SelectPreviousKeyframes", 363 | "3073": "SelectFollowingKeyframes", 364 | "3075": "SaveAnimationPreset", 365 | "3081": "GuideLayer", 366 | "3088": "IncrementandSave", 367 | "3122": "AutoSave", 368 | "3124": "MemoryMultiprocessing", 369 | "3125": "AudioHardware", 370 | "3126": "AudioOutputMapping", 371 | "3129": "NewProject", 372 | "3130": "Type", 373 | "3131": "ScriptsExpressions", 374 | "3132": "Camera3D", 375 | "3133": "Notifications", 376 | "3147": "AdobePhotoshopFile", 377 | "3148": "AdobePhotoshopFile", 378 | "3153": "RoveAcrossTime", 379 | "3154": "CloseProject", 380 | "3155": "Time", 381 | "3565": "NewWorkspace", 382 | "3566": "ResetWorkspace", 383 | "3689": "Browse", 384 | "3690": "RevealinBridge", 385 | "3691": "BrowsePresets", 386 | "3695": "FreezeFrame", 387 | "3696": "RevealCompInPW", 388 | "3697": "EditinAdobeAudition", 389 | "3698": "Blur", 390 | "3700": "NewViewer", 391 | "3703": "SimulateOutput", 392 | "3704": "UseDisplayColorManagement", 393 | "3705": "NoOutputSimulation", 394 | "3706": "Kodak5218toKodak2383", 395 | "3707": "AssignWorkspaceShortcut", 396 | "3708": "A", 397 | "3709": "B", 398 | "3710": "C", 399 | "3734": "OpenEffectControls", 400 | "3736": "ShapeLayer", 401 | "3737": "EnablePercharacter3D", 402 | "3739": "LayerStyles", 403 | "3745": "MaskandShapePath", 404 | "3754": "HDTVRec709", 405 | "3755": "SDTVNTSC", 406 | "3756": "SDTVPAL", 407 | "3757": "MacintoshRGB", 408 | "3758": "WindowsRGB", 409 | "3759": "MyCustomRGB", 410 | "3760": "Custom", 411 | "3764": "SeparateDimensions", 412 | "3766": "FlipHorizontal", 413 | "3767": "FlipVertical", 414 | "3781": "CreateOutlineShape", 415 | "3784": "OpenLayerWindow", 416 | "3785": "SaveAsXML", 417 | "3791": "UpgradeProjectPARsToCS4", 418 | "3792": "OpenMiniFlowPopup", 419 | "3798": "Arrange", 420 | "3799": "ConvertToEditable", 421 | "3800": "AddToAMERenderQueue", 422 | "3814": "UCFtoKodak2383", 423 | "3819": "CenterInView", 424 | "3840": "SaveAs", 425 | "3842": "Camera", 426 | "3972": "EnvironLayer", 427 | "3973": "CreateFootageOutlines", 428 | "3983": "Track3DCameraMotion", 429 | "3984": "AddtoRenderQueue", 430 | "3986": "WarpStabilizer", 431 | "3987": "FeatherFalloff", 432 | "3988": "Smooth", 433 | "3989": "Linear", 434 | "3991": "FeatherHold", 435 | "3992": "FeatherEditTension", 436 | "3993": "FeatherEditExtent", 437 | "3999": "GoToKeyframeTime", 438 | "4008": "Cinema4DFile", 439 | "4011": "RevealPropertiesWithAnimation", 440 | "4015": "EnableAutoStopwatch", 441 | "4016": "Extensions", 442 | "4017": "AddFontsFromAdobe", 443 | "4018": "FindExtensions", 444 | "4021": "Brainstorm", 445 | "4022": "ImportCCLibraries", 446 | "4023": "EditWorkspace", 447 | "4027": "FreezeOnLastFrame", 448 | "4036": "CreateDataFootageLayerKeyframes", 449 | "4042": "AddPropToCapsules", 450 | "4043": "Reveal", 451 | "4044": "Create", 452 | "4045": "TrackAndStabilize", 453 | "4046": "Open", 454 | "4049": "CAFillLayer", 455 | "4150": "TaffyTimeHeir", 456 | "4151": "CreateIntro", 457 | "4152": "CreateOutro", 458 | "4153": "CreateProtectedRegion", 459 | "4154": "EnableProtectedRegion", 460 | "4158": "ImportGuides", 461 | "4159": "ExportGuides", 462 | "4208": "NextKeyframe", 463 | "4209": "EditExpression", 464 | "10200": "AllMemoryDiskCache", 465 | "10205": "AddToAMERenderQueue", 466 | "10207": "Bilinear", 467 | "10208": "Bicubic", 468 | "10305": "UserProfile", 469 | "10307": "UserProfile", 470 | "10310": "Copy", 471 | "10311": "TrackMask", 472 | "10312": "CenterAnchor", 473 | "10313": "Copy", 474 | "10314": "PlayPreview", 475 | "10420": "LicenseFootage", 476 | "10426": "KSV", 477 | "10450": "EnableExpressions", 478 | "10451": "DisableExpressions", 479 | "10502": "GenerateLayerMarkersFromAudioBeats", 480 | "10503": "GenerateLayerMarkersFromAudioEvents", 481 | "10504": "SyncPropertyToAudioBeats", 482 | "10512": "Default", 483 | "10550": "PlayPreview" 484 | } 485 | -------------------------------------------------------------------------------- /json/2023.json: -------------------------------------------------------------------------------- 1 | { 2 | "1": "Quit", 3 | "2": "NewProject", 4 | "3": "OpenProject", 5 | "4": "Close", 6 | "5": "Save", 7 | "6": "SaveAs", 8 | "7": "Revert", 9 | "16": "Undo", 10 | "18": "Cut", 11 | "19": "Copy", 12 | "20": "Paste", 13 | "21": "Clear", 14 | "23": "SelectAll", 15 | "53": "CopyExpressionOnly", 16 | "256": "AboutAfterEffects", 17 | "2000": "NewComposition", 18 | "2003": "File", 19 | "2004": "DeselectAll", 20 | "2005": "AddFootagetoComp", 21 | "2007": "CompositionSettings", 22 | "2008": "RenameLayer", 23 | "2012": "SetPosterTime", 24 | "2016": "MoveToTop", 25 | "2017": "MoveToBottom", 26 | "2018": "MoveUp", 27 | "2019": "MoveDown", 28 | "2020": "Transform", 29 | "2021": "LayerSettings", 30 | "2024": "TimeStretch", 31 | "2025": "PICT", 32 | "2035": "Redo", 33 | "2037": "Resolution", 34 | "2038": "Solid", 35 | "2040": "Mask", 36 | "2041": "Quality", 37 | "2042": "Wireframe", 38 | "2044": "Draft", 39 | "2045": "Best", 40 | "2046": "Quarter", 41 | "2047": "Half", 42 | "2048": "Full", 43 | "2049": "Custom", 44 | "2051": "FreeTransformPoints", 45 | "2052": "Inverted", 46 | "2053": "Switches", 47 | "2054": "HideOtherVideo", 48 | "2055": "ShowAllVideo", 49 | "2056": "Audio", 50 | "2059": "Video", 51 | "2062": "Effect", 52 | "2065": "Position", 53 | "2066": "Scale", 54 | "2068": "MaskShape", 55 | "2069": "MaskFeather", 56 | "2070": "Opacity", 57 | "2071": "Precompose", 58 | "2072": "RemoveAll", 59 | "2073": "About", 60 | "2076": "GotoTime", 61 | "2077": "Main", 62 | "2078": "File", 63 | "2079": "Preferences", 64 | "2080": "Duplicate", 65 | "2081": "Third", 66 | "2092": "ZoomIn", 67 | "2093": "ZoomOut", 68 | "2101": "1", 69 | "2102": "InterpretFootage", 70 | "2103": "Proxy", 71 | "2104": "File", 72 | "2105": "Import", 73 | "2106": "SetProxy", 74 | "2107": "ConsolidateAllFootage", 75 | "2109": "RemoveUnusedFootage", 76 | "2113": "Shy", 77 | "2114": "Lock", 78 | "2116": "MotionBlur", 79 | "2118": "File", 80 | "2119": "None", 81 | "2125": "SavePreview", 82 | "2131": "Preview", 83 | "2135": "TimeReverseLayer", 84 | "2139": "NewFolder", 85 | "2142": "EditOriginal", 86 | "2149": "RenderSettings", 87 | "2150": "OutputModule", 88 | "2153": "EnableTimeRemapping", 89 | "2154": "AddOutputModule", 90 | "2155": "Custom", 91 | "2156": "FittoComp", 92 | "2157": "AddMarker", 93 | "2158": "DuplicatePreserveFile", 94 | "2159": "KeyframeAssistant", 95 | "2160": "Collapse", 96 | "2161": "AddtoRenderQueue", 97 | "2162": "BlendingMode", 98 | "2163": "EffectControls", 99 | "2165": "AutoOrient", 100 | "2166": "SaveaCopy", 101 | "2167": "Normal", 102 | "2168": "Dissolve", 103 | "2169": "DancingDissolve", 104 | "2170": "Add", 105 | "2171": "Multiply", 106 | "2172": "Screen", 107 | "2173": "Overlay", 108 | "2174": "SoftLight", 109 | "2175": "HardLight", 110 | "2176": "ClassicColorDodge", 111 | "2177": "ClassicColorBurn", 112 | "2178": "Darken", 113 | "2179": "Lighten", 114 | "2180": "ClassicDifference", 115 | "2181": "Exclusion", 116 | "2182": "Hue", 117 | "2183": "Saturation", 118 | "2184": "Color", 119 | "2185": "Luminosity", 120 | "2186": "StencilAlpha", 121 | "2187": "StencilLuma", 122 | "2188": "SilhouetteAlpha", 123 | "2189": "SilhouetteLuma", 124 | "2190": "PreserveTransparency", 125 | "2191": "NoTrackMatte", 126 | "2192": "AlphaMatte", 127 | "2193": "AlphaInvertedMatte", 128 | "2194": "LumaMatte", 129 | "2195": "LumaInvertedMatte", 130 | "2197": "LuminescentPremul", 131 | "2198": "AlphaAdd", 132 | "2199": "Difference", 133 | "2200": "ColorDodge", 134 | "2201": "ColorBurn", 135 | "2202": "LinearDodge", 136 | "2203": "LinearBurn", 137 | "2204": "LinearLight", 138 | "2205": "VividLight", 139 | "2206": "PinLight", 140 | "2207": "HardMix", 141 | "2208": "LighterColor", 142 | "2209": "DarkerColor", 143 | "2210": "Subtract", 144 | "2211": "Divide", 145 | "2226": "ToggleHoldKeyframe", 146 | "2227": "KeyframeInterpolation", 147 | "2228": "KeyframeVelocity", 148 | "2233": "SaveFrameAs", 149 | "2236": "MultipleFiles", 150 | "2237": "ReplaceFootage", 151 | "2240": "EditValue", 152 | "2241": "KeyframeValue", 153 | "2244": "UnlockAllLayers", 154 | "2254": "RememberInterpretation", 155 | "2255": "ApplyInterpretation", 156 | "2257": "ReloadFootage", 157 | "2258": "CompFlowchartView", 158 | "2263": "AdjustmentLayer", 159 | "2264": "New", 160 | "2265": "Templates", 161 | "2269": "TrackMatte", 162 | "2274": "ShowGuides", 163 | "2275": "LockGuides", 164 | "2276": "ClearGuides", 165 | "2277": "ShowGrid", 166 | "2278": "SnaptoGrid", 167 | "2279": "AdjustmentLayer", 168 | "2280": "ShowRulers", 169 | "2283": "ImportRecentFootage", 170 | "2284": "OpenRecentProjects", 171 | "2286": "SnaptoGuides", 172 | "2289": "FrameBlending", 173 | "2290": "Off", 174 | "2291": "FrameMix", 175 | "2292": "PixelMotion", 176 | "2310": "RecentFootageList", 177 | "2330": "RecentProjectList", 178 | "2350": "None", 179 | "2358": "Label", 180 | "2359": "General", 181 | "2360": "TrimComptoWorkArea", 182 | "2361": "Display", 183 | "2362": "Import", 184 | "2363": "Output", 185 | "2364": "GridsGuides", 186 | "2365": "Labels", 187 | "2367": "NewMask", 188 | "2368": "RemoveMask", 189 | "2369": "RemoveAllMasks", 190 | "2370": "Purge", 191 | "2371": "Undo", 192 | "2372": "ImageCaches", 193 | "2373": "All", 194 | "2374": "Closed", 195 | "2387": "RevealPropertiesWithKeyframes", 196 | "2434": "Audio", 197 | "2435": "ShowLayerControls", 198 | "2436": "SelectLabelGroup", 199 | "2439": "DiskCaching", 200 | "2440": "Mode", 201 | "2441": "None", 202 | "2442": "Add", 203 | "2443": "Subtract", 204 | "2444": "Intersect", 205 | "2445": "Lighten", 206 | "2446": "Darken", 207 | "2447": "Difference", 208 | "2448": "ResetMask", 209 | "2450": "ApplyAnimationPreset", 210 | "2451": "RecentAnimationPresets", 211 | "2452": "LastEffect", 212 | "2453": "MaskOpacity", 213 | "2454": "Locked", 214 | "2455": "LockOtherMasks", 215 | "2456": "UnlockAllMasks", 216 | "2457": "WatchFolder", 217 | "2460": "RecentFavoritesList", 218 | "2481": "Snapshot", 219 | "2482": "CollectFiles", 220 | "2494": "Export", 221 | "2517": "RevealLayerSourceinProject", 222 | "2518": "AddKeyframe", 223 | "2519": "PreviousKeyframe", 224 | "2520": "NextKeyframe", 225 | "2521": "Reset", 226 | "2522": "RevealLayerinProjectFlowchartView", 227 | "2523": "OpenLayerSourceWindow", 228 | "2524": "HideLockedMasks", 229 | "2536": "RevealinTimeline", 230 | "2537": "DeleteThisMarker", 231 | "2538": "DeleteAllMarkers", 232 | "2539": "UpdateMarkersFromSource", 233 | "2541": "3DLayer", 234 | "2552": "AdobeDynamicLink", 235 | "2553": "NewPremiereProSequence", 236 | "2554": "ImportPremiereProSequence", 237 | "2557": "Shutter180Phase0", 238 | "2558": "Shutter360Phase0", 239 | "2559": "Shutter90Phase0", 240 | "2560": "Shutter180Phase180", 241 | "2561": "Shutter720Phase360", 242 | "2563": "Light", 243 | "2564": "Camera", 244 | "2565": "LockMarkers", 245 | "2566": "Solo", 246 | "2567": "Settings", 247 | "2568": "Track2DMotion", 248 | "2605": "Reset", 249 | "2606": "New", 250 | "2607": "Find", 251 | "2611": "ProjectSettings", 252 | "2613": "LiftWorkArea", 253 | "2614": "ExtractWorkArea", 254 | "2623": "Orientation", 255 | "2624": "Assign3DViewShortcut", 256 | "2625": "Switch3DView", 257 | "2626": "A", 258 | "2627": "B", 259 | "2628": "C", 260 | "2641": "EditValue", 261 | "2642": "Reset3DView", 262 | "2643": "TrackthisProperty", 263 | "2644": "EditProperties", 264 | "2645": "CreateCameraFrom3DView", 265 | "2647": "Reset3DView", 266 | "2648": "Reset3DView", 267 | "2649": "CreateCameraFrom3DView", 268 | "2650": "SwitchViewLayout", 269 | "2691": "1Up", 270 | "2692": "2Up", 271 | "2693": "3Up", 272 | "2699": "ShareViewOptions", 273 | "2701": "SetKeyframe", 274 | "2702": "AddExpression", 275 | "2703": "SwitchtoLast3DView", 276 | "2704": "VideoPreview", 277 | "2705": "Previews", 278 | "2710": "ActiveCamera", 279 | "2711": "Front", 280 | "2712": "Left", 281 | "2713": "Top", 282 | "2714": "Back", 283 | "2715": "Right", 284 | "2716": "Bottom", 285 | "2717": "CustomView1", 286 | "2718": "CustomView2", 287 | "2719": "CustomView3", 288 | "2731": "RevealExpressionErrors", 289 | "2732": "FittoCompWidth", 290 | "2733": "FittoCompHeight", 291 | "2735": "ReduceProject", 292 | "2736": "MaskExpansion", 293 | "2738": "Workspace", 294 | "2739": "SaveWorkspace", 295 | "2767": "NullObject", 296 | "2768": "SetFirstVertex", 297 | "2769": "Custom", 298 | "2771": "RevealAllModifiedProperties", 299 | "2776": "ViewOptions", 300 | "2777": "CreateProxy", 301 | "2778": "Still", 302 | "2779": "Movie", 303 | "2780": "Prerender", 304 | "2781": "NextBlendingMode", 305 | "2782": "PreviousBlendingMode", 306 | "2792": "Rotation", 307 | "2797": "MotionBlur", 308 | "2798": "SameAsLayer", 309 | "2799": "On", 310 | "2800": "Off", 311 | "2824": "OneCompView", 312 | "2825": "TwoCompViews", 313 | "2826": "FourCompViews", 314 | "2834": "LookatSelectedLayers", 315 | "2835": "LookatAllLayers", 316 | "2836": "Text", 317 | "2933": "CreateOutlineMasks", 318 | "2934": "SelectEqualKeyframes", 319 | "2995": "History", 320 | "2997": "CropComptoRegionofInterest", 321 | "3013": "ShowTextPanels", 322 | "3016": "Property", 323 | "3017": "Selector", 324 | "3018": "DeleteBrush", 325 | "3019": "AnchorPoint", 326 | "3020": "Position", 327 | "3021": "Scale", 328 | "3022": "Skew", 329 | "3023": "Rotation", 330 | "3024": "StrokeWidth", 331 | "3025": "Tracking", 332 | "3026": "LineAnchor", 333 | "3027": "CharacterOffset", 334 | "3028": "CharacterValue", 335 | "3029": "RGB", 336 | "3030": "Hue", 337 | "3031": "Saturation", 338 | "3032": "Brightness", 339 | "3033": "Opacity", 340 | "3034": "RGB", 341 | "3035": "Hue", 342 | "3036": "Saturation", 343 | "3037": "Brightness", 344 | "3038": "Opacity", 345 | "3039": "FillColor", 346 | "3040": "StrokeColor", 347 | "3041": "Wiggly", 348 | "3042": "Opacity", 349 | "3043": "LineSpacing", 350 | "3044": "Autotrace", 351 | "3052": "AllTransformProperties", 352 | "3053": "RotoBezier", 353 | "3058": "RemoveAllTextAnimators", 354 | "3063": "Expression", 355 | "3064": "ConvertShape", 356 | "3065": "Horizontal", 357 | "3066": "Vertical", 358 | "3070": "WithLayeredComp", 359 | "3071": "UserInterfaceColors", 360 | "3072": "SelectPreviousKeyframes", 361 | "3073": "SelectFollowingKeyframes", 362 | "3075": "SaveAnimationPreset", 363 | "3081": "GuideLayer", 364 | "3088": "IncrementandSave", 365 | "3122": "AutoSave", 366 | "3124": "MemoryMultiprocessing", 367 | "3125": "AudioHardware", 368 | "3126": "AudioOutputMapping", 369 | "3129": "NewProject", 370 | "3130": "Type", 371 | "3131": "ScriptsExpressions", 372 | "3132": "Camera3D", 373 | "3133": "Notifications", 374 | "3147": "AdobePhotoshopFile", 375 | "3148": "AdobePhotoshopFile", 376 | "3153": "RoveAcrossTime", 377 | "3154": "CloseProject", 378 | "3155": "Time", 379 | "3565": "NewWorkspace", 380 | "3566": "ResetWorkspace", 381 | "3689": "Browse", 382 | "3690": "RevealinBridge", 383 | "3691": "BrowsePresets", 384 | "3695": "FreezeFrame", 385 | "3696": "RevealCompInPW", 386 | "3697": "EditinAdobeAudition", 387 | "3698": "Blur", 388 | "3700": "NewViewer", 389 | "3703": "SimulateOutput", 390 | "3704": "UseDisplayColorManagement", 391 | "3705": "NoOutputSimulation", 392 | "3706": "Kodak5218toKodak2383", 393 | "3707": "AssignWorkspaceShortcut", 394 | "3708": "A", 395 | "3709": "B", 396 | "3710": "C", 397 | "3734": "OpenEffectControls", 398 | "3736": "ShapeLayer", 399 | "3737": "EnablePercharacter3D", 400 | "3739": "LayerStyles", 401 | "3745": "MaskandShapePath", 402 | "3754": "HDTVRec709", 403 | "3755": "SDTVNTSC", 404 | "3756": "SDTVPAL", 405 | "3757": "MacintoshRGB", 406 | "3758": "WindowsRGB", 407 | "3759": "MyCustomRGB", 408 | "3760": "Custom", 409 | "3764": "SeparateDimensions", 410 | "3766": "FlipHorizontal", 411 | "3767": "FlipVertical", 412 | "3781": "CreateOutlineShape", 413 | "3784": "OpenLayerWindow", 414 | "3785": "SaveAsXML", 415 | "3791": "UpgradeProjectPARsToCS4", 416 | "3792": "OpenMiniFlowPopup", 417 | "3798": "Arrange", 418 | "3799": "ConvertToEditable", 419 | "3800": "AddToAMERenderQueue", 420 | "3814": "UCFtoKodak2383", 421 | "3819": "CenterInView", 422 | "3840": "SaveAs", 423 | "3842": "Camera", 424 | "3972": "EnvironLayer", 425 | "3973": "CreateFootageOutlines", 426 | "3983": "Track3DCameraMotion", 427 | "3984": "AddtoRenderQueue", 428 | "3986": "WarpStabilizer", 429 | "3987": "FeatherFalloff", 430 | "3988": "Smooth", 431 | "3989": "Linear", 432 | "3991": "FeatherHold", 433 | "3992": "FeatherEditTension", 434 | "3993": "FeatherEditExtent", 435 | "3999": "GoToKeyframeTime", 436 | "4008": "Cinema4DFile", 437 | "4011": "RevealPropertiesWithAnimation", 438 | "4015": "EnableAutoStopwatch", 439 | "4016": "Extensions", 440 | "4017": "AddFontsFromAdobe", 441 | "4018": "FindExtensions", 442 | "4022": "ImportCCLibraries", 443 | "4023": "EditWorkspace", 444 | "4027": "FreezeOnLastFrame", 445 | "4036": "CreateDataFootageLayerKeyframes", 446 | "4042": "AddPropToCapsules", 447 | "4043": "Reveal", 448 | "4044": "Create", 449 | "4045": "TrackAndStabilize", 450 | "4046": "Open", 451 | "4049": "CAFillLayer", 452 | "4150": "TaffyTimeHeir", 453 | "4151": "CreateIntro", 454 | "4152": "CreateOutro", 455 | "4153": "CreateProtectedRegion", 456 | "4154": "EnableProtectedRegion", 457 | "4158": "ImportGuides", 458 | "4159": "ExportGuides", 459 | "4208": "NextKeyframe", 460 | "4209": "EditExpression", 461 | "4220": "KeyframeSelectLabelGroup", 462 | "4221": "OnSelectedLayers", 463 | "4222": "OnAllLayers", 464 | "10200": "AllMemoryDiskCache", 465 | "10205": "AddToAMERenderQueue", 466 | "10207": "Bilinear", 467 | "10208": "Bicubic", 468 | "10305": "UserProfile", 469 | "10307": "UserProfile", 470 | "10310": "Copy", 471 | "10311": "TrackMask", 472 | "10312": "CenterAnchor", 473 | "10313": "Copy", 474 | "10314": "PlayPreview", 475 | "10420": "LicenseFootage", 476 | "10426": "KSV", 477 | "10450": "EnableExpressions", 478 | "10451": "DisableExpressions", 479 | "10502": "GenerateLayerMarkersFromAudioBeats", 480 | "10503": "GenerateLayerMarkersFromAudioEvents", 481 | "10504": "SyncPropertyToAudioBeats", 482 | "10512": "Default", 483 | "10550": "PlayPreview" 484 | } 485 | -------------------------------------------------------------------------------- /json/2024.json: -------------------------------------------------------------------------------- 1 | { 2 | "1": "Quit", 3 | "2": "NewProject", 4 | "3": "OpenProject", 5 | "4": "Close", 6 | "5": "Save", 7 | "6": "SaveAs", 8 | "7": "Revert", 9 | "16": "Undo", 10 | "18": "Cut", 11 | "19": "Copy", 12 | "20": "Paste", 13 | "21": "Clear", 14 | "23": "SelectAll", 15 | "53": "CopyExpressionOnly", 16 | "256": "AboutAfterEffects", 17 | "2000": "NewComposition", 18 | "2003": "File", 19 | "2004": "DeselectAll", 20 | "2005": "AddFootagetoComp", 21 | "2007": "CompositionSettings", 22 | "2008": "RenameLayer", 23 | "2012": "SetPosterTime", 24 | "2016": "MoveToTop", 25 | "2017": "MoveToBottom", 26 | "2018": "MoveUp", 27 | "2019": "MoveDown", 28 | "2020": "Transform", 29 | "2021": "LayerSettings", 30 | "2024": "TimeStretch", 31 | "2025": "PICT", 32 | "2035": "Redo", 33 | "2037": "Resolution", 34 | "2038": "Solid", 35 | "2040": "Mask", 36 | "2041": "Quality", 37 | "2042": "Wireframe", 38 | "2044": "Draft", 39 | "2045": "Best", 40 | "2046": "Quarter", 41 | "2047": "Half", 42 | "2048": "Full", 43 | "2049": "Custom", 44 | "2051": "FreeTransformPoints", 45 | "2052": "Inverted", 46 | "2053": "Switches", 47 | "2054": "HideOtherVideo", 48 | "2055": "ShowAllVideo", 49 | "2056": "Audio", 50 | "2059": "Video", 51 | "2062": "Effect", 52 | "2065": "Position", 53 | "2066": "Scale", 54 | "2068": "MaskShape", 55 | "2069": "MaskFeather", 56 | "2070": "Opacity", 57 | "2071": "Precompose", 58 | "2072": "RemoveAll", 59 | "2073": "About", 60 | "2076": "GotoTime", 61 | "2077": "Main", 62 | "2078": "File", 63 | "2079": "Preferences", 64 | "2080": "Duplicate", 65 | "2081": "Third", 66 | "2092": "ZoomIn", 67 | "2093": "ZoomOut", 68 | "2101": "1", 69 | "2102": "InterpretFootage", 70 | "2103": "Proxy", 71 | "2104": "File", 72 | "2105": "Import", 73 | "2106": "SetProxy", 74 | "2107": "ConsolidateAllFootage", 75 | "2109": "RemoveUnusedFootage", 76 | "2113": "Shy", 77 | "2114": "Lock", 78 | "2116": "MotionBlur", 79 | "2118": "File", 80 | "2119": "None", 81 | "2125": "SavePreview", 82 | "2131": "Preview", 83 | "2135": "TimeReverseLayer", 84 | "2139": "NewFolder", 85 | "2142": "EditOriginal", 86 | "2149": "RenderSettings", 87 | "2150": "OutputModule", 88 | "2153": "EnableTimeRemapping", 89 | "2154": "AddOutputModule", 90 | "2155": "Custom", 91 | "2156": "FittoComp", 92 | "2157": "AddMarker", 93 | "2158": "DuplicatePreserveFile", 94 | "2159": "KeyframeAssistant", 95 | "2160": "Collapse", 96 | "2161": "AddtoRenderQueue", 97 | "2162": "BlendingMode", 98 | "2163": "EffectControls", 99 | "2165": "AutoOrient", 100 | "2166": "SaveaCopy", 101 | "2167": "Normal", 102 | "2168": "Dissolve", 103 | "2169": "DancingDissolve", 104 | "2170": "Add", 105 | "2171": "Multiply", 106 | "2172": "Screen", 107 | "2173": "Overlay", 108 | "2174": "SoftLight", 109 | "2175": "HardLight", 110 | "2176": "ClassicColorDodge", 111 | "2177": "ClassicColorBurn", 112 | "2178": "Darken", 113 | "2179": "Lighten", 114 | "2180": "ClassicDifference", 115 | "2181": "Exclusion", 116 | "2182": "Hue", 117 | "2183": "Saturation", 118 | "2184": "Color", 119 | "2185": "Luminosity", 120 | "2186": "StencilAlpha", 121 | "2187": "StencilLuma", 122 | "2188": "SilhouetteAlpha", 123 | "2189": "SilhouetteLuma", 124 | "2190": "PreserveTransparency", 125 | "2191": "NoTrackMatte", 126 | "2192": "AlphaMatte", 127 | "2193": "AlphaInvertedMatte", 128 | "2194": "LumaMatte", 129 | "2195": "LumaInvertedMatte", 130 | "2197": "LuminescentPremul", 131 | "2198": "AlphaAdd", 132 | "2199": "Difference", 133 | "2200": "ColorDodge", 134 | "2201": "ColorBurn", 135 | "2202": "LinearDodge", 136 | "2203": "LinearBurn", 137 | "2204": "LinearLight", 138 | "2205": "VividLight", 139 | "2206": "PinLight", 140 | "2207": "HardMix", 141 | "2208": "LighterColor", 142 | "2209": "DarkerColor", 143 | "2210": "Subtract", 144 | "2211": "Divide", 145 | "2226": "ToggleHoldKeyframe", 146 | "2227": "KeyframeInterpolation", 147 | "2228": "KeyframeVelocity", 148 | "2233": "SaveFrameAs", 149 | "2236": "MultipleFiles", 150 | "2237": "ReplaceFootage", 151 | "2240": "EditValue", 152 | "2241": "KeyframeValue", 153 | "2244": "UnlockAllLayers", 154 | "2254": "RememberInterpretation", 155 | "2255": "ApplyInterpretation", 156 | "2257": "ReloadFootage", 157 | "2258": "CompFlowchartView", 158 | "2263": "AdjustmentLayer", 159 | "2264": "New", 160 | "2265": "Templates", 161 | "2269": "TrackMatte", 162 | "2274": "ShowGuides", 163 | "2275": "LockGuides", 164 | "2276": "ClearGuides", 165 | "2277": "ShowGrid", 166 | "2278": "SnaptoGrid", 167 | "2279": "AdjustmentLayer", 168 | "2280": "ShowRulers", 169 | "2283": "ImportRecentFootage", 170 | "2284": "OpenRecentProjects", 171 | "2286": "SnaptoGuides", 172 | "2289": "FrameBlending", 173 | "2290": "Off", 174 | "2291": "FrameMix", 175 | "2292": "PixelMotion", 176 | "2310": "RecentFootageList", 177 | "2330": "RecentProjectList", 178 | "2350": "None", 179 | "2358": "Label", 180 | "2359": "General", 181 | "2360": "TrimComptoWorkArea", 182 | "2361": "Display", 183 | "2362": "Import", 184 | "2363": "Output", 185 | "2364": "GridsGuides", 186 | "2365": "Labels", 187 | "2367": "NewMask", 188 | "2368": "RemoveMask", 189 | "2369": "RemoveAllMasks", 190 | "2370": "Purge", 191 | "2371": "Undo", 192 | "2372": "ImageCaches", 193 | "2373": "All", 194 | "2374": "Closed", 195 | "2387": "RevealPropertiesWithKeyframes", 196 | "2434": "Audio", 197 | "2435": "ShowLayerControls", 198 | "2436": "SelectLabelGroup", 199 | "2439": "DiskCaching", 200 | "2440": "Mode", 201 | "2441": "None", 202 | "2442": "Add", 203 | "2443": "Subtract", 204 | "2444": "Intersect", 205 | "2445": "Lighten", 206 | "2446": "Darken", 207 | "2447": "Difference", 208 | "2448": "ResetMask", 209 | "2450": "ApplyAnimationPreset", 210 | "2451": "RecentAnimationPresets", 211 | "2452": "LastEffect", 212 | "2453": "MaskOpacity", 213 | "2454": "Locked", 214 | "2455": "LockOtherMasks", 215 | "2456": "UnlockAllMasks", 216 | "2457": "WatchFolder", 217 | "2460": "RecentFavoritesList", 218 | "2481": "Snapshot", 219 | "2482": "CollectFiles", 220 | "2494": "Export", 221 | "2517": "RevealLayerSourceinProject", 222 | "2518": "AddKeyframe", 223 | "2519": "PreviousKeyframe", 224 | "2520": "NextKeyframe", 225 | "2521": "Reset", 226 | "2522": "RevealLayerinProjectFlowchartView", 227 | "2523": "OpenLayerSourceWindow", 228 | "2524": "HideLockedMasks", 229 | "2536": "RevealinTimeline", 230 | "2537": "DeleteThisMarker", 231 | "2538": "DeleteAllMarkers", 232 | "2539": "UpdateMarkersFromSource", 233 | "2541": "3DLayer", 234 | "2552": "AdobeDynamicLink", 235 | "2553": "NewPremiereProSequence", 236 | "2554": "ImportPremiereProSequence", 237 | "2557": "Shutter180Phase0", 238 | "2558": "Shutter360Phase0", 239 | "2559": "Shutter90Phase0", 240 | "2560": "Shutter180Phase180", 241 | "2561": "Shutter720Phase360", 242 | "2563": "Light", 243 | "2564": "Camera", 244 | "2565": "LockMarkers", 245 | "2566": "Solo", 246 | "2567": "Settings", 247 | "2568": "Track2DMotion", 248 | "2605": "Reset", 249 | "2606": "New", 250 | "2607": "Find", 251 | "2611": "ProjectSettings", 252 | "2613": "LiftWorkArea", 253 | "2614": "ExtractWorkArea", 254 | "2623": "Orientation", 255 | "2624": "Assign3DViewShortcut", 256 | "2625": "Switch3DView", 257 | "2626": "A", 258 | "2627": "B", 259 | "2628": "C", 260 | "2641": "EditValue", 261 | "2642": "Reset3DView", 262 | "2643": "TrackthisProperty", 263 | "2644": "EditProperties", 264 | "2645": "CreateCameraFrom3DView", 265 | "2647": "Reset3DView", 266 | "2648": "Reset3DView", 267 | "2649": "CreateCameraFrom3DView", 268 | "2650": "SwitchViewLayout", 269 | "2691": "1Up", 270 | "2692": "2Up", 271 | "2693": "3Up", 272 | "2699": "ShareViewOptions", 273 | "2701": "SetKeyframe", 274 | "2702": "AddExpression", 275 | "2703": "SwitchtoLast3DView", 276 | "2704": "VideoPreview", 277 | "2705": "Previews", 278 | "2710": "ActiveCamera", 279 | "2711": "Front", 280 | "2712": "Left", 281 | "2713": "Top", 282 | "2714": "Back", 283 | "2715": "Right", 284 | "2716": "Bottom", 285 | "2717": "CustomView1", 286 | "2718": "CustomView2", 287 | "2719": "CustomView3", 288 | "2731": "RevealExpressionErrors", 289 | "2732": "FittoCompWidth", 290 | "2733": "FittoCompHeight", 291 | "2735": "ReduceProject", 292 | "2736": "MaskExpansion", 293 | "2738": "Workspace", 294 | "2739": "SaveWorkspace", 295 | "2767": "NullObject", 296 | "2768": "SetFirstVertex", 297 | "2769": "Custom", 298 | "2771": "RevealAllModifiedProperties", 299 | "2776": "ViewOptions", 300 | "2777": "CreateProxy", 301 | "2778": "Still", 302 | "2779": "Movie", 303 | "2780": "Prerender", 304 | "2781": "NextBlendingMode", 305 | "2782": "PreviousBlendingMode", 306 | "2792": "Rotation", 307 | "2797": "MotionBlur", 308 | "2798": "SameAsLayer", 309 | "2799": "On", 310 | "2800": "Off", 311 | "2824": "OneCompView", 312 | "2825": "TwoCompViews", 313 | "2826": "FourCompViews", 314 | "2834": "LookatSelectedLayers", 315 | "2835": "LookatAllLayers", 316 | "2836": "Text", 317 | "2933": "CreateOutlineMasks", 318 | "2934": "SelectEqualKeyframes", 319 | "2995": "History", 320 | "2997": "CropComptoRegionofInterest", 321 | "3013": "ShowTextPanels", 322 | "3016": "Property", 323 | "3017": "Selector", 324 | "3018": "DeleteBrush", 325 | "3019": "AnchorPoint", 326 | "3020": "Position", 327 | "3021": "Scale", 328 | "3022": "Skew", 329 | "3023": "Rotation", 330 | "3024": "StrokeWidth", 331 | "3025": "Tracking", 332 | "3026": "LineAnchor", 333 | "3027": "CharacterOffset", 334 | "3028": "CharacterValue", 335 | "3029": "RGB", 336 | "3030": "Hue", 337 | "3031": "Saturation", 338 | "3032": "Brightness", 339 | "3033": "Opacity", 340 | "3034": "RGB", 341 | "3035": "Hue", 342 | "3036": "Saturation", 343 | "3037": "Brightness", 344 | "3038": "Opacity", 345 | "3039": "FillColor", 346 | "3040": "StrokeColor", 347 | "3041": "Wiggly", 348 | "3042": "Opacity", 349 | "3043": "LineSpacing", 350 | "3044": "Autotrace", 351 | "3052": "AllTransformProperties", 352 | "3053": "RotoBezier", 353 | "3058": "RemoveAllTextAnimators", 354 | "3063": "Expression", 355 | "3064": "ConvertShape", 356 | "3065": "Horizontal", 357 | "3066": "Vertical", 358 | "3070": "WithLayeredComp", 359 | "3071": "UserInterfaceColors", 360 | "3072": "SelectPreviousKeyframes", 361 | "3073": "SelectFollowingKeyframes", 362 | "3075": "SaveAnimationPreset", 363 | "3081": "GuideLayer", 364 | "3088": "IncrementandSave", 365 | "3122": "AutoSave", 366 | "3124": "MemoryMultiprocessing", 367 | "3125": "AudioHardware", 368 | "3126": "AudioOutputMapping", 369 | "3129": "NewProject", 370 | "3130": "Type", 371 | "3131": "ScriptsExpressions", 372 | "3132": "Camera3D", 373 | "3133": "Notifications", 374 | "3134": "StartupAndRepair", 375 | "3147": "AdobePhotoshopFile", 376 | "3148": "AdobePhotoshopFile", 377 | "3153": "RoveAcrossTime", 378 | "3154": "CloseProject", 379 | "3155": "Time", 380 | "3565": "NewWorkspace", 381 | "3566": "ResetWorkspace", 382 | "3689": "Browse", 383 | "3690": "RevealinBridge", 384 | "3691": "BrowsePresets", 385 | "3695": "FreezeFrame", 386 | "3696": "RevealCompInPW", 387 | "3697": "EditinAdobeAudition", 388 | "3698": "Blur", 389 | "3700": "NewViewer", 390 | "3703": "SimulateOutput", 391 | "3704": "UseDisplayColorManagement", 392 | "3705": "NoOutputSimulation", 393 | "3706": "Kodak5218toKodak2383", 394 | "3707": "AssignWorkspaceShortcut", 395 | "3708": "A", 396 | "3709": "B", 397 | "3710": "C", 398 | "3734": "OpenEffectControls", 399 | "3736": "ShapeLayer", 400 | "3737": "EnablePercharacter3D", 401 | "3739": "LayerStyles", 402 | "3745": "MaskandShapePath", 403 | "3754": "HDTVRec709", 404 | "3755": "SDTVNTSC", 405 | "3756": "SDTVPAL", 406 | "3757": "MacintoshRGB", 407 | "3758": "WindowsRGB", 408 | "3759": "MyCustomRGB", 409 | "3760": "Custom", 410 | "3764": "SeparateDimensions", 411 | "3766": "FlipHorizontal", 412 | "3767": "FlipVertical", 413 | "3781": "CreateOutlineShape", 414 | "3784": "OpenLayerWindow", 415 | "3785": "SaveAsXML", 416 | "3791": "UpgradeProjectPARsToCS4", 417 | "3792": "OpenMiniFlowPopup", 418 | "3798": "Arrange", 419 | "3799": "ConvertToEditable", 420 | "3800": "AddToAMERenderQueue", 421 | "3814": "UCFtoKodak2383", 422 | "3819": "CenterInView", 423 | "3840": "SaveAs", 424 | "3842": "Camera", 425 | "3972": "EnvironLayer", 426 | "3973": "CreateFootageOutlines", 427 | "3983": "Track3DCameraMotion", 428 | "3984": "AddtoRenderQueue", 429 | "3986": "WarpStabilizer", 430 | "3987": "FeatherFalloff", 431 | "3988": "Smooth", 432 | "3989": "Linear", 433 | "3991": "FeatherHold", 434 | "3992": "FeatherEditTension", 435 | "3993": "FeatherEditExtent", 436 | "3999": "GoToKeyframeTime", 437 | "4008": "Cinema4DFile", 438 | "4011": "RevealPropertiesWithAnimation", 439 | "4015": "EnableAutoStopwatch", 440 | "4016": "Extensions", 441 | "4017": "AddFontsFromAdobe", 442 | "4018": "FindExtensions", 443 | "4022": "ImportCCLibraries", 444 | "4023": "EditWorkspace", 445 | "4027": "FreezeOnLastFrame", 446 | "4036": "CreateDataFootageLayerKeyframes", 447 | "4042": "AddPropToCapsules", 448 | "4043": "Reveal", 449 | "4044": "Create", 450 | "4045": "TrackAndStabilize", 451 | "4046": "Open", 452 | "4049": "CAFillLayer", 453 | "4150": "TaffyTimeHeir", 454 | "4151": "CreateIntro", 455 | "4152": "CreateOutro", 456 | "4153": "CreateProtectedRegion", 457 | "4154": "EnableProtectedRegion", 458 | "4158": "ImportGuides", 459 | "4159": "ExportGuides", 460 | "4208": "NextKeyframe", 461 | "4209": "EditExpression", 462 | "4220": "KeyframeSelectLabelGroup", 463 | "4221": "OnSelectedLayers", 464 | "4222": "OnAllLayers", 465 | "4227": "EffectManager", 466 | "4229": "SetTypeAlphaMatte", 467 | "4230": "SetTypeAlphaInvertedMatte", 468 | "4231": "SetTypeLumaMatte", 469 | "4232": "SetTypeLumaInvertedMatte", 470 | "4233": "TrackMatteAbove", 471 | "4234": "TrackMatteBelow", 472 | "4235": "AlphaMatteBelow", 473 | "4236": "AlphaInvertedMatteBelow", 474 | "4237": "LumaMatteBelow", 475 | "4238": "LumaInvertedMatteBelow", 476 | "10200": "AllMemoryDiskCache", 477 | "10205": "AddToAMERenderQueue", 478 | "10207": "Bilinear", 479 | "10208": "Bicubic", 480 | "10305": "UserProfile", 481 | "10307": "UserProfile", 482 | "10310": "Copy", 483 | "10311": "TrackMask", 484 | "10312": "CenterAnchor", 485 | "10313": "Copy", 486 | "10314": "PlayPreview", 487 | "10420": "LicenseFootage", 488 | "10426": "KSV", 489 | "10450": "EnableExpressions", 490 | "10451": "DisableExpressions", 491 | "10502": "GenerateLayerMarkersFromAudioBeats", 492 | "10503": "GenerateLayerMarkersFromAudioEvents", 493 | "10504": "SyncPropertyToAudioBeats", 494 | "10512": "Default", 495 | "10550": "PlayPreview", 496 | "10700": "AllDiskCache", 497 | "10701": "All3DCache", 498 | "10702": "AllCache" 499 | } -------------------------------------------------------------------------------- /json/2025.json: -------------------------------------------------------------------------------- 1 | { 2 | "1": "Quit", 3 | "2": "NewProject", 4 | "3": "OpenProject", 5 | "4": "Close", 6 | "5": "Save", 7 | "6": "SaveAs", 8 | "7": "Revert", 9 | "16": "Undo", 10 | "18": "Cut", 11 | "19": "Copy", 12 | "20": "Paste", 13 | "21": "Clear", 14 | "23": "SelectAll", 15 | "53": "CopyExpressionOnly", 16 | "54": "PasteReverseKeyframes", 17 | "256": "AboutAfterEffects", 18 | "2000": "NewComposition", 19 | "2003": "File", 20 | "2004": "DeselectAll", 21 | "2005": "AddFootagetoComp", 22 | "2007": "CompositionSettings", 23 | "2008": "RenameLayer", 24 | "2010": "Tools", 25 | "2012": "SetPosterTime", 26 | "2016": "MoveToTop", 27 | "2017": "MoveToBottom", 28 | "2018": "MoveUp", 29 | "2019": "MoveDown", 30 | "2020": "Transform", 31 | "2021": "LayerSettings", 32 | "2024": "TimeStretch", 33 | "2025": "PICT", 34 | "2028": "Info", 35 | "2035": "Redo", 36 | "2037": "Resolution", 37 | "2038": "Solid", 38 | "2040": "Mask", 39 | "2041": "Quality", 40 | "2042": "Wireframe", 41 | "2044": "Draft", 42 | "2045": "Best", 43 | "2046": "Quarter", 44 | "2047": "Half", 45 | "2048": "Full", 46 | "2049": "Custom", 47 | "2051": "FreeTransformPoints", 48 | "2052": "Inverted", 49 | "2053": "Switches", 50 | "2054": "HideOtherVideo", 51 | "2055": "ShowAllVideo", 52 | "2056": "Audio", 53 | "2059": "Video", 54 | "2062": "Effect", 55 | "2065": "Position", 56 | "2066": "Scale", 57 | "2068": "MaskShape", 58 | "2069": "MaskFeather", 59 | "2070": "Opacity", 60 | "2071": "Precompose", 61 | "2072": "RemoveAll", 62 | "2073": "About", 63 | "2076": "GotoTime", 64 | "2077": "Main", 65 | "2078": "File", 66 | "2079": "Preferences", 67 | "2080": "Duplicate", 68 | "2081": "Third", 69 | "2092": "ZoomIn", 70 | "2093": "ZoomOut", 71 | "2101": "1", 72 | "2102": "InterpretFootage", 73 | "2103": "Proxy", 74 | "2104": "File", 75 | "2105": "Import", 76 | "2106": "SetProxy", 77 | "2107": "ConsolidateAllFootage", 78 | "2109": "RemoveUnusedFootage", 79 | "2113": "Shy", 80 | "2114": "Lock", 81 | "2116": "MotionBlur", 82 | "2118": "File", 83 | "2119": "None", 84 | "2125": "SavePreview", 85 | "2126": "Placeholder...", 86 | "2131": "Preview", 87 | "2135": "TimeReverseLayer", 88 | "2139": "NewFolder", 89 | "2142": "EditOriginal", 90 | "2149": "RenderSettings", 91 | "2150": "OutputModule", 92 | "2153": "EnableTimeRemapping", 93 | "2154": "AddOutputModule", 94 | "2155": "Custom", 95 | "2156": "FittoComp", 96 | "2157": "AddMarker", 97 | "2158": "DuplicatePreserveFile", 98 | "2159": "KeyframeAssistant", 99 | "2160": "Collapse", 100 | "2161": "AddtoRenderQueue", 101 | "2162": "BlendingMode", 102 | "2163": "EffectControls", 103 | "2165": "AutoOrient", 104 | "2166": "SaveaCopy", 105 | "2167": "Normal", 106 | "2168": "Dissolve", 107 | "2169": "DancingDissolve", 108 | "2170": "Add", 109 | "2171": "Multiply", 110 | "2172": "Screen", 111 | "2173": "Overlay", 112 | "2174": "SoftLight", 113 | "2175": "HardLight", 114 | "2176": "ClassicColorDodge", 115 | "2177": "ClassicColorBurn", 116 | "2178": "Darken", 117 | "2179": "Lighten", 118 | "2180": "ClassicDifference", 119 | "2181": "Exclusion", 120 | "2182": "Hue", 121 | "2183": "Saturation", 122 | "2184": "Color", 123 | "2185": "Luminosity", 124 | "2186": "StencilAlpha", 125 | "2187": "StencilLuma", 126 | "2188": "SilhouetteAlpha", 127 | "2189": "SilhouetteLuma", 128 | "2190": "PreserveTransparency", 129 | "2191": "NoTrackMatte", 130 | "2192": "AlphaMatte", 131 | "2193": "AlphaInvertedMatte", 132 | "2194": "LumaMatte", 133 | "2195": "LumaInvertedMatte", 134 | "2197": "LuminescentPremul", 135 | "2198": "AlphaAdd", 136 | "2199": "Difference", 137 | "2200": "ColorDodge", 138 | "2201": "ColorBurn", 139 | "2202": "LinearDodge", 140 | "2203": "LinearBurn", 141 | "2204": "LinearLight", 142 | "2205": "VividLight", 143 | "2206": "PinLight", 144 | "2207": "HardMix", 145 | "2208": "LighterColor", 146 | "2209": "DarkerColor", 147 | "2210": "Subtract", 148 | "2211": "Divide", 149 | "2226": "ToggleHoldKeyframe", 150 | "2227": "KeyframeInterpolation", 151 | "2228": "KeyframeVelocity", 152 | "2233": "SaveFrameAs", 153 | "2236": "MultipleFiles", 154 | "2237": "ReplaceFootage", 155 | "2240": "EditValue", 156 | "2241": "KeyframeValue", 157 | "2244": "UnlockAllLayers", 158 | "2254": "RememberInterpretation", 159 | "2255": "ApplyInterpretation", 160 | "2257": "ReloadFootage", 161 | "2258": "CompFlowchartView", 162 | "2263": "AdjustmentLayer", 163 | "2264": "New", 164 | "2265": "Templates", 165 | "2269": "TrackMatte", 166 | "2274": "ShowGuides", 167 | "2275": "LockGuides", 168 | "2276": "ClearGuides", 169 | "2277": "ShowGrid", 170 | "2278": "SnaptoGrid", 171 | "2279": "AdjustmentLayer", 172 | "2280": "ShowRulers", 173 | "2283": "ImportRecentFootage", 174 | "2284": "OpenRecentProjects", 175 | "2286": "SnaptoGuides", 176 | "2289": "FrameBlending", 177 | "2290": "Off", 178 | "2291": "FrameMix", 179 | "2292": "PixelMotion", 180 | "2310": "RecentFootageList", 181 | "2330": "RecentProjectList", 182 | "2350": "None", 183 | "2351": "Red", 184 | "2352": "Yellow", 185 | "2353": "Aqua", 186 | "2354": "Pink", 187 | "2355": "Lavender", 188 | "2356": "Peach", 189 | "2357": "Sea Foam", 190 | "2358": "Label", 191 | "2359": "General", 192 | "2360": "TrimComptoWorkArea", 193 | "2361": "Display", 194 | "2362": "Import", 195 | "2363": "Output", 196 | "2364": "GridsGuides", 197 | "2365": "Labels", 198 | "2367": "NewMask", 199 | "2368": "RemoveMask", 200 | "2369": "RemoveAllMasks", 201 | "2370": "Purge", 202 | "2371": "Undo", 203 | "2372": "ImageCaches", 204 | "2373": "All", 205 | "2374": "Closed", 206 | "2387": "RevealPropertiesWithKeyframes", 207 | "2434": "Audio", 208 | "2435": "ShowLayerControls", 209 | "2436": "SelectLabelGroup", 210 | "2439": "DiskCaching", 211 | "2440": "Mode", 212 | "2441": "None", 213 | "2442": "Add", 214 | "2443": "Subtract", 215 | "2444": "Intersect", 216 | "2445": "Lighten", 217 | "2446": "Darken", 218 | "2447": "Difference", 219 | "2448": "ResetMask", 220 | "2450": "ApplyAnimationPreset", 221 | "2451": "RecentAnimationPresets", 222 | "2452": "LastEffect", 223 | "2453": "MaskOpacity", 224 | "2454": "Locked", 225 | "2455": "LockOtherMasks", 226 | "2456": "UnlockAllMasks", 227 | "2457": "WatchFolder", 228 | "2460": "RecentFavoritesList", 229 | "2481": "Snapshot", 230 | "2482": "CollectFiles", 231 | "2494": "Export", 232 | "2509": "Easy Ease", 233 | "2510": "Easy Ease In", 234 | "2511": "Easy Ease Out", 235 | "2517": "RevealLayerSourceinProject", 236 | "2518": "AddKeyframe", 237 | "2519": "PreviousKeyframe", 238 | "2520": "NextKeyframe", 239 | "2521": "Reset", 240 | "2522": "RevealLayerinProjectFlowchartView", 241 | "2523": "OpenLayerSourceWindow", 242 | "2524": "HideLockedMasks", 243 | "2536": "RevealinTimeline", 244 | "2537": "DeleteThisMarker", 245 | "2538": "DeleteAllMarkers", 246 | "2539": "UpdateMarkersFromSource", 247 | "2541": "3DLayer", 248 | "2542": "After Effects Help...", 249 | "2543": "Effect Reference...", 250 | "2544": "Scripting Help...", 251 | "2548": "Expression Reference...", 252 | "2550": "System Compatibility Report...", 253 | "2552": "AdobeDynamicLink", 254 | "2553": "NewPremiereProSequence", 255 | "2554": "ImportPremiereProSequence", 256 | "2557": "Shutter180Phase0", 257 | "2558": "Shutter360Phase0", 258 | "2559": "Shutter90Phase0", 259 | "2560": "Shutter180Phase180", 260 | "2561": "Shutter720Phase360", 261 | "2563": "Light", 262 | "2564": "Camera", 263 | "2565": "LockMarkers", 264 | "2566": "Solo", 265 | "2567": "Settings", 266 | "2568": "Track2DMotion", 267 | "2605": "Reset", 268 | "2606": "New", 269 | "2607": "Find", 270 | "2611": "ProjectSettings", 271 | "2613": "LiftWorkArea", 272 | "2614": "ExtractWorkArea", 273 | "2623": "Orientation", 274 | "2624": "Assign3DViewShortcut", 275 | "2625": "Switch3DView", 276 | "2626": "A", 277 | "2627": "B", 278 | "2628": "C", 279 | "2639": "Convert Expression to Keyframes", 280 | "2641": "EditValue", 281 | "2642": "Reset3DView", 282 | "2643": "TrackthisProperty", 283 | "2644": "EditProperties", 284 | "2645": "CreateCameraFrom3DView", 285 | "2646": "Scene Edit Detection...", 286 | "2647": "Reset3DView", 287 | "2648": "Reset3DView", 288 | "2649": "CreateCameraFrom3DView", 289 | "2650": "SwitchViewLayout", 290 | "2691": "1Up", 291 | "2692": "2Up", 292 | "2693": "3Up", 293 | "2699": "ShareViewOptions", 294 | "2701": "SetKeyframe", 295 | "2702": "AddExpression", 296 | "2703": "SwitchtoLast3DView", 297 | "2704": "VideoPreview", 298 | "2705": "Previews", 299 | "2710": "ActiveCamera", 300 | "2711": "Front", 301 | "2712": "Left", 302 | "2713": "Top", 303 | "2714": "Back", 304 | "2715": "Right", 305 | "2716": "Bottom", 306 | "2717": "CustomView1", 307 | "2718": "CustomView2", 308 | "2719": "CustomView3", 309 | "2731": "RevealExpressionErrors", 310 | "2732": "FittoCompWidth", 311 | "2733": "FittoCompHeight", 312 | "2735": "ReduceProject", 313 | "2736": "MaskExpansion", 314 | "2738": "Workspace", 315 | "2739": "SaveWorkspace", 316 | "2767": "NullObject", 317 | "2768": "SetFirstVertex", 318 | "2769": "Custom", 319 | "2771": "RevealAllModifiedProperties", 320 | "2776": "ViewOptions", 321 | "2777": "CreateProxy", 322 | "2778": "Still", 323 | "2779": "Movie", 324 | "2780": "Prerender", 325 | "2781": "NextBlendingMode", 326 | "2782": "PreviousBlendingMode", 327 | "2792": "Rotation", 328 | "2796": "New Comp from Selection...", 329 | "2797": "MotionBlur", 330 | "2798": "SameAsLayer", 331 | "2799": "On", 332 | "2800": "Off", 333 | "2824": "OneCompView", 334 | "2825": "TwoCompViews", 335 | "2826": "FourCompViews", 336 | "2834": "LookatSelectedLayers", 337 | "2835": "LookatAllLayers", 338 | "2836": "Text", 339 | "2933": "CreateOutlineMasks", 340 | "2934": "SelectEqualKeyframes", 341 | "2995": "History", 342 | "2997": "CropComptoRegionofInterest", 343 | "3000": "Solid...", 344 | "3011": "Character", 345 | "3012": "Paragraph", 346 | "3013": "ShowTextPanels", 347 | "3014": "Brushes", 348 | "3016": "Property", 349 | "3017": "Selector", 350 | "3018": "DeleteBrush", 351 | "3019": "AnchorPoint", 352 | "3020": "Position", 353 | "3021": "Scale", 354 | "3022": "Skew", 355 | "3023": "Rotation", 356 | "3024": "StrokeWidth", 357 | "3025": "Tracking", 358 | "3026": "LineAnchor", 359 | "3027": "CharacterOffset", 360 | "3028": "CharacterValue", 361 | "3029": "RGB", 362 | "3030": "Hue", 363 | "3031": "Saturation", 364 | "3032": "Brightness", 365 | "3033": "Opacity", 366 | "3034": "RGB", 367 | "3035": "Hue", 368 | "3036": "Saturation", 369 | "3037": "Brightness", 370 | "3038": "Opacity", 371 | "3039": "FillColor", 372 | "3040": "StrokeColor", 373 | "3041": "Wiggly", 374 | "3042": "Opacity", 375 | "3043": "LineSpacing", 376 | "3044": "Autotrace", 377 | "3045": "Paint", 378 | "3052": "AllTransformProperties", 379 | "3053": "RotoBezier", 380 | "3058": "RemoveAllTextAnimators", 381 | "3063": "Expression", 382 | "3064": "ConvertShape", 383 | "3065": "Horizontal", 384 | "3066": "Vertical", 385 | "3070": "WithLayeredComp", 386 | "3071": "UserInterfaceColors", 387 | "3072": "SelectPreviousKeyframes", 388 | "3073": "SelectFollowingKeyframes", 389 | "3075": "SaveAnimationPreset", 390 | "3081": "GuideLayer", 391 | "3088": "IncrementandSave", 392 | "3122": "AutoSave", 393 | "3124": "MemoryMultiprocessing", 394 | "3125": "AudioHardware", 395 | "3126": "AudioOutputMapping", 396 | "3129": "NewProject", 397 | "3130": "Type", 398 | "3131": "ScriptsExpressions", 399 | "3132": "Camera3D", 400 | "3133": "Notifications", 401 | "3134": "StartupAndRepair", 402 | "3147": "AdobePhotoshopFile", 403 | "3148": "AdobePhotoshopFile", 404 | "3153": "RoveAcrossTime", 405 | "3154": "CloseProject", 406 | "3155": "Time", 407 | "3562": "Keyboard Shortcuts...", 408 | "3563": "Animation Presets...", 409 | "3565": "NewWorkspace", 410 | "3566": "ResetWorkspace", 411 | "3567": "All Panels", 412 | "3568": "Animation", 413 | "3571": "Effects", 414 | "3575": "Minimal", 415 | "3576": "Motion Tracking", 416 | "3578": "Review", 417 | "3579": "Small Screen", 418 | "3580": "Standard", 419 | "3582": "Undocked Panels", 420 | "3689": "Browse", 421 | "3690": "RevealinBridge", 422 | "3691": "BrowsePresets", 423 | "3693": "Time-Reverse Keyframes", 424 | "3695": "FreezeFrame", 425 | "3696": "RevealCompInPW", 426 | "3697": "EditinAdobeAudition", 427 | "3698": "Blur", 428 | "3699": "After Effects Online Tutorials...", 429 | "3700": "NewViewer", 430 | "3703": "SimulateOutput", 431 | "3704": "UseDisplayColorManagement", 432 | "3705": "NoOutputSimulation", 433 | "3706": "Kodak5218toKodak2383", 434 | "3707": "AssignWorkspaceShortcut", 435 | "3708": "A", 436 | "3709": "B", 437 | "3710": "C", 438 | "3718": "Effects & Presets", 439 | "3734": "OpenEffectControls", 440 | "3736": "ShapeLayer", 441 | "3737": "EnablePercharacter3D", 442 | "3739": "LayerStyles", 443 | "3741": "Group Shapes", 444 | "3742": "Ungroup Shapes", 445 | "3745": "MaskandShapePath", 446 | "3746": "Blue", 447 | "3747": "Green", 448 | "3748": "Purple", 449 | "3749": "Orange", 450 | "3750": "Brown", 451 | "3751": "Fuchsia", 452 | "3752": "Cyan", 453 | "3753": "Sandstone", 454 | "3754": "HDTVRec709", 455 | "3755": "SDTVNTSC", 456 | "3756": "SDTVPAL", 457 | "3757": "MacintoshRGB", 458 | "3758": "WindowsRGB", 459 | "3759": "MyCustomRGB", 460 | "3760": "Custom", 461 | "3764": "SeparateDimensions", 462 | "3766": "FlipHorizontal", 463 | "3767": "FlipVertical", 464 | "3781": "CreateOutlineShape", 465 | "3784": "OpenLayerWindow", 466 | "3785": "SaveAsXML", 467 | "3788": "Metadata", 468 | "3791": "UpgradeProjectPARsToCS4", 469 | "3792": "OpenMiniFlowPopup", 470 | "3798": "Arrange", 471 | "3799": "ConvertToEditable", 472 | "3800": "AddToAMERenderQueue", 473 | "3814": "UCFtoKodak2383", 474 | "3819": "CenterInView", 475 | "3822": "Dark Green", 476 | "3837": "Provide Feedback...", 477 | "3840": "SaveAs", 478 | "3842": "Camera", 479 | "3843": "Create Stereo 3D Rig", 480 | "3844": "Create Orbit Null", 481 | "3845": "Link Focus Distance to Point of Interest", 482 | "3846": "Set Focus Distance to Layer", 483 | "3847": "Link Focus Distance to Layer", 484 | "3972": "EnvironLayer", 485 | "3973": "CreateFootageOutlines", 486 | "3983": "Track3DCameraMotion", 487 | "3984": "AddtoRenderQueue", 488 | "3986": "WarpStabilizer", 489 | "3987": "FeatherFalloff", 490 | "3988": "Smooth", 491 | "3989": "Linear", 492 | "3991": "FeatherHold", 493 | "3992": "FeatherEditTension", 494 | "3993": "FeatherEditExtent", 495 | "3995": "Online User Forums...", 496 | "3999": "GoToKeyframeTime", 497 | "4002": "Find Missing Effects", 498 | "4003": "Find Missing Fonts", 499 | "4004": "Find Missing Footage", 500 | "4007": "Maxon Cinema 4D File...", 501 | "4008": "Cinema4DFile", 502 | "4009": "Adobe Crash Reporter...", 503 | "4011": "RevealPropertiesWithAnimation", 504 | "4013": "Media Browser", 505 | "4015": "EnableAutoStopwatch", 506 | "4016": "Extensions", 507 | "4017": "AddFontsFromAdobe", 508 | "4018": "FindExtensions", 509 | "4022": "ImportCCLibraries", 510 | "4023": "EditWorkspace", 511 | "4027": "FreezeOnLastFrame", 512 | "4036": "CreateDataFootageLayerKeyframes", 513 | "4041": "Align Video to Data", 514 | "4042": "AddPropToCapsules", 515 | "4043": "Reveal", 516 | "4044": "Create", 517 | "4045": "TrackAndStabilize", 518 | "4046": "Open", 519 | "4049": "CAFillLayer", 520 | "4150": "TaffyTimeHeir", 521 | "4151": "CreateIntro", 522 | "4152": "CreateOutro", 523 | "4153": "CreateProtectedRegion", 524 | "4154": "EnableProtectedRegion", 525 | "4158": "ImportGuides", 526 | "4159": "ExportGuides", 527 | "4162": "Convert To Bezier Path", 528 | "4168": "Save a Copy As 23.x...", 529 | "4169": "Save a Copy As 24.x...", 530 | "4208": "NextKeyframe", 531 | "4209": "EditExpression", 532 | "4215": "Exponential Scale", 533 | "4216": "RPF Camera Import", 534 | "4217": "Sequence Layers...", 535 | "4218": "Convert Audio to Keyframes", 536 | "4220": "KeyframeSelectLabelGroup", 537 | "4221": "OnSelectedLayers", 538 | "4222": "OnAllLayers", 539 | "4223": "VisibleKeyframesOnSelectedLayers", 540 | "4224": "VisibleKeyframesOnAllLayers", 541 | "4225": "Edit Label Colors...", 542 | "4227": "EffectManager", 543 | "4229": "SetTypeAlphaMatte", 544 | "4230": "SetTypeAlphaInvertedMatte", 545 | "4231": "SetTypeLumaMatte", 546 | "4232": "SetTypeLumaInvertedMatte", 547 | "4233": "TrackMatteAbove", 548 | "4234": "TrackMatteBelow", 549 | "4235": "AlphaMatteBelow", 550 | "4236": "AlphaInvertedMatteBelow", 551 | "4237": "LumaMatteBelow", 552 | "4238": "LumaInvertedMatteBelow", 553 | "5001": "Progress", 554 | "5002": "Photoshop Layers...", 555 | "5004": "Properties", 556 | "5005": "Tracker", 557 | "5006": "Maxon Cinema 4D Exporter...", 558 | "5007": "Paste Mocha mask", 559 | "5008": "Track in Boris FX Mocha", 560 | "5037": "Review with Frame.io", 561 | "5038": "Learn", 562 | "5039": "Libraries", 563 | "5046": "ProEXR...", 564 | "5047": "Export Adobe Premiere Pro Project...", 565 | "5048": "Import Adobe Premiere Pro Project...", 566 | "5049": "Align", 567 | "5050": "Essential Graphics", 568 | "5051": "Content-Aware Fill", 569 | "5053": "Motion Sketch", 570 | "5056": "Create VR Environment...", 571 | "5057": "Extract Cubemap...", 572 | "5058": "Mask Interpolation", 573 | "5059": "Smoother", 574 | "5061": "Wiggler", 575 | "7001": "Audio", 576 | "7019": "Text", 577 | "8000": "Run Script File...", 578 | "10200": "AllMemoryDiskCache", 579 | "10205": "AddToAMERenderQueue", 580 | "10207": "Bilinear", 581 | "10208": "Bicubic", 582 | "10212": "Enable Logging", 583 | "10213": "Reveal Logging File", 584 | "10214": "After Effects In-App Tutorials...", 585 | "10310": "Copy", 586 | "10311": "TrackMask", 587 | "10312": "CenterAnchor", 588 | "10313": "Copy", 589 | "10314": "PlayPreview", 590 | "10420": "LicenseFootage", 591 | "10424": "Lumetri Scopes", 592 | "10425": "Open in Essential Graphics", 593 | "10426": "KSV", 594 | "10428": "New Team Project...", 595 | "10429": "Open Team Project...", 596 | "10430": "Get Latest Changes", 597 | "10431": "Share My Changes...", 598 | "10432": "Resolve Conflicts...", 599 | "10433": "Media Management...", 600 | "10436": "Convert Team Project to Project...", 601 | "10450": "EnableExpressions", 602 | "10451": "DisableExpressions", 603 | "10500": "Install Script File...", 604 | "10501": "Install ScriptUI Panel...", 605 | "10502": "GenerateLayerMarkersFromAudioBeats", 606 | "10503": "GenerateLayerMarkersFromAudioEvents", 607 | "10504": "SyncPropertyToAudioBeats", 608 | "10512": "Default", 609 | "10550": "PlayPreview", 610 | "10700": "AllDiskCache", 611 | "10701": "All3DCache", 612 | "10702": "AllCache", 613 | "10710": "Create Cameras from 3D Model", 614 | "10721": "Create Lights from 3D Model", 615 | "-196643": "Start Dictation…", 616 | "-458752001": "3D Channel Extract", 617 | "-458752002": "Cryptomatte", 618 | "-458752003": "Depth Matte", 619 | "-458752004": "Depth of Field", 620 | "-458752005": "EXtractoR", 621 | "-458752006": "Fog 3D", 622 | "-458752007": "ID Matte", 623 | "-458752008": "IDentifier", 624 | "-458817537": "Backwards", 625 | "-458817538": "Bass & Treble", 626 | "-458817539": "Delay", 627 | "-458817540": "Flange & Chorus", 628 | "-458817541": "High-Low Pass", 629 | "-458817542": "Modulator", 630 | "-458817543": "Parametric EQ", 631 | "-458817544": "Reverb", 632 | "-458817545": "Stereo Mixer", 633 | "-458817546": "Tone", 634 | "-458883073": "Bilateral Blur", 635 | "-458883074": "Camera Lens Blur", 636 | "-458883075": "Camera-Shake Deblur", 637 | "-458883076": "CC Cross Blur", 638 | "-458883077": "CC Radial Blur", 639 | "-458883078": "CC Radial Fast Blur", 640 | "-458883079": "CC Vector Blur", 641 | "-458883080": "Channel Blur", 642 | "-458883081": "Compound Blur", 643 | "-458883082": "Directional Blur", 644 | "-458883083": "Fast Box Blur", 645 | "-458883084": "Gaussian Blur", 646 | "-458883085": "Radial Blur", 647 | "-458883086": "Sharpen", 648 | "-458883087": "Smart Blur", 649 | "-458883088": "Unsharp Mask", 650 | "-458948609": "Mocha AE", 651 | "-459014145": "Arithmetic", 652 | "-459014146": "Blend", 653 | "-459014147": "Calculations", 654 | "-459014148": "CC Composite", 655 | "-459014149": "Channel Combiner", 656 | "-459014150": "Compound Arithmetic", 657 | "-459014151": "Invert", 658 | "-459014152": "Minimax", 659 | "-459014153": "Remove Color Matting", 660 | "-459014154": "Set Channels", 661 | "-459014155": "Set Matte", 662 | "-459014156": "Shift Channels", 663 | "-459014157": "Solid Composite", 664 | "-459079681": "Cineware", 665 | "-459145217": "Auto Color", 666 | "-459145218": "Auto Contrast", 667 | "-459145219": "Auto Levels", 668 | "-459145220": "Black & White", 669 | "-459145221": "Brightness & Contrast", 670 | "-459145222": "Broadcast Colors", 671 | "-459145223": "CC Color Neutralizer", 672 | "-459145224": "CC Color Offset", 673 | "-459145225": "CC Kernel", 674 | "-459145226": "CC Toner", 675 | "-459145227": "Change Color", 676 | "-459145228": "Change to Color", 677 | "-459145229": "Channel Mixer", 678 | "-459145230": "Color Balance", 679 | "-459145232": "Color Link", 680 | "-459145233": "Color Stabilizer", 681 | "-459145234": "Colorama", 682 | "-459145235": "Curves", 683 | "-459145236": "Equalize", 684 | "-459145237": "Exposure", 685 | "-459145238": "Gamma/Pedestal/Gain", 686 | "-459145239": "Hue/Saturation", 687 | "-459145240": "Leave Color", 688 | "-459145241": "Levels", 689 | "-459145243": "Lumetri Color", 690 | "-459145244": "OCIO CDL Transform", 691 | "-459145245": "OCIO Color Space Transform", 692 | "-459145246": "OCIO Display Transform", 693 | "-459145247": "OCIO File Transform", 694 | "-459145248": "OCIO Look Transform", 695 | "-459145249": "Photo Filter", 696 | "-459145250": "PS Arbitrary Map", 697 | "-459145251": "Selective Color", 698 | "-459145252": "Shadow/Highlight", 699 | "-459145253": "Tint", 700 | "-459145254": "Tritone", 701 | "-459145255": "Vibrance", 702 | "-459145256": "Video Limiter", 703 | "-459210753": "Bezier Warp", 704 | "-459210754": "Bulge", 705 | "-459210755": "CC Bend It", 706 | "-459210756": "CC Bender", 707 | "-459210757": "CC Blobbylize", 708 | "-459210758": "CC Flo Motion", 709 | "-459210759": "CC Griddler", 710 | "-459210760": "CC Lens", 711 | "-459210761": "CC Page Turn", 712 | "-459210762": "CC Power Pin", 713 | "-459210763": "CC Ripple Pulse", 714 | "-459210764": "CC Slant", 715 | "-459210765": "CC Smear", 716 | "-459210766": "CC Split", 717 | "-459210767": "CC Split 2", 718 | "-459210768": "CC Tiler", 719 | "-459210769": "Corner Pin", 720 | "-459210770": "Detail-preserving Upscale", 721 | "-459210771": "Displacement Map", 722 | "-459210772": "Liquify", 723 | "-459210773": "Magnify", 724 | "-459210774": "Mesh Warp", 725 | "-459210775": "Mirror", 726 | "-459210776": "Offset", 727 | "-459210777": "Optics Compensation", 728 | "-459210778": "Polar Coordinates", 729 | "-459210779": "Reshape", 730 | "-459210780": "Ripple", 731 | "-459210781": "Rolling Shutter Repair", 732 | "-459210782": "Smear", 733 | "-459210783": "Spherize", 734 | "-459210785": "Turbulent Displace", 735 | "-459210786": "Twirl", 736 | "-459210787": "Warp", 737 | "-459210788": "Warp Stabilizer", 738 | "-459210789": "Wave Warp", 739 | "-459276289": "3D Point Control", 740 | "-459276290": "Angle Control", 741 | "-459276291": "Checkbox Control", 742 | "-459276292": "Color Control", 743 | "-459276293": "Dropdown Menu Control", 744 | "-459276294": "Layer Control", 745 | "-459276295": "Point Control", 746 | "-459276296": "Slider Control", 747 | "-459341825": "4-Color Gradient", 748 | "-459341826": "Advanced Lightning", 749 | "-459341827": "Audio Spectrum", 750 | "-459341828": "Audio Waveform", 751 | "-459341829": "Beam", 752 | "-459341830": "CC Glue Gun", 753 | "-459341831": "CC Light Burst 2.5", 754 | "-459341832": "CC Light Rays", 755 | "-459341833": "CC Light Sweep", 756 | "-459341834": "CC Threads", 757 | "-459341835": "Cell Pattern", 758 | "-459341836": "Checkerboard", 759 | "-459341837": "Circle", 760 | "-459341838": "Ellipse", 761 | "-459341839": "Eyedropper Fill", 762 | "-459341840": "Fill", 763 | "-459341841": "Fractal", 764 | "-459341842": "Gradient Ramp", 765 | "-459341843": "Grid", 766 | "-459341844": "Lens Flare", 767 | "-459341845": "Paint Bucket", 768 | "-459341846": "Radio Waves", 769 | "-459341847": "Scribble", 770 | "-459341848": "Stroke", 771 | "-459341849": "Vegas", 772 | "-459341850": "Write-on", 773 | "-459407361": "VR Blur", 774 | "-459407362": "VR Chromatic Aberrations", 775 | "-459407363": "VR Color Gradients", 776 | "-459407364": "VR Converter", 777 | "-459407365": "VR De-Noise", 778 | "-459407366": "VR Digital Glitch", 779 | "-459407367": "VR Fractal Noise", 780 | "-459407368": "VR Glow", 781 | "-459407369": "VR Plane to Sphere", 782 | "-459407370": "VR Rotate Sphere", 783 | "-459407371": "VR Sharpen", 784 | "-459407372": "VR Sphere To Plane", 785 | "-459472897": "Advanced Spill Suppressor", 786 | "-459472898": "CC Simple Wire Removal", 787 | "-459472899": "Color Difference Key", 788 | "-459472900": "Color Range", 789 | "-459472901": "Difference Matte", 790 | "-459472902": "Extract", 791 | "-459472903": "Inner/Outer Key", 792 | "-459472904": "Key Cleaner", 793 | "-459472906": "Linear Color Key", 794 | "-459538433": "Matte Choker", 795 | "-459538434": "Refine Hard Matte", 796 | "-459538435": "Refine Soft Matte", 797 | "-459538436": "Simple Choker", 798 | "-459603969": "Add Grain", 799 | "-459603970": "Dust & Scratches", 800 | "-459603971": "Fractal Noise", 801 | "-459603972": "Match Grain", 802 | "-459603973": "Median", 803 | "-459603975": "Noise", 804 | "-459603976": "Noise Alpha", 805 | "-459603977": "Noise HLS", 806 | "-459603978": "Noise HLS Auto", 807 | "-459603979": "Remove Grain", 808 | "-459603980": "Turbulent Noise", 809 | "-459669505": "Basic 3D", 810 | "-459669506": "Basic Text", 811 | "-459669507": "Color Key", 812 | "-459669509": "Lightning", 813 | "-459669510": "Luma Key", 814 | "-459669511": "mocha shape", 815 | "-459669512": "Path Text", 816 | "-459669513": "Reduce Interlace Flicker", 817 | "-459669514": "Spill Suppressor", 818 | "-459735041": "3D Camera Tracker", 819 | "-459735042": "3D Glasses", 820 | "-459735043": "Bevel Alpha", 821 | "-459735044": "Bevel Edges", 822 | "-459735045": "CC Cylinder", 823 | "-459735046": "CC Environment", 824 | "-459735047": "CC Sphere", 825 | "-459735048": "CC Spotlight", 826 | "-459735049": "Drop Shadow", 827 | "-459735050": "Radial Shadow", 828 | "-459800577": "PathMaster", 829 | "-459866113": "Card Dance", 830 | "-459866114": "Caustics", 831 | "-459866115": "CC Ball Action", 832 | "-459866116": "CC Bubbles", 833 | "-459866117": "CC Drizzle", 834 | "-459866118": "CC Hair", 835 | "-459866119": "CC Mr. Mercury", 836 | "-459866120": "CC Particle Systems II", 837 | "-459866121": "CC Particle World", 838 | "-459866122": "CC Pixel Polly", 839 | "-459866123": "CC Rainfall", 840 | "-459866124": "CC Scatterize", 841 | "-459866125": "CC Snowfall", 842 | "-459866126": "CC Star Burst", 843 | "-459866127": "Foam", 844 | "-459866128": "Particle Playground", 845 | "-459866129": "Shatter", 846 | "-459866130": "Wave World", 847 | "-459931649": "Brush Strokes", 848 | "-459931650": "Cartoon", 849 | "-459931651": "CC Block Load", 850 | "-459931652": "CC Burn Film", 851 | "-459931653": "CC Glass", 852 | "-459931654": "CC HexTile", 853 | "-459931655": "CC Kaleida", 854 | "-459931656": "CC Mr. Smoothie", 855 | "-459931657": "CC Plastic", 856 | "-459931658": "CC RepeTile", 857 | "-459931659": "CC Threshold", 858 | "-459931660": "CC Threshold RGB", 859 | "-459931661": "CC Vignette", 860 | "-459931662": "Color Emboss", 861 | "-459931663": "Emboss", 862 | "-459931664": "Find Edges", 863 | "-459931665": "Glow", 864 | "-459931666": "Mosaic", 865 | "-459931667": "Motion Tile", 866 | "-459931668": "Posterize", 867 | "-459931669": "Roughen Edges", 868 | "-459931670": "Scatter", 869 | "-459931671": "Strobe Light", 870 | "-459931672": "Texturize", 871 | "-459931673": "Threshold", 872 | "-459997185": "Numbers", 873 | "-459997186": "Timecode", 874 | "-460062721": "CC Force Motion Blur", 875 | "-460062722": "CC Wide Time", 876 | "-460062723": "Echo", 877 | "-460062724": "Pixel Motion Blur", 878 | "-460062725": "Posterize Time", 879 | "-460062726": "Time Difference", 880 | "-460062727": "Time Displacement", 881 | "-460062728": "Timewarp", 882 | "-460128257": "Block Dissolve", 883 | "-460128258": "Card Wipe", 884 | "-460128259": "CC Glass Wipe", 885 | "-460128260": "CC Grid Wipe", 886 | "-460128261": "CC Image Wipe", 887 | "-460128262": "CC Jaws", 888 | "-460128263": "CC Light Wipe", 889 | "-460128264": "CC Line Sweep", 890 | "-460128265": "CC Radial ScaleWipe", 891 | "-460128266": "CC Scale Wipe", 892 | "-460128267": "CC Twister", 893 | "-460128268": "CC WarpoMatic", 894 | "-460128269": "Gradient Wipe", 895 | "-460128270": "Iris Wipe", 896 | "-460128271": "Linear Wipe", 897 | "-460128272": "Radial Wipe", 898 | "-460128273": "Venetian Blinds", 899 | "-460193793": "Apply Color LUT", 900 | "-460193794": "CC Overbrights", 901 | "-460193795": "Cineon Converter", 902 | "-460193796": "Color Profile Converter", 903 | "-460193797": "Grow Bounds", 904 | "-460193798": "HDR Compander", 905 | "-460193799": "HDR Highlight Compression", 906 | "-589860": "Enter Full Screen", 907 | "-524327": "Project", 908 | "-524328": "Render Queue", 909 | "-720914": "Manage My Account...", 910 | "-720916": "Updates..." 911 | } 912 | -------------------------------------------------------------------------------- /json/manual.json: -------------------------------------------------------------------------------- 1 | { 2 | "2639": "ConvertExpressionToKeyframes", 3 | "4218": "Convert Audio to Keyframes", 4 | "8000": "RunScriptFile", 5 | "8100": "Scripts", 6 | "8101": "Script 1", 7 | "8102": "Script 2", 8 | "8103": "Script 3", 9 | "8104": "Script 4", 10 | "8105": "Script 5", 11 | "8106": "Script 6", 12 | "8107": "Script 7", 13 | "8108": "Script 8", 14 | "8109": "Script 9", 15 | "8110": "Script 10", 16 | "3985": "CancelCachingWorkAreainBackground", 17 | "5007": "Mocha AE", 18 | "9000": "Drop Shadow", 19 | "9001": "Inner Shadow", 20 | "9002": "Outer Glow", 21 | "9003": "Inner Glow", 22 | "9004": "Bevel and Emboss", 23 | "9005": "Satin", 24 | "9006": "Color Overlay", 25 | "9007": "Gradient Overlay", 26 | "9008": "Stroke" 27 | } -------------------------------------------------------------------------------- /json/name-overrides.json: -------------------------------------------------------------------------------- 1 | { 2 | "File": "Set Proxy File" 3 | } 4 | -------------------------------------------------------------------------------- /media/viewer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperbrew/after-effects-command-ids/168bb6c054fe5706d758f35a60ee99f92f2af21d/media/viewer.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "after-effects-cmd-ids", 3 | "version": "2.0.1", 4 | "homepage": "https://hyperbrew.github.io/after-effects-command-ids/", 5 | "scripts": { 6 | "dev": "vite", 7 | "build": "tsc && vite build --base=./", 8 | "serve": "vite preview", 9 | "predeploy": "npm run build", 10 | "deploy": "gh-pages -d dist", 11 | "scan": "node parser/menu-scan-run.js", 12 | "scan-post": "node parser/menu-scan-run.js 2" 13 | }, 14 | "dependencies": { 15 | "gh-pages": "5.0.0", 16 | "react": "^18.2.0", 17 | "react-dom": "^18.2.0", 18 | "sass": "^1.56.0" 19 | }, 20 | "devDependencies": { 21 | "@types/react": "^18.0.25", 22 | "@types/react-dom": "^18.0.8", 23 | "@vitejs/plugin-react": "^2.2.0", 24 | "typescript": "^4.8.4", 25 | "vite": "^4.5.6" 26 | } 27 | } -------------------------------------------------------------------------------- /parser/menu-scan-run.js: -------------------------------------------------------------------------------- 1 | const fs = require("fs"); 2 | const child_process = require("child_process"); 3 | const path = require("path"); 4 | 5 | const stream = require("stream"); 6 | const readline = require("readline"); 7 | 8 | const version = 2025; 9 | 10 | const scannerPath = path.join(__dirname, "scanner.scpt"); 11 | 12 | const stepsFolder = path.join(__dirname, "steps"); 13 | if (!fs.existsSync(stepsFolder)) fs.mkdirSync(stepsFolder); 14 | 15 | const raw1Path = path.join(stepsFolder, `1-results-raw-${version}.txt`); 16 | const fixed2Path = path.join(stepsFolder, `2-results-fixed-${version}.json`); 17 | const flat3Path = path.join(stepsFolder, `3-results-flat-${version}.js`); 18 | const clean4Path = path.join(stepsFolder, `4-results-clean-${version}.json`); 19 | const jsx5Path = path.join( 20 | stepsFolder, 21 | `5-results-extend-script-${version}.jsx` 22 | ); 23 | const out6Path = path.join(stepsFolder, "6-results-filtered.json"); 24 | const out6PathMissing = path.join(stepsFolder, "6-results-missing.json"); 25 | const dict7Path = path.join( 26 | stepsFolder, 27 | `7-dictionary-results-${version}.json` 28 | ); 29 | const uniqueMenu7Path = path.join( 30 | stepsFolder, 31 | `7-unique-menu-results-${version}.json` 32 | ); 33 | const merged8Path = path.join(stepsFolder, `8-merged-results-${version}.json`); 34 | 35 | const args = process.argv.slice(2); 36 | 37 | async function run() { 38 | //* 1. Run Scanner 39 | console.log("Running scanner (this will take several minutes) ..."); 40 | 41 | if (!args.includes("2")) { 42 | fs.existsSync(raw1Path) && fs.unlinkSync(raw1Path); 43 | child_process.execSync(`osascript "${scannerPath}" > "${raw1Path}"`, { 44 | encoding: "utf-8", 45 | }); 46 | } 47 | const raw = fs.readFileSync(raw1Path, { encoding: "utf-8" }); 48 | 49 | //* 2. Fix Typos 50 | const emailRegex = /[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}/g; 51 | 52 | let fixed = raw 53 | // .substring(1, raw.length - 1) // remove first and last quotes 54 | // .replace(/\\"/g, '"') // remove escaped quotes 55 | .replace(/\(/g, "") 56 | .replace(/\)/g, "") 57 | // remove all new lines 58 | .replace(/\\n/g, "") 59 | .replace(/\\r/g, "") 60 | .replace(/\s{2,}/g, "") 61 | .replace(emailRegex, ""); 62 | 63 | // remove trailing commas 64 | fixed = fixed.replace(/,\s\}/g, "}"); 65 | fs.existsSync(fixed2Path) && fs.unlinkSync(fixed2Path); 66 | fs.writeFileSync(fixed2Path, fixed); 67 | console.log(`File saved: ${path.basename(fixed2Path)}`); 68 | // console.log(fixed) 69 | 70 | let fixedObj = {}; 71 | 72 | try { 73 | fixedObj = JSON.parse(fixed); 74 | } catch (e) { 75 | console.log("Error parsing JSON"); 76 | console.log("Saving fixed string to: results-fixed.json"); 77 | console.log(e); 78 | } 79 | 80 | //* 3. Flatten object 81 | const IGNORE_CATEGORIES = [ 82 | "Apple", 83 | "Recent Items", 84 | "Extensions", 85 | "Open Recent", 86 | "Recent Script Files", 87 | ]; 88 | const IGNORE_EXTENSIONS = [".jsx", ".jsxbin", ".js"]; 89 | const IGNORE_PATTERNS = ["in Finder", "missing value"]; 90 | 91 | function extractStrings(obj) { 92 | let result = []; 93 | 94 | const traverse = (value) => { 95 | if (Array.isArray(value)) { 96 | value.forEach((item) => traverse(item)); 97 | } else if (typeof value === "object" && value !== null) { 98 | Object.keys(value).forEach((key) => { 99 | // console.log({ key }) 100 | const item = value[key]; 101 | if (IGNORE_CATEGORIES.includes(key)) return; 102 | traverse(item); 103 | }); 104 | } else if (typeof value === "string") { 105 | if (IGNORE_EXTENSIONS.find((ext) => value.includes(ext))) return; 106 | if (IGNORE_PATTERNS.find((pattern) => value.includes(pattern))) return; 107 | result.push(value); 108 | } 109 | }; 110 | 111 | traverse(obj); 112 | 113 | return result; 114 | } 115 | 116 | const strings = extractStrings(fixedObj); 117 | fs.existsSync(flat3Path) && fs.unlinkSync(flat3Path); 118 | fs.writeFileSync(flat3Path, JSON.stringify(strings, null, 2)); 119 | console.log(`File saved: ${path.basename(flat3Path)}`); 120 | 121 | //* 4. Clean up strings 122 | 123 | // Tidy Up 124 | const cleanStrings = strings.map((item) => { 125 | return ( 126 | item 127 | // .replace(/….*/g, '') 128 | // .replace(/\.\.\./g, '') 129 | .replace(/Can’t/g, "") 130 | .replace(/Show“.*”inFinder/g, "") 131 | .replace(/.*.app/, "") 132 | ); 133 | }); 134 | 135 | const excludePatterns = ["dummy", "missingvalue", ""]; 136 | 137 | const filtered = cleanStrings.filter((item) => { 138 | return excludePatterns.indexOf(item) === -1; 139 | }); 140 | 141 | const deduped = [...new Set(filtered)]; 142 | 143 | const jsonList = JSON.stringify(deduped, null, 2); 144 | 145 | fs.existsSync(clean4Path) && fs.unlinkSync(clean4Path); 146 | fs.writeFileSync(clean4Path, jsonList); 147 | console.log(`File saved: ${path.basename(clean4Path)}`); 148 | 149 | //* 5. Run in ExtendScript to get command IDs 150 | 151 | // Run in ExtendScript to filter actual commands 152 | 153 | const esString = ` 154 | 155 | function includes(arr, value){ 156 | for (var i = 0; i < arr.length; i++) { 157 | var element = arr[i]; 158 | if (element === value) { 159 | return true; 160 | } 161 | } 162 | return false; 163 | } 164 | 165 | var oldEncoding = $.encoding; 166 | var changedEncoding = false; 167 | if(oldEncoding !== "UTF-8") { 168 | $.appEncoding = "UTF-8"; 169 | changedEncoding = true; 170 | } 171 | var s = ${jsonList}; 172 | var res = {}; 173 | var missing = []; 174 | 175 | for (var i = 0; i < s.length; i++) { 176 | var og = s[i]; 177 | var element = s[i]; 178 | var variants = [element]; 179 | var cmd = 0; 180 | 181 | var elementA = element.replace(/\\s/g, ''); // no spaces 182 | if(elementA !== element) variants.push(elementA); 183 | 184 | var elementB = elementA.replace(/…/g, ''); // no ellipsis 185 | if(elementB !== elementA) variants.push(elementB); 186 | 187 | var elementC = elementB.replace(/\\(.*?\\)/g, ''); // no parentheses 188 | if(elementC !== elementB) variants.push(elementC); 189 | 190 | for (var j = 0; j < variants.length; j++) { 191 | var cmd = app.findMenuCommandId(variants[j]); 192 | if (cmd !== 0) { 193 | res[cmd] = variants[j]; 194 | break; 195 | } 196 | } 197 | if (cmd !== 0){ 198 | continue; 199 | } 200 | else{ 201 | missing = missing.concat(variants); 202 | } 203 | 204 | } 205 | var file = new File("${out6Path}"); 206 | file.open("w"); 207 | file.write(JSON.stringify(res, null, 2)); 208 | file.close(); 209 | 210 | var fileMissing = new File("${out6PathMissing}"); 211 | fileMissing.open("w"); 212 | fileMissing.write(JSON.stringify(missing, null, 2)); 213 | fileMissing.close(); 214 | if(changedEncoding) { 215 | $.appEncoding = oldEncoding; 216 | } 217 | `; 218 | 219 | fs.existsSync(jsx5Path) && fs.unlinkSync(jsx5Path); 220 | fs.writeFileSync(jsx5Path, esString); 221 | console.log(`File saved: ${path.basename(jsx5Path)}`); 222 | 223 | fs.existsSync(out6PathMissing) && fs.unlinkSync(out6PathMissing); 224 | fs.existsSync(out6Path) && fs.unlinkSync(out6Path); 225 | child_process.execSync( 226 | `osascript -l JavaScript -e 'ae = Application("Adobe After Effects ${version}"); ae.activate(); ae.doscriptfile("${jsx5Path}");'` 227 | ); 228 | 229 | const filteredRaw = fs.readFileSync(out6Path, { encoding: "utf-8" }); 230 | let filteredObj = JSON.parse(filteredRaw); 231 | 232 | //* 7 Get Command IDs from Dictionary file 233 | 234 | const getCmdIds = (datFile) => { 235 | return new Promise((resolve) => { 236 | const instream = fs.createReadStream(datFile, "utf8"); 237 | const outstream = new stream(); 238 | const rl = readline.createInterface(instream, outstream); 239 | let menuIDs = {}; 240 | rl.on("line", (line) => { 241 | if (line.match(/\$\$\$\/AE\/MenuID/)) { 242 | line = line.substring(line.lastIndexOf("/") + 1); 243 | const data = line.match(/[a-z|A-Z|0-9]*\_[0-9]*/); 244 | if (data) { 245 | const name = data[0].match(/[a-z|A-Z|0-9]*\_/)[0].slice(0, -1); 246 | const number = data[0].match(/\_[0-9]*/)[0].substr(1); 247 | if (number && name) { 248 | menuIDs[number] = name; 249 | } 250 | } 251 | } 252 | }); 253 | rl.on("close", () => resolve(menuIDs)); 254 | }); 255 | }; 256 | 257 | // const datFileWin = `C:/Program Files/Adobe/Adobe After Effects ${version}/Support Files/Dictionaries/es_ES/after_effects_es_ES.dat`; 258 | const datFileMac = `/Applications/Adobe After Effects ${version}/Adobe After Effects ${version}.app/Contents/Dictionaries/es_ES/after_effects_es_ES.dat`; 259 | 260 | const dictionaryObj = await getCmdIds(datFileMac); 261 | const txt = JSON.stringify(dictionaryObj, null, "\t"); 262 | 263 | fs.existsSync(dict7Path) && fs.unlinkSync(dict7Path); 264 | fs.writeFileSync(dict7Path, txt, { encoding: "utf-8" }); 265 | console.log(`File saved: ${path.basename(dict7Path)}`); 266 | 267 | let merged = Object.assign({}, filteredObj); 268 | let uniqueMenu = Object.assign({}, filteredObj); 269 | let overwriteCount = 0; 270 | Object.keys(dictionaryObj).map((key) => { 271 | if (filteredObj[key] && filteredObj[key] !== dictionaryObj[key]) { 272 | overwriteCount++; 273 | console.log(`Overwriting ${filteredObj[key]} with ${dictionaryObj[key]}`); 274 | } 275 | merged[key] = dictionaryObj[key]; 276 | delete uniqueMenu[key]; 277 | }); 278 | 279 | fs.existsSync(uniqueMenu7Path) && fs.unlinkSync(uniqueMenu7Path); 280 | fs.writeFileSync(uniqueMenu7Path, JSON.stringify(uniqueMenu, null, "\t"), { 281 | encoding: "utf-8", 282 | }); 283 | console.log(`File saved: ${path.basename(uniqueMenu7Path)}`); 284 | 285 | console.log({ 286 | menuCount: Object.keys(filteredObj).length, 287 | dictionaryCount: Object.keys(dictionaryObj).length, 288 | overwriteCount: overwriteCount, 289 | mergedCount: Object.keys(merged).length, 290 | uniqueMenuCount: Object.keys(uniqueMenu).length, 291 | }); 292 | 293 | const mergedTxt = JSON.stringify(merged, null, "\t"); 294 | fs.existsSync(merged8Path) && fs.unlinkSync(merged8Path); 295 | fs.writeFileSync(merged8Path, mergedTxt, { encoding: "utf-8" }); 296 | console.log(`File saved: ${path.basename(merged8Path)}`); 297 | } 298 | 299 | run(); 300 | -------------------------------------------------------------------------------- /parser/parse-dat.js: -------------------------------------------------------------------------------- 1 | const fs = require("fs"); 2 | const path = require("path"); 3 | const stream = require("stream"); 4 | const readline = require("readline"); 5 | 6 | const getCmdIds = (datFile) => { 7 | return new Promise((resolve) => { 8 | const instream = fs.createReadStream(datFile, "utf8"); 9 | const outstream = new stream(); 10 | const rl = readline.createInterface(instream, outstream); 11 | let menuIDs = {}; 12 | rl.on("line", (line) => { 13 | if (line.match(/\$\$\$\/AE\/MenuID/)) { 14 | line = line.substring(line.lastIndexOf("/") + 1); 15 | const data = line.match(/[a-z|A-Z|0-9]*\_[0-9]*/); 16 | if (data) { 17 | const name = data[0].match(/[a-z|A-Z|0-9]*\_/)[0].slice(0, -1); 18 | const number = data[0].match(/\_[0-9]*/)[0].substr(1); 19 | if (number && name) { 20 | menuIDs[number] = name; 21 | } 22 | } 23 | } 24 | }); 25 | rl.on("close", () => resolve(menuIDs)); 26 | }); 27 | }; 28 | 29 | const version = 2024; 30 | const datFile = `C:/Program Files/Adobe/Adobe After Effects ${version}/Support Files/Dictionaries/es_ES/after_effects_es_ES.dat`; 31 | 32 | getCmdIds(datFile).then((res) => { 33 | console.log(`${Object.keys(res).length} Command IDs Found`); 34 | const txt = JSON.stringify(res, null, "\t"); 35 | const outFile = path.join(__dirname, `${version}.json`); 36 | fs.writeFileSync(outFile, txt, { 37 | encoding: "utf-8", 38 | }); 39 | console.log(`File written to: ${outFile}`); 40 | }); 41 | -------------------------------------------------------------------------------- /parser/scanner.scpt: -------------------------------------------------------------------------------- 1 | -- Run Script 2 | -- Copy results to file 3 | -- Clean up any syntax errors and fix \" with " 4 | -- Remove curly quotes 5 | -- Remove any ... 6 | -- Remove any "missing value" 7 | -- Remove email 8 | -- Remove Apple menu 9 | -- Remove : (none) 10 | -- Remove Extensions menu 11 | -- Remove scripts menu 12 | 13 | 14 | tell application "System Events" 15 | tell process "After Effects" 16 | set resultString to "{" 17 | tell menu bar 1 18 | set menuBarItems to name of every menu bar item 19 | repeat with menuName in menuBarItems 20 | set menuItemsString to my processMenu(menu bar item menuName, menuName) 21 | set resultString to resultString & "\"" & menuName & "\":" & menuItemsString 22 | if menuName is not item -1 of menuBarItems then set resultString to resultString & ", " 23 | end repeat 24 | end tell 25 | set resultString to resultString & "}" 26 | return resultString 27 | end tell 28 | end tell 29 | 30 | on processMenu(menuObject, menuName) 31 | tell application "System Events" 32 | set menuItemsString to "[" 33 | tell menuObject 34 | tell menu menuName 35 | repeat with i from 1 to (count of (every menu item)) 36 | set menuItemName to name of menu item i 37 | set submenuString to "" 38 | if exists menu of menu item i then 39 | set submenuString to my processMenu(menu item i, menuItemName) 40 | set menuItemsString to menuItemsString & "{\"" & menuItemName & "\":" & submenuString & "}" 41 | else 42 | set menuItemsString to menuItemsString & "\"" & menuItemName & "\"" 43 | end if 44 | if i is not (count of (every menu item)) then set menuItemsString to menuItemsString & ", " 45 | end repeat 46 | end tell 47 | end tell 48 | set menuItemsString to menuItemsString & "]" 49 | return menuItemsString 50 | end tell 51 | end processMenu 52 | 53 | 54 | 55 | -- Ignore Submenus: 56 | 57 | -- tell application "System Events" 58 | -- tell process "After Effects" 59 | -- set resultString to "{" 60 | -- tell menu bar 1 61 | -- set menuBarItems to name of every menu bar item 62 | -- repeat with menuName in menuBarItems 63 | -- set menuItemsString to "" 64 | -- tell menu bar item menuName 65 | -- tell menu menuName 66 | -- repeat with i from 1 to (count of menu items) 67 | -- set menuItemName to name of menu item i 68 | -- set menuItemsString to menuItemsString & "\"" & menuItemName & "\"" 69 | -- if i is not (count of menu items) then set menuItemsString to menuItemsString & ", " 70 | -- end repeat 71 | -- end tell 72 | -- end tell 73 | -- set resultString to resultString & "\"" & menuName & "\":[" & menuItemsString & "]" 74 | -- if menuName is not item -1 of menuBarItems then set resultString to resultString & ", " 75 | -- end repeat 76 | -- end tell 77 | -- set resultString to resultString & "}" 78 | -- return resultString 79 | -- end tell 80 | -- end tell 81 | -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react"; 2 | const { useState } = React; 3 | 4 | import manual from "../json/manual.json"; 5 | 6 | import cmds2025 from "../json/2025.json"; 7 | import cmds2024 from "../json/2024.json"; 8 | import cmds2023 from "../json/2023.json"; 9 | import cmds2022 from "../json/2022.json"; 10 | import cmds2021 from "../json/2021.json"; 11 | import cmds2020 from "../json/2020.json"; 12 | import cmds2019 from "../json/2019.json"; 13 | import cmds2018 from "../json/2018.json"; 14 | import cmds2017 from "../json/2017.json"; 15 | import cmds2015_3 from "../json/2015.3.json"; 16 | import cmds2015 from "../json/2015.json"; 17 | import nameOverrides from "../json/name-overrides.json"; 18 | 19 | import "./styles.scss"; 20 | import { Badge } from "./badge/badge"; 21 | 22 | interface DataByYear { 23 | [key: string]: string; 24 | } 25 | interface DataCommand { 26 | [key: string]: string; 27 | } 28 | interface DataByCommands { 29 | [key: string]: DataCommand; 30 | } 31 | interface FormatPair { 32 | obj: DataByYear; 33 | year: string; 34 | } 35 | 36 | const years = [ 37 | "(manual)", 38 | "2025", 39 | "2024", 40 | "2023", 41 | "2022", 42 | "2021", 43 | "2020", 44 | "2019", 45 | "2018", 46 | "2017", 47 | "2015_3", 48 | "2015", 49 | ]; 50 | const cmdList: DataByCommands = {}; 51 | 52 | const overrideMatch = (key: string) => { 53 | const match = nameOverrides[key as keyof typeof nameOverrides]; 54 | if (match) { 55 | console.log(`Override: ${key} -> ${match}`); 56 | return match; 57 | } 58 | return key; 59 | }; 60 | 61 | const formatData = (data: FormatPair[]) => { 62 | data.map(({ obj, year }) => { 63 | Object.keys(obj).map((key) => { 64 | const cmd = overrideMatch(obj[key]) as keyof DataCommand; 65 | if (!cmdList[cmd]) { 66 | cmdList[cmd] = { [year]: key }; 67 | } else { 68 | if (cmdList[cmd][year]) { 69 | console.warn( 70 | `Duplicate command found: ${cmd} for year ${year}. Existing key: ${cmdList[cmd][year]}, new key: ${key}.` 71 | ); 72 | let i = 2; 73 | const freeCmdName = `${cmd} (${i})`; 74 | if (!cmdList[freeCmdName]) { 75 | console.log(`new cmd ${freeCmdName}`); 76 | cmdList[freeCmdName] = { [year]: key }; 77 | } else { 78 | cmdList[freeCmdName][year] = key; 79 | } 80 | } else { 81 | cmdList[cmd][year] = key; 82 | } 83 | } 84 | }); 85 | }); 86 | }; 87 | 88 | const dataObj = [ 89 | { obj: manual, year: "(manual)", count: Object.keys(manual).length }, 90 | { obj: cmds2025, year: "2025", count: Object.keys(cmds2025).length }, 91 | { obj: cmds2024, year: "2024", count: Object.keys(cmds2024).length }, 92 | { obj: cmds2023, year: "2023", count: Object.keys(cmds2023).length }, 93 | { obj: cmds2022, year: "2022", count: Object.keys(cmds2022).length }, 94 | { obj: cmds2021, year: "2021", count: Object.keys(cmds2021).length }, 95 | { obj: cmds2020, year: "2020", count: Object.keys(cmds2020).length }, 96 | { obj: cmds2019, year: "2019", count: Object.keys(cmds2019).length }, 97 | { obj: cmds2018, year: "2018", count: Object.keys(cmds2018).length }, 98 | { obj: cmds2017, year: "2017", count: Object.keys(cmds2017).length }, 99 | { obj: cmds2015_3, year: "2015_3", count: Object.keys(cmds2015_3).length }, 100 | { obj: cmds2015, year: "2015", count: Object.keys(cmds2015).length }, 101 | ]; 102 | 103 | formatData(dataObj); 104 | 105 | const isIframe = window.self != window.top; 106 | 107 | export default () => { 108 | const [val, setVal] = useState(""); 109 | return ( 110 |
111 |

After Effects Command IDs

112 | 113 | {!isIframe && } 114 | 115 | setVal(e.target.value)} 119 | value={val} 120 | spellCheck={false} 121 | placeholder="search..." 122 | /> 123 | 124 | 125 | 126 | 129 | {years.map((year, i) => ( 130 | 142 | ))} 143 | 144 | {Object.keys(cmdList) 145 | .sort() 146 | 147 | .map( 148 | (cmd, i) => 149 | cmd.toLowerCase().indexOf(val.toLowerCase()) > -1 && ( 150 | 151 | 152 | {years.map((year, ii) => ( 153 | 161 | ))} 162 | 163 | ) 164 | )} 165 | {/* {Object.keys(manual) 166 | .sort() 167 | .map( 168 | (cmd, i) => 169 | cmd.toLowerCase().indexOf(val.toLowerCase()) > -1 && ( 170 | 171 | 172 | {years.map((year, ii) => ( 173 | 181 | ))} 182 | 183 | ) 184 | )} */} 185 | 186 |
127 | Name 128 | 139 | {year.replace("_", ".")} 140 | {dataObj.find((obj) => obj.year === year)?.count} 141 |
{cmd} 159 | {cmdList[cmd][year] || "N/A"} 160 |
{cmd} 179 | {cmdList[cmd][year] || "N/A"} 180 |
187 |
188 | ); 189 | }; 190 | -------------------------------------------------------------------------------- /src/badge/badge.scss: -------------------------------------------------------------------------------- 1 | .badge { 2 | position: absolute; 3 | right: 1rem; 4 | top: 1rem; 5 | display: flex; 6 | flex-direction: row; 7 | font-size: 0.75rem; 8 | gap: 0.5rem; 9 | vertical-align: top; 10 | transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1); 11 | color: #d3dfe9; 12 | text-decoration: none; 13 | } 14 | .badge > img { 15 | width: 150px; 16 | } 17 | .badge-icon { 18 | width: 40px !important; 19 | filter: saturate(0); 20 | opacity: 0.5; 21 | transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1); 22 | padding: 3px; 23 | border: 1px solid transparent; 24 | border-radius: 100%; 25 | } 26 | .badge-description { 27 | transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1); 28 | transform: translateX(-5%); 29 | opacity: 0; 30 | } 31 | .badge:hover { 32 | .badge-icon { 33 | border: 1px solid #ffffffaa; 34 | filter: saturate(1); 35 | opacity: 1; 36 | } 37 | .badge-description { 38 | transform: translateX(0%); 39 | opacity: 1; 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /src/badge/badge.tsx: -------------------------------------------------------------------------------- 1 | import "./badge.scss"; 2 | 3 | import icon from "./hb-icon.svg"; 4 | 5 | export const Badge = () => { 6 | return ( 7 | 12 |

powered by Hyper Brew

13 | Hyper Brew 14 |
15 | ); 16 | }; 17 | -------------------------------------------------------------------------------- /src/badge/hb-icon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/favicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/globals.d.ts: -------------------------------------------------------------------------------- 1 | declare module "*.png"; 2 | declare module "*.gif"; 3 | declare module "*.jpg"; 4 | declare module "*.svg"; 5 | -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- 1 | import { createRoot } from "react-dom/client"; 2 | import App from "./app"; 3 | 4 | const root = createRoot(document.getElementById("root")!); 5 | root.render(); 6 | -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #061520; 3 | color: #d3dfe9; 4 | font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; 5 | } 6 | .main { 7 | } 8 | h2 { 9 | text-align: center; 10 | } 11 | .searchbox { 12 | background-color: transparent; 13 | color: #d3dfe9; 14 | border: 1px solid#374b5a; 15 | border-radius: 5px; 16 | padding: 0.5rem 1rem; 17 | margin-bottom: 1rem; 18 | outline: none; 19 | overflow: hidden; 20 | width: calc(100% - 2rem); 21 | } 22 | .results { 23 | outline: none; 24 | border: 1px solid#374b5a; 25 | border-right: none; 26 | border-left: none; 27 | padding: 0.5rem; 28 | display: flex; 29 | flex-direction: column; 30 | text-align: left; 31 | height: calc(100vh - 11rem); 32 | overflow: scroll; 33 | } 34 | .result { 35 | display: flex; 36 | flex-direction: row; 37 | line-height: 35px; 38 | } 39 | table { 40 | /* margin: auto; */ 41 | width: 100%; 42 | } 43 | tr { 44 | border-bottom: 1px solid #374b5a; 45 | } 46 | th { 47 | user-select: none; 48 | sup { 49 | font-weight: 100; 50 | font-size: 0.65rem; 51 | margin-left: 0.2rem; 52 | } 53 | } 54 | .result-code { 55 | text-align: right; 56 | width: 40%; 57 | margin-left: 1rem; 58 | } 59 | .result-header { 60 | border-bottom: 3px solid #374b5a; 61 | } 62 | .result-key { 63 | text-align: left; 64 | font-weight: 600; 65 | white-space: nowrap; 66 | } 67 | .result-name { 68 | width: 300px; 69 | /* margin-left: 1rem; */ 70 | } 71 | .result-year { 72 | width: 6%; 73 | min-width: 70px; 74 | margin-left: 1rem; 75 | } 76 | .result-na { 77 | opacity: 0.3; 78 | } 79 | 80 | /* width */ 81 | ::-webkit-scrollbar { 82 | width: 0px; 83 | height: 0px; 84 | background: #222; 85 | } 86 | /* Track */ 87 | ::-webkit-scrollbar-track { 88 | background: #222; 89 | border-radius: 5px; 90 | } 91 | /* Handle */ 92 | ::-webkit-scrollbar-thumb { 93 | background: #555; 94 | border-radius: 5px; 95 | } 96 | /* Handle on hover */ 97 | ::-webkit-scrollbar-thumb:hover { 98 | background: #333; 99 | } 100 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ESNext", 4 | "useDefineForClassFields": true, 5 | "lib": ["DOM", "DOM.Iterable", "ESNext"], 6 | "allowJs": false, 7 | "skipLibCheck": false, 8 | "esModuleInterop": false, 9 | "allowSyntheticDefaultImports": true, 10 | "strict": true, 11 | "forceConsistentCasingInFileNames": true, 12 | "module": "ESNext", 13 | "moduleResolution": "Node", 14 | "resolveJsonModule": true, 15 | "isolatedModules": true, 16 | "noEmit": true, 17 | "jsx": "react-jsx" 18 | }, 19 | "include": ["./src", "./json"], 20 | "exclude": ["node_modules/@types/react/index.d.ts"] 21 | } 22 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from "vite"; 2 | import react from "@vitejs/plugin-react"; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | --------------------------------------------------------------------------------