I can get the window to open up fine with the player in, all fine. But, I get the dreaded 'for your security microsoft' information bar in IE. I'm assuming this is because I hadn't embedded the player properly.
Don't assume. That is the default behavior in IE for all local scripts:
Unless a user's security is really tight, that only happens locally, as a security measure. As far as IE is concerned, javascript is ActiveX. Click on the bar and click on allow and click on yes. Once your page is live, this will not happen. You can also give your page 'the mark of the web'. That way (in most cases) it will not display the security bar locally either. Put this right after your <html> tag like so:
Code:
<html>
<!-- saved from url=(0014)about:internet -->
<!-- this and above comment should be removed for live, non-demo use -->
<head>
But, navigating away from the page to another local page, or including another local page on it via a frame or an iframe can be problematical if said page does not also have 'the mark of the web' on it.
Bookmarks