Hi everybody!

I'm really breaking my mind. First of all, I'm using GWT 2.2.0.

I'm using Flowplayer to play videos in my web. In a first time, I had
added the player and the video in the html file, in this way:

--------------------
<script type="text/javascript" src="prueba_web/
flowplayer-3.2.6.min.js"></script>

<script>reproFLOWPLAYER='MyProject/flowplayer-3.2.7.swf';</script>
        <a href='/videos/u2.flv' style='display:block;margin:0 auto;height:
300px;width:400px;' id='id_video'> </a>
        <script>flowplayer('video', reproFLOWPLAYER);</script>

    <div id='other_contents' name='other_contents'></div>
--------------------

No problem here, Firefox and IE showed my video. But when I add this
lines to the file where the method onModuleLoad is, Firefox still
works, not IE. I've done it in this way:

-----------------------------------
        String flowStr = "<a href='/videos/u2.flv'
style='display:block;margin:0 auto;height:300px;width:400px;'
id='video'> </a>";
         flowStr = flowStr.concat("<script>flowplayer('video',
reproFLOWPLAYER);</script>");

       Label lab = new Label();
         lab.setContents(flowStr);
                RootPanel.get("other_contents").add(lab);
----------------------------------

This doesn't work in IE, in Firefox there's no problem at all. I
really need your help!!!!

Thanks in advance!!

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to