Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Explorer Box Tool and Html 5

mathias_schnoor
11 - Bolide

Hey,

 

I inserted in a Workflow an Explorer Box Tool to load a html-File.

The html in included html 5 code.

 

Example:

<video src="..\video\myvideo.mp4" autoplay controls>
    the browser is not able to replay this video
  </video>

 

After a call the html-code, I get the messeage withhin the Explorer Box Tool:

the browser is not able to replay this video

 

When I load the same html code in Firefox or IE it works fine.

 

Can not the Explorer Box Tool render Html 5?

 

Mathias

2 REPLIES 2
Aguisande
15 - Aurora
15 - Aurora

Hi Mathias,

Have you tried to add a complete html declaration? I usually use this structure and its rendered correctly.

Like:

 

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
  </head>
  <body>
    The content of the document......
    <video src="..\video\myvideo.mp4" autoplay controls>
     the browser is not able to replay this video
    </video>
   </body>
</html>

Explorer

Let me know how it went.

Best,

_AG_

mathias_schnoor
11 - Bolide

Hey _AG_,

 

thank you for your support

I  forgot to insert <!DOCTYPE html> in my html source code.

Now it works fine in the Explorer Box tool.

 

Mathias

 

 

Labels