Hi asvforce,
Can you give me an example or code. I am not sure how to do it.......................
Here is my ahref on my first htmp page
<div align="center"><a href="/servername/xxx.pps"
Thanks in advance.
Main Topics
Browse All TopicsHi Javascript experts,
I have a html page which has a hyperlink to open the pps (powerpoint file). It takes quite some times to load the pps, I want to pop up a messagebox to tell users someting like" file is loading, please be patient"
Please advise how to do it?
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Just try this out..
http://www.dynamicdrive.co
Create a new page lets say "custommess.htm" like this
custommess.htm
<html>
<head>
<script>
function shootMe() {
document.getElementById('s
}
</script>
</head>
<body onLoad="shootMe()">
<b>Please wait</b>
<a id="shoot" href="/servername/xxx.pps"
</body>
</html>
and your tag in your first.htm page should be like this
<div align="center"><a href="custommess.htm" target="_blank"><img src="/serername/sss.gif"><
Step 1:
Create a HTM File....
<!------------Progress.htm
<HTML>
<script type="text/javascript" src="xp_progress.js">
</script>
<script type="text/javascript">
function redirectpage(){
bar3.togglePause();
opener.location="http://ww
self.close();
}
</script>
<body>
Loading...
<script type="text/javascript">
/*window.document.statusba
var bar3= createBar(320,15,'white',1
</script>
</body>
</HTML>
<!---------- Progress.htm--------->
Step 2:
Create a HTM file.....
<!------------MAIN.HTM----
<HTML>
<script type="text/javascript">
function a()
{
javascript:window.open('pr
}
</script>
<BODY>
<input type=button onclick="javascipt:a();" value="load"><BR>
<a href='#' onclick="javascipt:a();"> Click here</a>
</BODY>
</HTML>
<!----------MAIN Ends----------->
Step 3:
Hi just download this js from the following url..
http://www.dynamicdrive.co
and Save in the same directory where the HTM files are saved.
Now open the Main.htm file and click the button/Link.....
Regards
Kannan R
Business Accounts
Answer for Membership
by: asvforcePosted on 2007-10-04 at 06:45:43ID: 20014032
You will have to create a page which will open in the new window and in that page you can have your custom message alogn with a javascript which fires on onLoad of body downloading the ppt file.