To all,
I discovered the solution to my problem a short time ago at
domscripting.com/blog/display/99
All I needed to do was replace line 17 in the Apple source code:
Code:
IFrameObj = document.body.appendChild(tempIFrame);
With these two lines:
Code:
var container = document.getElementById("where");
IFrameObj = container.appendChild(tempIFrame);
I've got some reference movie and JS remote calls remaining to do before I can go live with the prototype page at
onter.net/videos_rev.html in a day or two, but this is simply an advisory that the solution has been found and I have taken down the diagnostic pages previously posted as client.html and server.html
thnx,
Scott Monahan