Pop-Up Window

Hi there, i’m struggling to get this one right…i did follow the tut since it’s kinda similar to what i’m trying to achieve. Like the tut, i would like a centered pop-up window but only this time from a rendered text in my scrollbar. How can i achieve this?;(

Ok… on your txt file place this code:


<A HREF='Java****script:popup()'>Link</A>

On the html file that holds your swf put this code:[AS]<script language=“javascript”>
function popup()
{
window.open(“URL”,“newwindow”,“height=550,resizable=no,scrollbars=yes,status=yes,width=600,left=0,top=0”); //you can change those values and add more properties
}
</script>[/AS]