Re: answer buttons incorporating a varible

2004-05-30 Thread Rich Lague
Thanks Thierry! It works.
This list is a wonderful resource! I ask a question and get an 
immediate answer... :)

Rich
On Sunday, May 30, 2004, at 12:05  PM, Thierry Arbellot wrote:
Hi Rich,
Try to put the expression in brackets.
on makeChoices
  put "someProduct" into tProduct
  answer "What's your pleasure?" with "new eval of another product"\
  or "open old evaluation" or ("Evaluate" && tProduct)
end makeChoices
Thierry.
On Sunday, May 30, 2004, at 20:50 Europe/Paris, Rich Lague wrote:
I'm trying to get the answer command to give a button with quoted 
text and a variable in it.

The following script results in 4 buttons: "What's your pleasure?", 
"new eval of another product", "Evaluate" and "someProduct".

on makeChoices
  put "someProduct" into tProduct
  answer "What's your pleasure?" with "new eval of another product"\
  or "open old evaluation" or "Evaluate" && tProduct
end makeChoices
I want 3 buttons with the last button reading "Evaluate someProduct".
I have also tried it like this:
on makeChoices
  put "someProduct" into tProduct
  answer "What's your pleasure?" with "new eval of another product"\
  or "open old evaluation" or "Evaluate && tProduct"
end makeChoices
This script returns three buttons, but the last button reads 
"Evaluate && tProduct".

Is there a way?
Thanks!
Rich Lague
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: answer buttons incorporating a varible

2004-05-30 Thread Thierry Arbellot
Hi Rich,
Try to put the expression in brackets.
on makeChoices
  put "someProduct" into tProduct
  answer "What's your pleasure?" with "new eval of another product"\
  or "open old evaluation" or ("Evaluate" && tProduct)
end makeChoices
Thierry.
On Sunday, May 30, 2004, at 20:50 Europe/Paris, Rich Lague wrote:
I'm trying to get the answer command to give a button with quoted text 
and a variable in it.

The following script results in 4 buttons: "What's your pleasure?", 
"new eval of another product", "Evaluate" and "someProduct".

on makeChoices
  put "someProduct" into tProduct
  answer "What's your pleasure?" with "new eval of another product"\
  or "open old evaluation" or "Evaluate" && tProduct
end makeChoices
I want 3 buttons with the last button reading "Evaluate someProduct".
I have also tried it like this:
on makeChoices
  put "someProduct" into tProduct
  answer "What's your pleasure?" with "new eval of another product"\
  or "open old evaluation" or "Evaluate && tProduct"
end makeChoices
This script returns three buttons, but the last button reads "Evaluate 
&& tProduct".

Is there a way?
Thanks!
Rich Lague
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


answer buttons incorporating a varible

2004-05-30 Thread Rich Lague
I'm trying to get the answer command to give a button with quoted text 
and a variable in it.

The following script results in 4 buttons: "What's your pleasure?", 
"new eval of another product", "Evaluate" and "someProduct".

on makeChoices
  put "someProduct" into tProduct
  answer "What's your pleasure?" with "new eval of another product"\
  or "open old evaluation" or "Evaluate" && tProduct
end makeChoices
I want 3 buttons with the last button reading "Evaluate someProduct".
I have also tried it like this:
on makeChoices
  put "someProduct" into tProduct
  answer "What's your pleasure?" with "new eval of another product"\
  or "open old evaluation" or "Evaluate && tProduct"
end makeChoices
This script returns three buttons, but the last button reads "Evaluate 
&& tProduct".

Is there a way?
Thanks!
Rich Lague
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution