I have a Flash widget that I'm trying to add to my GWT application. I've successfully used jQuery on a static page to embed this widget:
<script type="text/javascript" language="javascript"> jQuery(document).ready(function($) { $('#flash').flash( { src: '/flash/ImageGallery.swf', width: 964, height: 219, id: 'ImageGallery', bgcolor: '#FFFFFF', name: 'ImageGallery', wmode: 'opaque', flashvars: {feedLink: '/feed/images.xml', errorText: 'temporarily unavailable', headerText:'new images' } }, { version: 9, expressInstall:true} ); }); </script> I've tried to use the GWT2SWF SWFWidget as well as raw HTML (new HTML ()) to add this to a GWT page, but have had no luck. When I run in hosted mode (or in Firefox), the dimensions of the Flash object show up and it's obvious Flash recognizes *something*, but nothing renders. If I "view generated source" and save the page to my hard drive, the flash widget renders just fine. Any ideas? Thanks, Matt --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---