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

Preloader in extention

New Here ,
Dec 08, 2023 Dec 08, 2023

Hello there !! 
Can someone explain me how to add the preloader in my index.html file that will work in AfterEffect ?
For now i have working html page in Chrome . Everything is OK, preloader is working like i need. 
But when i try to run this as a extention, my preload just doesnt show... 

TOPICS
Error or problem , How to , Scripting
197
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Dec 15, 2023 Dec 15, 2023

Can you provide a code snippet example of what you're using?

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
Explorer ,
Jan 26, 2024 Jan 26, 2024
LATEST

AE CEP not work same as chrome, you can try debug it,

 

create a .debug file, put in your extension root folder, like this

<?xml version="1.0" encoding="UTF-8"?>
<ExtensionList>
  <Extension Id="your extension id">
    <HostList>
      <Host Name="AEFT" Port="port number like 8081"/>
    </HostList>
  </Extension>
 </ExtensionList>

then you can load your extension, and open your chrome,  input link "localhost:8081", now you can debug your extension

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