HTML Element (Construct 3 Plugins)

  • 18
    This content is deleted
    Addon
    HTML Element

    The power of the HTML5 inside Construct 3. Create HTMLElements, handle events and manage CSS style.

You're viewing a single comment in a conversation. View all the comments
  • 2 Comments

  • Order by
  • Good afternoon, is it possible to use your plugin to insert another html page without using the iframe tag. Many sites block the display in the iframe, so this method is not suitable for me. I will be grateful for any help.

    • It depends on what you mean by inserting an html page. You can use the "Text like HTML" option and insert an HTML code into the text:

      ```html

      <p>This is a paragraph.</p>

      <p style="color:red">This is another paragraph.</p>

      <h1>HELLO!</h1>

      <img src="https://construct-static.com/images/v865/r/global/construct-3-logo_v43.png" alt="c3logo">

      ```

      This way you can create an html component on top of the construct canvas.

      I don't think you can bypass an iframe to display an external page.