I got an external txt-file that loads into a dynamic text box in flash. I’m currently using <a href=></a> in the txt-file with target="_blank" to open links in a new window, but is it possible to use javascript:OpenNewWindow in a way to specify the width, height etc. of the new window.
I’ve used this directly in flash before:
on (release) {
getURL(“javascript:openNewWindow(‘URL’,height=,width=,toolbar=no,scrollbars=no’)”);
}
But I don’t know how to use this with the txt-file. Hope someone can guide me in the right direction.