Hi, I have having the same issue for trying to put a soundcloud player on my site.
Thanks everyone and Chris Hope especially for posting the below.
I can change code in the files but would really appreciate a step by step instruction on how to do this ( I do clinical counseling and dabble in free human computer education and therapy interfaces for the public but can really only do programming "labor" - trying to be a full programmer makes my head hurt sometimes):
From Chris Hope:
Re: iframes and tinyMCE Link to this post
9 May 2011 at 11:20am
Now that I've actually tried this it doesn't work as expected because the content has already been loaded into the object using domdocument so it's already collapsed the iframe. I've used this regexp instead:
function onBeforeWrite() {
$this->Content = preg_replace('|<iframe(.*)/>|Uims', '<iframe\\1> </iframe>', $this->Content);
parent::onBeforeWrite();
}
___________________
Thanks, Peter Meilahn - www.mindvolume.com