@driven said:
I've got this working to the extent of mimicking your 'youTube' clip,
Great!
@driven said:
plus the minimise button which took forever to get hold of.... It was only after I noticed it's missing from your demo....
O how stupid of me, i didn't even notice... I made the video on linux(wine). The button is not working in the current version, i stripped out all the javascript. I was planning to recreate the full html on each action using set_html
, to keep the webdialog simple. Maybe it's automatically fixed when it works on safari(I don't know if wine uses a version of IE, or the default linux browser).
@driven said:
why are you using 1999 XHTML? it's 2012...
Didn't give that much thought(didn't even realize there would be differences between MAC and PC, when I started out).
I tried to keep it as common as possible. Having a DTD seemed very important, how else could a browser pick the correct way of rendering? But when i read a bit more about HTML5 it seems they left the DTD out ?! And xml-style(like <br />) is valid if you want to, but does not seem to be the preferred way...
When I read a bit more about HTML5, this seems the cleanest:
<!DOCTYPE html>
<html>
...
</html>
I changed this in my code, no problems on IE9, I will also give it a try on IE8...
But declaring the additional
<meta charset=utf-8'>
seems a good idea. And maybe a language identifier???
Would be great if google used a built-in chrome for SketchUp for PC, it beeing webkit-based would simplify things.
And then I could use the http://bimsurfer.org/ webGL IFC viewer from inside SketchUp to check the model in IFC format!
@driven said:
the other was you have two different image paths
I will try your other trick for the temp files...
Thanks!