flash - Jinja Bootstrap modal not showing over swf file -


every time click modal on firefox shows under swf.

i tried putting in param make transparent suggested here

<button type="button" class="btn btn-default" data-toggle="modal" role="dialog" data-target="#save"> <span class="glyphicon glyphicon-flash"></span> </button> <row class="col-md-12">         <div class="text-center embed-responsive embed-responsive-4by3 text-center " wmode="transparent" ><embed src="/static{{ game.game_swf }}" name="wmode" value="transparent" /></div> </row>  <div class="modal fade" id="save" tabindex="-1" role="dialog" aria-labelledby="mymodallabel" aria-hidden="true"> <div class="modal-dialog">   <div class="modal-content">    <div class="modal-header">      <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>      <h3 class="modal-title" id="mymodallabel">archive list , start new</h3>     </div>     <form role="form_list" class="form form-medium" action="." method="post">      <div class="modal-body">         <h4>save list as: </h4>     </div>      <div class="modal-footer">         <button type="button" class="btn btn-default" data-dismiss="modal">close</button>         <a href="#">           <button class="btn btn-success">archive list</button></a>     </div>   </form>    </div><!-- modal content -->   </div><!-- modal-dialog --> </div><!-- modal -->s 

but reason still shows swf on modal.

figured out

changed emebed object params.

<object type="application/x-shockwave-flash" data="/static{{ game.game_swf }}">  <param name="movie" value="/static{{ game.game_swf }}">  <param name="wmode" value="transparent"> </object> 

Comments