i dont think its possible to use
the $?="input" to add text in but this dialog
would work:
dialog dialogname {
title "Dialog"
size -1 -1 109 41
option dbu
edit "Edit", 1, 7 12 94 10
button "Ok", 2, 7 24 33 12
button "Cancel", 3, 67 24 33 13
text " Enter A Nick Name To Use ....", 4, 8 3 92 8
}
on *:CONNECT:{
dialog -m dialogname dialogname
}
on *:DIALOG:dialogname:init:0:{
did -ra $dname 1 $me
}
on *:DIALOG:dialogname:SCLICK:2:{
nick $did(1)
dialog -c $dname
}
on *:DIALOG:dialogname:SCLICK:3:{
dialog -c $dname
}

EDIT: didnt see the other 2 posts

Last edited by whatsthedillio; 12/09/04 09:40 PM.