You are viewing a post by D' Angelo. View all 121 posts in Hi guys, Its just small scripting i've made to use [b]Flash Navigation[/b]. [b]Credits to Sis Annanyeep :arrow: [url=http://theftalk.com/viewtopic.php?id=15097&p=1]Menu Navigation[/url][/b] [b].
[/quote]
[quote][b][color=#0000cc]//CSS Injection[/color][/b]
function injectcss() {
if(window.cssinjected == undefined) {
cssinjected = 1;
var css = document.createElement("link");
css.setAttribute("type","text/css");
css.setAttribute("rel","stylesheet");
css.setAttribute("href","CSS URL");
css.setAttribute("media","screen, print");
document.getElementsByTagName("head")[0].appendChild(css);
}
}
injectcss();
[color=#cc0000][b]The Custom Flash Navigation Code[/b][/color]
[color=#0000cc][b]// Onload Handler[/b][/color]
function onProfileLoad() {[/quote]