Still struggling with this ...
Now I want to have a softkey with the following label : "Butée >|". "|" is a valid ASCII character.
The "|" character is not displayed and leads to a blank softkey (kicking out the last softkey I defined). Escaping like this "Butée >/|" does not work either.
EDIT : the syntax "/|" seems to be reserved for parametrized output ...
QuoteIn the case of parameterized outputs, the parameters must be tagged on to the key, separated by the characters "/|". The translated text and the parameters are then combined in the language database.
Any idea to achieve this ?
Code
DEFSCRIPT SetTrackPosition
SWITCH DIALOG "Choisir une position prédéfinie pour le track (unité linaire)."
CASE ">>" DO SetTrackPosition_N
CASE "Butée N >|" DO MDIAction_400_SOFTN
CASE "Milieu" DO MDIAction_400_MID
CASE "<<0 mm" DO MDIAction_400_0
CASE "< Butée P" DO MDIAction_400_SOFTP
CASE "" DO CancelAction
CASE "Annuler" DO CancelAction
ENDSWITCH
ENDSCRIPT
Display More