i really don't know what a tokenized variable is, but this is how i tried to solve my problem:

i created an ok and an apply button and either of them starts an alias:

Code:
 
 [...]

var %chanvar = 1
    while ( %chanvar <= $did($dname,666).lines ) { 
      set %chanoff. [ $+ [ %chanvar ] ] $did($dname,666,%chanvar).text       
      set %chansaveini %chanvar
      inc %chanvar
      continue
    }

[...]
 


an if i start the dialog an other alias:

Code:
 
var %chanload = 1
  while ( %chanload <= %chansaveini ) {
    did -a mlock 666 %chanoff. [ $+ [ %chanvar ] ]
    inc %chanload
    continue
  }
  unset %chansaveini

 


hm
now i've got the problem, that the values i from the variables are loaded on dialog init, but the values are invisible
if i klick onto the lower part of the como box, i can see that there is definitely something, but i can't see what it is wink