TechWhirl (TECHWR-L) is a resource for technical writing and technical communications professionals of all experience levels and in all industries to share their experiences and acquire information.
For two decades, technical communicators have turned to TechWhirl to ask and answer questions about the always-changing world of technical communications, such as tools, skills, career paths, methodologies, and emerging industries. The TechWhirl Archives and magazine, created for, by and about technical writers, offer a wealth of knowledge to everyone with an interest in any aspect of technical communications.
re: Run Time Error and yellow triangle in lower left corner....?
Subject:re: Run Time Error and yellow triangle in lower left corner....? From:holmegm -at- attbi -dot- com To:"TECHWR-L" <techwr-l -at- lists -dot- raycomm -dot- com> Date:Sat, 17 Aug 2002 09:09:35 -0400
Diana (db -at- movingaheadcom -dot- com) wrote:
>Some of my sites are having trouble. One person recently tried to
>access http://hilliardrotary.org and came up with a Run Time Error.
>I've tried the site and sometimes get a yellow triangle with an
>exclamation point inside in the lower left corner of the screen.
>Text after the triangel says, Done, but with errors on page."
Usually you can click or double-click that triangle, and read the
error message. If that doesn't work, you may have to go into
Internet Explorer Tools-->Options, Advanced tab, and check the check
box that says "Display a notification about every script error".
Then reload the page.
The problem seems to be in your makeArray function.
function makeArray() {
for (i = 0; i<makeArray.arguments.length; i++)
this[i][1] = makeArray.arguments[i];
}
I changed it to read like this:
function makeArray() {
for (i = 0; i<makeArray.arguments.length; i++)
this[i] = makeArray.arguments[i];
}
... and this made my copy of your page work without an error, and
have a date appear in the upper right.
What effect this might have on your other pages, Diana, I do not
know! No warranty (well, a full refund of what you paid ;) ).
--
Greg Holmes
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Save up to 50% with RoboHelp Deluxe. Get 2 great products for 1 low price!
You'll get RoboHelp Office PLUS RoboDemo, the software demonstration tool
that everyone's been talking about. Check it out and save! http://www.ehelp.com/techwr-l
---
You are currently subscribed to techwr-l as:
archive -at- raycomm -dot- com
To unsubscribe send a blank email to leave-techwr-l-obscured -at- lists -dot- raycomm -dot- com
Send administrative questions to ejray -at- raycomm -dot- com -dot- Visit http://www.raycomm.com/techwhirl/ for more resources and info.