This is a sort of follow-up from this topic:
http://www.autohotkey.com/forum/viewtopic.php?t=5954
Are there any plans to enhance the Gui ComboBox so that you could display one thing but store a completely different value, rather like AltSubmit. Perhaps this could be done by adding another section or by having a delimiting character within the pipelines, e.g.:
Code:
Gui, Add, ComboBox, vChoice, Low|Medium|High, 100|200|300
or
Code:
Gui, Add, ComboBox, vChoice, Low,100|Medium,200|High,300
So that you would have the following stored for each selection:
Low = 100
Medium = 200
High = 300