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

Panel resizing in vertical axis doesn't work

Community Beginner ,
Feb 21, 2023 Feb 21, 2023

Hi, I'm working on a CEP plugin for Premiere and Media Encoder. There's this bug I can't seem to get around where the renderer's bounds aren't resizing on the vertical axis properly. It looks like this bug has been persisting for quite some time now as it dates back to at least AME 22.5 (minimum version installed for my plugin) from what I can tell. Sometimes it's rendering the "Queue" panel behind it. The horizontal axis resizes just fine, but the vertical is just plain stuck.

 

In the web inspector screenshot, the height is staying at a constant 956 pixels tall.

Bug Unresolved
TOPICS
General , Stability , User experience or interface
1.1K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
6 Comments
Community Expert ,
Feb 21, 2023 Feb 21, 2023

Can confirm this issue in CEP panels for AME has existed back to 2018-2017. Since AME scripting is now officially supported, would be great to get this one fixed!

Translate
Report
Adobe Employee ,
Feb 22, 2023 Feb 22, 2023

I will file a bug for this. Thanks for letting us know.

Translate
Report
Adobe Employee ,
Feb 27, 2023 Feb 27, 2023

Can you share your manifest file?

Translate
Report
Community Beginner ,
Feb 27, 2023 Feb 27, 2023
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<ExtensionManifest
Version="6.0"
ExtensionBundleId="com.justadaniel.wrendertime"
ExtensionBundleVersion="0.0.2.16"
ExtensionBundleName="WrenderTime"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>
<ExtensionList>
  <Extension Id="com.justadaniel.wrendertime.settings" Version="0.0.2.16" />
</ExtensionList>
<ExecutionEnvironment>
  <HostList>
    <Host Name="AME" Version="22.1" />
  </HostList>
  <LocaleList>
    <Locale Code="All" />
  </LocaleList>
  <RequiredRuntimeList>
    <RequiredRuntime Name="CSXS" Version="11.0" />
  </RequiredRuntimeList>
</ExecutionEnvironment>
<DispatchInfoList>
  <Extension Id="com.justadaniel.wrendertime.settings">
    <DispatchInfo>
      <Resources>
        <MainPath>./settings/index.html</MainPath>
        <CEFCommandLine>
          <Parameter>--v=5</Parameter>
          <Parameter>--enable-nodejs</Parameter>
          <Parameter>--mixed-context</Parameter>
          <Parameter>--enable-media-stream</Parameter>
          <Parameter>--disable-site-isolation-trials</Parameter>
        </CEFCommandLine>
      </Resources>
      <Lifecycle>
        <AutoVisible>true</AutoVisible>
      </Lifecycle>
      <UI>
        <Type>Panel</Type>
        <Menu>WrenderTime - Settings</Menu>
        <Geometry>
          <Size>
            <Width>600</Width>
            <Height>700</Height>
          </Size>
        </Geometry>
        <Icons>
          <Icon Type="Normal">./src/assets/dark-icon.png</Icon>
          <Icon Type="DarkNormal">./src/assets/light-icon.png</Icon>
          <Icon Type="RollOver">./src/assets/dark-icon.png</Icon>
          <Icon Type="DarkRollOver">./src/assets/light-icon.png</Icon>
        </Icons>
      </UI>
    </DispatchInfo>
  </Extension>
</DispatchInfoList>
</ExtensionManifest>
Translate
Report
Community Beginner ,
Mar 05, 2023 Mar 05, 2023

Hey, do you happen to know what level of priority this issue is? I'm wanting to release a plugin, but I don't know if I should release it as a panel or a separate window. 

Thanks!

Translate
Report
Adobe Employee ,
Mar 07, 2023 Mar 07, 2023
LATEST

This bug is low priority. I would suggest that you build a windowed application.

Translate
Report