Okay so I got this MOD installed and it only works when I have the promting set to MODE: Prompt. So I tinkered with the code and got it to work here is what I did:
OLD CODE:
function flash() { if (helpstat) { alert("Inserts Flash tags, remember to enter width and height attributes before and after the ::"); } else if (basic) { AddTxt=""; AddText(AddTxt, "[flash :: ]", "[/flash]"); } else { txt=prompt("URL to flash file (.swf)","Text"); if (txt!=null) { AddTxt="[flash :: ]"+txt+"[/flash]"; AddText(AddTxt); } } }
NEW CODE:
function flash() { if (helpstat) { alert("Inserts Flash tags, remember to enter width and height attributes before and after the ::"); } else if (basic) { AddTxt="[flash :: ][/flash]"; AddText(AddTxt); } else { txt=prompt("URL to flash file (.swf)","Text"); if (txt!=null) { AddTxt="[flash :: ]"+txt+"[/flash]"; AddText(AddTxt); } } }
I made a button for this MOD as well. It is displayed below please feel free to get it or if you want request it through email and I will send it to you.
and please do share the asp source you are referring to. I've seen client side tricks like this but I am unaware of your ability to actually get that info so please do share.