|
Support: Tech Notes
Tech note FS1456
Description
How do I change the Year settings in the "Days to Analyze" field on the Report Request Forms?
Answer
FlashStats 1.5 shipped with "2001" as the last year selection in the "Days to Analyze" field on the report request forms. You need to manually edit the Report Request Form(s) to include later years.
To manually edit the forms:
- Locate the index.html and advanced.html (or default.htm and advanced.htm) files in your /FlashStats/ directory.
- Open the documents using any standard text editor (Notepad, etc.).
- Locate the following code on the pages:
<select name="sy">
<option value="1995">1995
<option value="1996">1996
<option value="1997">1997
<option value="1998">1998
<option value="1999">1999
<option value="2000">2000
<option value="2001">2001
</select>
- Add the following lines on the first line after "2001" and preceding "</select>":
<option value="2002">2002
<option value="2003">2003
<option value="2004">2004
<option value="2005">2005
<option value="2006">2006
<option value="2006">2007
<option value="2006">2008
<option value="2006">2009
<option value="2006">2010
- The completed code should look like this:
<select name="sy">
<option value="1995">1995
<option value="1996">1996
<option value="1997">1997
<option value="1998">1998
<option value="1999">1999
<option value="2000">2000
<option value="2001">2001
<option value="2002">2002
<option value="2003">2003
<option value="2004">2004
<option value="2005">2005
<option value="2006">2006
<option value="2006">2007
<option value="2006">2008
<option value="2006">2009
<option value="2006">2010
</select>
- You will need to do the same for the code block that follows it so that:
<select name="ey">
<option value="1995">1995
<option value="1996">1996
<option value="1997">1997
<option value="1998">1998
<option value="1999">1999
<option value="2000">2000
<option value="2001">2001
</select>
Becomes:
<select name="ey">
<option value="1995">1995
<option value="1996">1996
<option value="1997">1997
<option value="1998">1998
<option value="1999">1999
<option value="2000">2000
<option value="2001">2001
<option value="2002">2002
<option value="2003">2003
<option value="2004">2004
<option value="2005">2005
<option value="2006">2006
<option value="2006">2007
<option value="2006">2008
<option value="2006">2009
<option value="2006">2010
</select>
Be sure to make these changes to both files (default.htm and advanced.htm).
|