The cause of this turned out to be because we had a # in the URL (for GWT's history feature).
http://bugs.adobe.com/jira/browse/SDK-13830 The workaround we used was to load the SWF in the EntryPoint and setVisible(false). Then on the View that needs it, we setVisible (true). Hope this helps anyone else that runs into a similar issue. Matt On Feb 9, 4:08 am, Matt Raible <[email protected]> wrote: > 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 [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
