I have been playing around with creating a dialog box with buttons...

This is what I have done...


Code:
Dialog support { 
  title "Support" 
  size -1 -1 300 100 
  button "Start",1, 1 5 120 25
  button "Verify",2, 1 35 120 25
  button "Test",3, 1 65 120 25
  button "Cancel",6, 130 65 100 25, cancel
}
on *:dialog:support:sclick:1:{
  say Hello! What can I help you with?
}
on *:dialog:support:sclick:2:{
  say Could you please verify the the username and email address of your account for security purposes?
}
on *:dialog:support:sclick:3:{
  echo -a Test Successful!
  /dialog -x support
}



Buttons 3 and 4 work, but 1 and 2 do nothing... I sent the code to a friend of mine and he says that all of the buttons work for him, but I cannot get them to work for me.

I am using mIRC in wine on linux and thought maybe that was somehow affecting it, so I installed Windows XP on a VM and tried it and it still would not work.

Any ideas? Thanks in advance.

Last edited by jrchevy2005; 14/01/14 09:01 AM.