Embedded HTML CDF rendered as grey box.
- To: mathgroup at smc.vnet.net
- Subject: [mg126106] Embedded HTML CDF rendered as grey box.
- From: Scott Colwell <scolwell at uoguelph.ca>
- Date: Wed, 18 Apr 2012 03:52:50 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
Has anyone come up with a better solution than the one below for dealing with embedded HTML CDF's that render as a grey boxes due to dynamic content from an untrusted path? The script below adds "{fullscreen:'true'}" to the code in the html file but it would be nice if there was a way to work around the issue so that it doesn't render as grey in the first place. Any ideas? <script src="http://www.wolfram.com/cdf-player/plugin/v2.1/cdfplugin.js" type="text/javascript"> </script> <script type="text/javascript"> var cdf = new cdf_plugin(); cdf.embed("http://path.to/myCDF.cdf", 500, 600,{fullscreen:'true'}); </script>