CritiKiL
Active member
This is a simple coding question, not about the addon itself. I want my Forum to show a Livestream visible from any mobile device. It shows up perfectly from a computer-view, except it's 'blank' when viewing from a mobile device. The livestream "would work" if the code was in <iframe></iframe> format, but it only provides the old video html code. Here is the code I need to use:
How can I:
HTML:
<object type="application/x-shockwave-flash" width="300" height="168" id="esports_streams_player_hero" data="https://secure.jtvnw.net/widgets/live_embed_player.swf?channel=callofdutyalpha" bgcolor="#000000">
<param name="allowFullScreen" value="true"/>
<param name="allowScriptAccess" value="always"/>
<param name="allowNetworking" value="all"/>
<param name="movie" value="https://secure.jtvnw.net/widgets/live_embed_player.swf"/>
<param name="flashvars" value="hostname=www.twitch.tv&channel=callofdutyalpha&auto_play=true&start_volume=100"/>
</object>
- Convert this code into <iframe></iframe>?
- Make the old code 'viewable' from any mobile device?