mIRC Home    About    Download    Register    News    Help

Print Thread
#38442 26/07/03 06:12 PM
Joined: Jul 2003
Posts: 16
M
Pikka bird
OP Offline
Pikka bird
M
Joined: Jul 2003
Posts: 16
dialog box {
title "New Project"
size -1 -1 305 93
option dbu
list 1, 143 15 144 69, size hsbar vsbar
}

/did -i caca 143 154 welcome


i will like to fill with some text on list box ,can you helpme


tnx


#38443 26/07/03 06:23 PM
Joined: Dec 2002
Posts: 2,985
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2002
Posts: 2,985
To add entries:

did -a box 1 List entry 1
did -a box 1 List entry 2
did -a box 1 List entry 3

To remove all entries:

did -r box

To remove all and add a new one at the same time:

did -ra box 1 New list entry 1

#38444 26/07/03 06:37 PM
Joined: Jul 2003
Posts: 16
M
Pikka bird
OP Offline
Pikka bird
M
Joined: Jul 2003
Posts: 16
dialog caca {
title "New Project"
size -1 -1 305 93
option dbu
list 1, 143 15 144 69, size hsbar vsbar
}

on 1:dialog:caca:sclick: {

did -a caca 1 List hola
did -a caca 1 List ke tal
did -a caca 1 List como va


}

like this?


#38445 26/07/03 07:18 PM
Joined: Dec 2002
Posts: 2,985
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2002
Posts: 2,985
Yep.

#38446 26/07/03 07:49 PM
Joined: Jul 2003
Posts: 16
M
Pikka bird
OP Offline
Pikka bird
M
Joined: Jul 2003
Posts: 16
why can i do ,work

#38447 26/07/03 07:55 PM
Joined: Mar 2003
Posts: 1,271
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Mar 2003
Posts: 1,271
huh?


DALnet #Helpdesk
I hear and I forget. I see and I remember. I do and I understand. -Confucius
#38448 26/07/03 07:57 PM
Joined: Jul 2003
Posts: 742
Hoopy frood
Offline
Hoopy frood
Joined: Jul 2003
Posts: 742
say what?? this code is wrong:
Code:
dialog caca {
title "New Project"
size -1 -1 305 93
option dbu
list 1, 143 15 144 69, size hsbar vsbar
}
on 1:dialog:caca:sclick: {
did -a caca 1 List hola
did -a caca 1 List ke tal
did -a caca 1 List como va
}


try this:
Code:
dialog caca {
title "New Project"
size -1 -1 305 93
option dbu
list 1, 143 15 144 69, size hsbar vsbar
}
on 1:dialog:caca[color:red]:init:*:[/color]  {
did -a caca 1 List hola
did -a caca 1 List ke tal
did -a caca 1 List como va
}

Last edited by MTec89; 26/07/03 07:59 PM.

http://MTec89Net.com
irc.freenode.net #MTec89Net
#38449 26/07/03 07:59 PM
Joined: Jul 2003
Posts: 16
M
Pikka bird
OP Offline
Pikka bird
M
Joined: Jul 2003
Posts: 16
no work sorry

#38450 26/07/03 08:08 PM
Joined: Jul 2003
Posts: 742
Hoopy frood
Offline
Hoopy frood
Joined: Jul 2003
Posts: 742
didnt work?

Code:
dialog caca {
  title "New Project"
  size -1 -1 305 93
  option dbu
  list 1, 143 15 144 69, size hsbar vsbar
}
on 1:dialog:caca:init:*:  {
  did -a caca 1 List hola
  did -a caca 1 List ke tal
  did -a caca 1 List como va
}
alias caca dialog -m caca caca


i know this works... you did somthing wrong


http://MTec89Net.com
irc.freenode.net #MTec89Net

Link Copied to Clipboard