Callback: | AEFSetValueToGadgetValueAsStringTokenNum |
Arguments: |
Gadget - Gadget whose value is to be modified srcGadgetPath - Path to source gadget delimiters - delimiters between tokens "####" - token number to use |
|
|
Description: |
Given GadgetPath, a delimiter, and a token number(as a string)
will take the token at position num, and set the destination
gadget to that token value. e.g. src value=abcd:1234:5678 delim=":" num="1" destination value=1234 |
Example: |
Button { Name = SetGadgetValue; Title = "SetGadgetValue"; /* This button will set the value of * FinalValue to the first token of * the gadget StartValue delimited * by a ":" */ Commands = AEFSetValueToGadgetValueAsStringTokenNum&/.../FinalValue ("/.../StartValue",":","0"); } |