Skipping intro

  • Thread starter Thread starter Steves
  • Start date Start date
S

Steves

Developed a website using FrontPage which uses Flash on
the opening page. It takes about a minute to load at
28.8. Would like to have a button appear early in the
loading that would allow those with slower connections to
skip the introduction. Know how to do the button, just do
not know how to determine the order which it will load.
 
-----Original Message-----
Developed a website using FrontPage which uses Flash on
the opening page. It takes about a minute to load at
28.8. Would like to have a button appear early in the
loading that would allow those with slower connections to
skip the introduction. Know how to do the button, just
do not know how to determine the order which it will load.

Normally, HTML objects like buttons appear in the order
they appear in the HTML. Objects like Flash files and
pictures get in line wating for a TCP/IP connection, and
start loading when the previous item finishes.

If the button is a graphic, you can make it appear earlier
by preloading it in the <head> section. Here's an example:

<script>
var imgEdit = new Image() ;
imgEdit.src = "../images/edit.gif";
</script>

If the Flash player is monopolizing the display, it might
help not to have the player autostart, but instead to have
a <body onload=""> event start the display.

Jim Buyens
Microsoft FrontPage MVP
(e-mail address removed)
http://www.interlacken.com
Author of:
*------------------------------------------------------*
|\----------------------------------------------------/|
|| Microsoft Office FrontPage 2003 Inside Out ||
|| Microsoft FrontPage Version 2002 Inside Out ||
|| Web Database Development Step by Step .NET Edition ||
|| Troubleshooting Microsoft FrontPage 2002 ||
|| Faster Smarter Beginning Programming ||
|| (All from Microsoft Press) ||
|/----------------------------------------------------\|
*------------------------------------------------------*
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Intro page 1
Front Page 2003 1
Flash Intro 2
put Flash page on web site 1
Create intro page 3
100Ah 12v Battery voltage under load 7
Page Loading Speeds 4
Flash Intro 2

Back
Top