View Single Post
Old 02-21-2008, 09:52 PM   PM User | #2
Scott Monahan
New to the CF scene

 
Join Date: Feb 2008
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Scott Monahan is an unknown quantity at this point
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
Scott Monahan is offline   Reply With Quote