Skip to main content
Inspiring
July 9, 2024
Question

CEP javascript won't execute when launching the extension from menu

  • July 9, 2024
  • 1 reply
  • 181 views

<!doctype html>
<html lang="en">
<head>
<title>**</title>
</head>
<body>
</body>
<script>
window.onload = function(){
alert("hiloo");
}
</script>
</html>

alert won't  execute unless I set UI in manifest.xml as
<Type>Modeless</Type>


..but I want type to be Panel
what am I missing?

This topic has been closed for replies.

1 reply

Inspiring
July 12, 2024

Have you tried setting autostart to true in the manifest (a shot in the dark)

 

Why do you need onload? You're already at the end of the bidy tag.