Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: General / Current Version (Old)
 Mode Dropdown
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

Hgardner
Starting Member

4 Posts

Posted - 23 July 2001 :  17:09:06  Show Profile
Forgive me if this is ridiculously obvious,
but what is the Mode dropdown for?

gor
Retired Admin

Netherlands
5511 Posts

Posted - 23 July 2001 :  17:13:55  Show Profile  Visit gor's Homepage
Easiest way to find out is to set it to either HELP or PROMPT and then select one of the "format" buttons (the ones for Bold / Italic / Underscore etc.)


Pierre
Join a Snitz Mailinglist
Go to Top of Page

stuF
Average Member

United Kingdom
561 Posts

Posted - 23 July 2001 :  17:18:23  Show Profile  Visit stuF's Homepage
is there anyway that this can be predefined by me as the admin to a certain mode (i would like to make it prompt only, my users would find it easier this way)

Go to Top of Page

Hgardner
Starting Member

4 Posts

Posted - 23 July 2001 :  18:03:12  Show Profile
Thanks! I thought it has something to do with the completed post, it was beginning to drive me nuts!
Go to Top of Page

gor
Retired Admin

Netherlands
5511 Posts

Posted - 23 July 2001 :  18:15:59  Show Profile  Visit gor's Homepage
quote:

is there anyway that this can be predefined by me as the admin to a certain mode (i would like to make it prompt only, my users would find it easier this way)



Yes, though you'll have to go into the code.
Depending on what you want, you need to edit 2 pages:
1) In post.asp find:

<table border=0>
<tr>
<td>
<font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"><b>Mode:</b>
<select name="font" onChange="thelp(this.options[this.selectedIndex].value)">
<option value="1">Help </option>
<option value="2">Prompt </option>
<option selected value="0">Basic </option>
</select>
</font></td>
</tr>
</table>

2A) If you want the selectbox to default to Prompt, change it to:

<table border=0>
<tr>
<td>
<font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"><b>Mode:</b>
<select name="font" onChange="thelp(this.options[this.selectedIndex].value)">
<option value="1">Help </option>
<option selected value="2">Prompt </option>
<option selected value="0">Basic </option>
</select>
</font></td>
</tr>
</table>


2B) If you only want to allow "Prompt", just remove the complete codepart first.

3) Now open inc_code.asp (for both alternatives)
Find this code:

helpstat = false;
stprompt = false;
basic = true;

and change it to:

helpstat = false;
stprompt = true;
basic = false;


Pierre
Join a Snitz Mailinglist
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.27 seconds. Powered By: Snitz Forums 2000 Version 3.4.07