This is a discussion on Remove flash in html page using swfobject.js within the Flash Actionscript Programming forums, part of the Web Development category; Hi, Can any one help me. Does SWFObject have a method to remove the Flash from a defined div? I ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Hi, Can any one help me. Does SWFObject have a method to remove the Flash from a defined div? I am wanting to call a function, using ExternalInterface, that will remove the calling content. Or, alternatively, anyone know a way in JavaScript to clear a div? thanks in advance
__________________ The OXYGEN Delivers edgy, intelligent Technology to all... |
| Sponsored Links |
| |||
| Hi, SWFObject has a built-in method named "deconcept.SWFObjectUtil.cleanupSWF", but i'm not sure that it's appropriate for your needs. (Geoff? Aran?) a simple way to clear a SWF is to use innerHTML to replace the DIV's content. if you want to use a function, you could try something like: function removeDivContent(targetDiv){ var div = document.getElementById(targetDiv); div.innerHTML = ""; } or function replaceDivContent(targetDiv, newContent){ var div = document.getElementById(targetDiv); div.innerHTML = newContent; } if you're familiar with DOM scripting, you could also use removeChild() to delete the DIV itself. something like: function deleteNode(targetDiv){ var div = document.getElementById(targetDiv); if(div){ var p = div.parentNode; p.removeChild(div); } } Bye <aramesh> |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| If any possible for Html page encrypt | sathian | HTML, CSS and Javascript Coding Techniques | 1 | 12-03-2007 08:52 PM |
| How to change aspx page to html page? | S.Vinothkumar | ASP and ASP.NET Programming | 4 | 10-26-2007 11:46 PM |
| Animated Index html Using Flash | aramesh | Flash Actionscript Programming | 0 | 09-07-2007 08:06 AM |
| Display html files in Flash | oxygen | Flash Actionscript Programming | 1 | 07-19-2007 12:54 AM |
| How to Open a HTML file inside Flash | Balasubramanian.S | Flash Actionscript Programming | 8 | 03-28-2007 09:54 AM |