Well I went ahead and tried and I got it kinda so far now I was wondering how do I recognize that a check box is checked
dialog first {
title "Your System Info"
size -1 -1 300 300
button "OK",1, 1 275 120 25, OK
button "List",6, 180 275 120 25, Default
button "Play",13, 123 275 55 25, Default
text "Your Ip Is",2, 1 1 100 25
edit "Ip Here",3, 1 15 100 20
check "Send To Current Window",14, 100 15 150 25,left
text "Current Server",4, 1 33 100 25
edit "Current Server",5, 1 45 100 20
check "Send To Current Window",15, 100 45 150 25,left
text "Server Ip",7, 1 63 100 25
edit "Server Ip",8, 1 75 100 20
check "Send To Current Window",16, 100 75 150 25,left
text "Server Port",9, 1 93 100 25
edit "Server Port",10, 1 105 100 20
check "Send To Current Window",17, 100 105 150 25,left
text "Online Time",11, 1 123 100 25
edit "Online Time",12, 1 135 100 20
check "Send To Current Window",18, 100 135 150 25,left
}
on 1:dialog:first:sclick:6: {
did -r first 3
did -a first 3 $ip
did -r first 5
did -a first 5 $server
did -r first 8
did -a first 8 $serverip
did -r first 10
did -a first 10 $port
did -r first 12
did -a first 12 $uptime(mirc, 2)
}
Is what I have I was wanting to check what is to be displayed and then click list to have it play out to the active window.