Flasher Archive

[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]


Subject: R: R: FLASH: New Browser Window
From: Jacopo Deyla
Date: Tue, 18 Jan 2000 19:02:53 GMT

I dunnow if there is this method is qite simple, the only things you have to
know is
image path and size

the html could be easier, most of the things in ther are for making a table,
but you can delete all tds an trs in window1.document.write.
just:


> function opwin(imm, w,h){
> features="toolbars=NO,width="+w+",height="+h+",resizable=no";
> window1=window.open("","...",features);
> if(window1.document.images[0]==null){
> window1.document.write("<body><div align='center'><img src='PATH");
> window1.document.write(imm);
> window1.document.write("' ></div></body>");}
> else{
> window1.document.images[0].src="PATH"+imm;}
> window1.document.close;
> window1.focus();

Flash 3 doesn't support variables so you have to specify width, height and
image path everytime

but it should work

I have no other ideas



flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Streaming Media WEST '99 Conference & Exhibition
"The Worlds largest Internet Audio & Video Event"
December 7 - 9, San Jose Convention Center, California

Reserve your space today at http://www.streamingmedia.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpatchinwag [dot] com


Replies
  Re: R: FLASH: New Browser Window, | | | |||| | |

[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]