Groups | Blog | Home
all groups > flash actionscript > march 2004 >

flash actionscript : geturl on another window


bundas1000
3/16/2004 7:41:50 PM
I have a (empty) movie clip that loads external txt file, and the txt is being
treated as html and everything works great but I have not been able to open
another browser window just redirect to the same ( the one that has the MC) any
idea why?

PS: I need to add a link to the txt (html) file that will open another browser
window when clicked
Thanks,

verbalgsx
3/16/2004 9:27:38 PM
I'm not sure what you are asking, please include some code, but if you want to
open a window to a new url use the _blank property e.g

var myURL:String = "http://www.bluetube.com";
getURL(myURL, "_blank");

bundas1000
3/17/2004 2:31:03 PM
Hey Grant,

I have a movie that loads a txt file which is being treated as html and I'm
using this:

<a href="http://www.google.com"><u>more info</u></a>

to open another window with more info but instead it opens on the same window.
I've tried this:

<a href="#"
onClick="MM_openBrWindow('http://www.goolge.com','google','resizable=yes,width=6
00,height=400')">more info</a>

But it wont work.

Thanks,

AddThis Social Bookmark Button