Normal Topic Changing @Askuser Default (Read 525 times)
nateboone
Junior Member
**
Offline



Posts: 54
Joined: Dec 19th, 2006
Changing @Askuser Default
Dec 19th, 2006 at 8:10pm
Print Post Print Post  
Is there a way to change the @Askuser default answer from "No" to "Yes"?  If not, is there a different function that might allow this flexibility?
  
Back to top
 
IP Logged
 
Hammer
YaBB Administrator
Lanticans
*****
Offline


Fire bad. Tree pretty.

Posts: 3436
Location: Ohio
Joined: Nov 22nd, 2002
Re: Changing @Askuser Default
Reply #1 - Dec 19th, 2006 at 8:17pm
Print Post Print Post  
@AskUser always defaults to "No". Can you phrase the question so that "No" would be the more common answer?

For example, instead of asking ...
"Would you like to proceed without being stabbed with a fork?"

... you could ask ...
"Would you like to be stabbed with a fork?"
  

- Hammer
The plural of anecdote is not data.
Back to top
IP Logged
 
The Cow
YaBB Administrator
*****
Offline



Posts: 2530
Joined: Nov 22nd, 2002
Re: Changing @Askuser Default
Reply #2 - Dec 19th, 2006 at 8:50pm
Print Post Print Post  
Probably not worth the effort, but you could use the Translation Table to do this:

Code
Select All
var aa as string

  AddToTranslationTable("No", "Yes")
  AddToTranslationTable("Yes", "No")
  aa = @AskUser("Do you have a fork?", "", "")
  ReviseTranslationTable("No", "No")
  ReviseTranslationTable("Yes", "Yes")
 

  

Mark Lasersohn&&Programmer&&Lantica Software, LLC
Back to top
IP Logged