To all you guys with the Individual account just letting you know, when embedding the 3dvia Beta/Studio Player you must put the code on the page load, for example:
<body>
(code goes here)
</body>
Instead of:
<body>
<span id="playerspan"></span>
<script LANGUAGE="Javascript">
window.setTimeout("document.getElementById('playerspan').innerHTML = '(code goes here)';", 10000);
</script>
</body>
This may seem weird but I did a variety of tests to prove it. For example, just so I knew it was written to the page for sure, I did this:
<body>
<form name="textareaform">
<textarea id="youwillseethecodehere"></textarea>
</form>
<script LANGUAGE="Javascript">
window.setTimeout("document.textareaform.youwillseethecodehere.value = '(code goes here)';", 10000);
</script>
</body>
Surprisingly, this worked.
So for now, embedding the Beta player after the page loads doesn't work. You must have it on the code of the page, like in my first example. Doesn't mean, however, you can't use a server side language of course.
However, embedding the Virtools Player/3d Life Player/3dvia Player does work after load. If you were to try my second example with Virtools Player/3d Life Player/3dvia Player code, this would work. Same goes for 3dxml Player. I recommend use of the Virtools Player/3d Life Player/3dvia Player, since it is the site default so most people can use it. Plus it has been around longer so it has less errors.
This is definitely something to keep in mind when embedding the players in your site.

