I would like to some big volume images to be preloaded as
the HTML page opening. Then how to describe the function
in VBScript?

If any, please let me know.

Thanks,
regard.



--

-----------------------------------------
Osamu Terao
Email: hag83950@ams.odn.ne.jp
-----------------------------------------

Re: how to preload Images by Walter

Walter
Thu Jul 17 12:00:09 CDT 2003

Set MyImage = Image(800,600)
MyImage.Src = "myBigImage.jpg"

"Osamu Terao" <hag83950@ams.odn.ne.jp> wrote in message
news:%23dVgOkHTDHA.3132@tk2msftngp13.phx.gbl...
> I would like to some big volume images to be preloaded as
> the HTML page opening. Then how to describe the function
> in VBScript?
>
> If any, please let me know.
>
> Thanks,
> regard.
>
>
>
> --
>
> -----------------------------------------
> Osamu Terao
> Email: hag83950@ams.odn.ne.jp
> -----------------------------------------



Re: how to preload Images by Osamu

Osamu
Thu Jul 17 21:15:15 CDT 2003

Thanks Walter,

By the way, how can I use the preloaded MyImage Object
to view in the pages? Maybe;

document.write MyImage
or
<Img id=MyImage >

or someway else...????


"Walter Zackery" <PleaseRespond@Newsgroup.com> wrote in message
news:%23hlygTITDHA.1916@TK2MSFTNGP12.phx.gbl...
> Set MyImage = Image(800,600)
> MyImage.Src = "myBigImage.jpg"
>
> "Osamu Terao" <hag83950@ams.odn.ne.jp> wrote in message
> news:%23dVgOkHTDHA.3132@tk2msftngp13.phx.gbl...
> > I would like to some big volume images to be preloaded as
> > the HTML page opening. Then how to describe the function
> > in VBScript?
> >
> > If any, please let me know.
> >
> > Thanks,
> > regard.
> >
> >
> >
> > --
> >
> > -----------------------------------------
> > Osamu Terao
> > Email: hag83950@ams.odn.ne.jp
> > -----------------------------------------
>
>


Re: how to preload Images by Walter

Walter
Fri Jul 18 02:54:25 CDT 2003

There are several ways to insert the image into the document.

1) document.write MyImage.outerHTML
2) document.body.AppendChild MyImage
3) <img src="myBigImage.jpg">

The third way is probably preferable since it's simply straightforward HTML.
You can if you wish override the width and height parameters that you passed
to the Image constructor by setting width and height in the HTML.

"Osamu Terao" <hag83950@ams.odn.ne.jp> wrote in message
news:%238Q%23pINTDHA.1320@TK2MSFTNGP12.phx.gbl...
> Thanks Walter,
>
> By the way, how can I use the preloaded MyImage Object
> to view in the pages? Maybe;
>
> document.write MyImage
> or
> <Img id=MyImage >
>
> or someway else...????
>
>
> "Walter Zackery" <PleaseRespond@Newsgroup.com> wrote in message
> news:%23hlygTITDHA.1916@TK2MSFTNGP12.phx.gbl...
> > Set MyImage = Image(800,600)
> > MyImage.Src = "myBigImage.jpg"
> >
> > "Osamu Terao" <hag83950@ams.odn.ne.jp> wrote in message
> > news:%23dVgOkHTDHA.3132@tk2msftngp13.phx.gbl...
> > > I would like to some big volume images to be preloaded as
> > > the HTML page opening. Then how to describe the function
> > > in VBScript?
> > >
> > > If any, please let me know.
> > >
> > > Thanks,
> > > regard.
> > >
> > >
> > >
> > > --
> > >
> > > -----------------------------------------
> > > Osamu Terao
> > > Email: hag83950@ams.odn.ne.jp
> > > -----------------------------------------
> >
> >
>