I found this API in a youtube video and love it.  Works like a charm for png files.  But I have an animated webm file I bought and would like to use it but it doesn't work.  Does anyone know if I need to use a different tag or change the code somewhat to put this token on the map?     on("ready",function() {     on("chat:message",function(msg){         if(msg.type=="api" && msg.content.indexOf("!flamesphere")==0)         {             var selected = msg.selected;             if (selected===undefined)             {                 sendChat("API","Please select a character.");                 return;             }             var tok = getObj("graphic",selected[0]._id);             var character = getObj("character",tok.get("represents"));             var playerlist = character.get("controlledby")                          createObj("graphic",{                 left:tok.get("left")+70,                 top:tok.get("top"),                 height:70,                 width:70,                 pageid:tok.get("pageid"),                 layer:"objects",                 imgsrc:" <a href="https://s3.amazonaws.com/files.d20.io/images/159239444/uTBZXf0ABX4uWI8ku2Uy4w/thumb.png?15980541425" rel="nofollow">https://s3.amazonaws.com/files.d20.io/images/159239444/uTBZXf0ABX4uWI8ku2Uy4w/thumb.png?15980541425</a> ",                 name:tok.get("name") + "'s Spiritual Weapon",                 controlledby:playerlist,                 aura1_radius:0,                 aura1_color:"#ff9900",                 showplayers_aura1:true             });                          spawnFx(tok.get("left")+70,tok.get("top"),"burst-fire",tok.get("pageid"));         }     }); });