I have a flash question. I have a site that uses flash for the navigation bar, and the content is in an iframe. I want to be able to click on one of the links in flash and have the iframe load the new page. basically a flash equivilent of this: <a href="newpage.html" target="iframe">Link</a> HTML: Does anyone know how to do this? Thanks in advance!
in your flash call javascript that modifies the url of the iframe. getURL("javascript:iframeURLBounce('newpage.html')"); Code (markup): then in your html, have a javascript function called iframeURLBounce function iframeURLBounce(url) { document.getElementById("iframeid").src = url; } Code (markup):