mIRC Home    About    Download    Register    News    Help

Print Thread
#100258 11/10/04 03:36 PM
Joined: Mar 2004
Posts: 45
D
Ameglian cow
OP Offline
Ameglian cow
D
Joined: Mar 2004
Posts: 45
Is there any way that I can put $variables in the title of a dialog? Or in text?
Code:
 dialog test {
  title "test $variable"
  size -1 -1 100 80
  option dbu

  text "$active",1 ,10 10 20 20
} 


This won't work...

#100259 11/10/04 03:46 PM
Joined: Mar 2004
Posts: 175
Vogon poet
Offline
Vogon poet
Joined: Mar 2004
Posts: 175
Yes. Just remove the "" when using variables or identifiers.
Code:
dialog test {
title test $variable
size -1 -1 100 80
option dbu
text $active,1 ,10 10 20 20
}


- Relinsquish

Link Copied to Clipboard