Hi
I am trying to create an Order Form made up of ComboBoxes, that when selected display a currency value in a textfield. I then want the textfields to add up to a total box at the bottom. New to Actionscript and just trying to get my head around everything.
I’ve done the following so far. Don’t know how to add up the values in the text fields to a total. Any help greatly appreciated
[LEFT][COLOR=#993300]import[/COLOR] fl.[COLOR=#000000]controls[/COLOR].[COLOR=#000000]ComboBox[/COLOR];
[COLOR=#993300]import[/COLOR] flash.[COLOR=#993300]text[/COLOR].[COLOR=#993300]TextField[/COLOR];
[COLOR=#993300]import[/COLOR] flash.[COLOR=#993300]text[/COLOR].[COLOR=#000000]TextFieldType[/COLOR];
[COLOR=#993300]var[/COLOR] myComboBox:ComboBox = [COLOR=#993300]new[/COLOR] ComboBoxCOLOR=#000000[/COLOR];
myComboBox.[COLOR=#000000]dropdownWidth[/COLOR] = [COLOR=#000000]210[/COLOR];
myComboBox.[COLOR=#993300]width[/COLOR] = [COLOR=#000000]200[/COLOR];
myComboBox.[COLOR=#000000]move[/COLOR][COLOR=#000000]([/COLOR][COLOR=#000000]10[/COLOR], [COLOR=#000000]10[/COLOR][COLOR=#000000])[/COLOR];
myComboBox.[COLOR=#000000]addItem[/COLOR][COLOR=#000000]([/COLOR][COLOR=#000000]{[/COLOR]label:[COLOR=#0000ff]“Chicken”[/COLOR], [COLOR=#993300]data[/COLOR]:[COLOR=#000000]1[/COLOR].[COLOR=#000000]00[/COLOR][COLOR=#000000]}[/COLOR][COLOR=#000000])[/COLOR];
myComboBox.[COLOR=#000000]addItem[/COLOR][COLOR=#000000]([/COLOR][COLOR=#000000]{[/COLOR]label:[COLOR=#0000ff]“Ham”[/COLOR], [COLOR=#993300]data[/COLOR]:[COLOR=#000000]2[/COLOR].[COLOR=#000000]00[/COLOR][COLOR=#000000]}[/COLOR][COLOR=#000000])[/COLOR];
myComboBox.[COLOR=#000000]addItem[/COLOR][COLOR=#000000]([/COLOR][COLOR=#000000]{[/COLOR]label:[COLOR=#0000ff]“Tuna”[/COLOR], [COLOR=#993300]data[/COLOR]:[COLOR=#000000]3[/COLOR].[COLOR=#000000]00[/COLOR][COLOR=#000000]}[/COLOR][COLOR=#000000])[/COLOR];
myComboBox.[COLOR=#000000]addEventListener[/COLOR][COLOR=#000000]([/COLOR]Event.[COLOR=#000000]CHANGE[/COLOR], clickHandler[COLOR=#000000])[/COLOR];
myComboBox.[COLOR=#000000]addEventListener[/COLOR][COLOR=#000000]([/COLOR]Event.[COLOR=#000000]CHANGE[/COLOR], totalamount[COLOR=#000000])[/COLOR];
myComboBox.[COLOR=#000000]prompt[/COLOR] = [COLOR=#0000ff]“Please Select Sandwich”[/COLOR];
addChildCOLOR=#000000[/COLOR];
[COLOR=#993300]var[/COLOR] tf:[COLOR=#993300]TextField[/COLOR] = [COLOR=#993300]new[/COLOR] [COLOR=#993300]TextField[/COLOR]COLOR=#000000[/COLOR];
addChildCOLOR=#000000[/COLOR];
tf.[COLOR=#993300]width[/COLOR] = [COLOR=#000000]45[/COLOR];
tf.[COLOR=#993300]height[/COLOR] = [COLOR=#000000]20[/COLOR];
tf.[COLOR=#000000]x[/COLOR] = [COLOR=#000000]225[/COLOR];
tf.[COLOR=#000000]y[/COLOR] = [COLOR=#000000]10[/COLOR];
tf.[COLOR=#993300]border[/COLOR] = [COLOR=#993300]true[/COLOR];
tf.[COLOR=#000000]alwaysShowSelection[/COLOR] = [COLOR=#993300]true[/COLOR];
[COLOR=#993300]function[/COLOR] clickHandlerCOLOR=#000000[/COLOR]:[COLOR=#993300]void[/COLOR] [COLOR=#000000]{[/COLOR]
tf.[COLOR=#993300]text[/COLOR] = ComboBoxCOLOR=#000000[/COLOR].[COLOR=#000000]selectedItem[/COLOR].[COLOR=#993300]data[/COLOR];
[COLOR=#000000]}[/COLOR]
[COLOR=#993300]var[/COLOR] myComboBox2:ComboBox = [COLOR=#993300]new[/COLOR] ComboBoxCOLOR=#000000[/COLOR];
myComboBox2.[COLOR=#000000]dropdownWidth[/COLOR] = [COLOR=#000000]210[/COLOR];
myComboBox2.[COLOR=#993300]width[/COLOR] = [COLOR=#000000]200[/COLOR];
myComboBox2.[COLOR=#000000]move[/COLOR]COLOR=#000000[/COLOR];
myComboBox2.[COLOR=#000000]addItem[/COLOR][COLOR=#000000]([/COLOR][COLOR=#000000]{[/COLOR]label:[COLOR=#0000ff]“Coke”[/COLOR], [COLOR=#993300]data[/COLOR]:[COLOR=#000000]1[/COLOR].[COLOR=#000000]00[/COLOR][COLOR=#000000]}[/COLOR][COLOR=#000000])[/COLOR];
myComboBox2.[COLOR=#000000]addItem[/COLOR][COLOR=#000000]([/COLOR][COLOR=#000000]{[/COLOR]label:[COLOR=#0000ff]“Sprite”[/COLOR], [COLOR=#993300]data[/COLOR]:[COLOR=#000000]2[/COLOR].[COLOR=#000000]00[/COLOR][COLOR=#000000]}[/COLOR][COLOR=#000000])[/COLOR];
myComboBox2.[COLOR=#000000]addItem[/COLOR][COLOR=#000000]([/COLOR][COLOR=#000000]{[/COLOR]label:[COLOR=#0000ff]“Fanta”[/COLOR], [COLOR=#993300]data[/COLOR]:[COLOR=#000000]3[/COLOR].[COLOR=#000000]00[/COLOR][COLOR=#000000]}[/COLOR][COLOR=#000000])[/COLOR];
myComboBox2.[COLOR=#000000]addEventListener[/COLOR][COLOR=#000000]([/COLOR]Event.[COLOR=#000000]CHANGE[/COLOR], clickHandler2[COLOR=#000000])[/COLOR];
myComboBox2.[COLOR=#000000]addEventListener[/COLOR][COLOR=#000000]([/COLOR]Event.[COLOR=#000000]CHANGE[/COLOR], totalamount[COLOR=#000000])[/COLOR];
myComboBox2.[COLOR=#000000]prompt[/COLOR] = [COLOR=#0000ff]“Please Select Drink”[/COLOR];
addChildCOLOR=#000000[/COLOR];
[COLOR=#993300]var[/COLOR] tf2:[COLOR=#993300]TextField[/COLOR] = [COLOR=#993300]new[/COLOR] [COLOR=#993300]TextField[/COLOR]COLOR=#000000[/COLOR];
addChildCOLOR=#000000[/COLOR];
tf2.[COLOR=#993300]width[/COLOR] = [COLOR=#000000]45[/COLOR];
tf2.[COLOR=#993300]height[/COLOR] = [COLOR=#000000]20[/COLOR];
tf2.[COLOR=#000000]x[/COLOR] = [COLOR=#000000]225[/COLOR];
tf2.[COLOR=#000000]y[/COLOR] = [COLOR=#000000]30[/COLOR];
tf2.[COLOR=#993300]border[/COLOR] = [COLOR=#993300]true[/COLOR];
tf2.[COLOR=#000000]alwaysShowSelection[/COLOR] = [COLOR=#993300]true[/COLOR];
[COLOR=#993300]function[/COLOR] clickHandler2COLOR=#000000[/COLOR]:[COLOR=#993300]void[/COLOR] [COLOR=#000000]{[/COLOR]
tf2.[COLOR=#993300]text[/COLOR] = ComboBoxCOLOR=#000000[/COLOR].[COLOR=#000000]selectedItem[/COLOR].[COLOR=#993300]data[/COLOR];
[COLOR=#000000]}[/COLOR]
[COLOR=#993300]var[/COLOR] total:[COLOR=#993300]TextField[/COLOR] = [COLOR=#993300]new[/COLOR] [COLOR=#993300]TextField[/COLOR]COLOR=#000000[/COLOR];
addChildCOLOR=#000000[/COLOR];
total.[COLOR=#993300]width[/COLOR] = [COLOR=#000000]45[/COLOR];
total.[COLOR=#993300]height[/COLOR] = [COLOR=#000000]20[/COLOR];
total.[COLOR=#000000]x[/COLOR] = [COLOR=#000000]225[/COLOR];
total.[COLOR=#000000]y[/COLOR] = [COLOR=#000000]50[/COLOR];
total.[COLOR=#993300]border[/COLOR] = [COLOR=#993300]true[/COLOR];
total.[COLOR=#000000]alwaysShowSelection[/COLOR] = [COLOR=#993300]true[/COLOR];
[COLOR=#993300]function[/COLOR] totalamountCOLOR=#000000[/COLOR]:[COLOR=#993300]void[/COLOR] [COLOR=#000000]{[/COLOR]
total.[COLOR=#993300]text[/COLOR] = tf.[COLOR=#993300]text[/COLOR] + tf2.[COLOR=#993300]text[/COLOR];
[COLOR=#000000]}[/COLOR]
[/LEFT]