Multiply two values from combo list...
Posted: Mon Oct 12, 2009 12:16 am
I have two combo list boxes on a page. I'm trying to get the value from each and multiply them when I click a button.
Just to see if it will work I put this in the combo list code...
I put this code into the combo box
So far so good. I get the answer dialog with the number I've picked.
Then I put this in a button code:
I get nothing.... I'm sure it's something simple but I've fooled with this for about an hour now...
Just to see if it will work I put this in the combo list code...
I put this code into the combo box
Code: Select all
on menuPick pItemName
put pItemName into MyVariable
answer MyVariable
switch pItemName
end switch
end menuPick
Then I put this in a button code:
Code: Select all
on mouseUp
answer MyVariable
end mouseUp