|
|
Joined: Jul 2003
Posts: 16
Pikka bird
|
OP
Pikka bird
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
|
|
|
|
Joined: Dec 2002
Posts: 2,985
Hoopy frood
|
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
|
|
|
|
Joined: Jul 2003
Posts: 16
Pikka bird
|
OP
Pikka bird
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?
|
|
|
|
Joined: Dec 2002
Posts: 2,985
Hoopy frood
|
Hoopy frood
Joined: Dec 2002
Posts: 2,985 |
|
|
|
|
Joined: Jul 2003
Posts: 16
Pikka bird
|
OP
Pikka bird
Joined: Jul 2003
Posts: 16 |
|
|
|
|
Joined: Mar 2003
Posts: 1,271
Hoopy frood
|
Hoopy frood
Joined: Mar 2003
Posts: 1,271 |
DALnet #Helpdesk I hear and I forget. I see and I remember. I do and I understand. -Confucius
|
|
|
|
Joined: Jul 2003
Posts: 742
Hoopy frood
|
Hoopy frood
Joined: Jul 2003
Posts: 742 |
say what?? this code is wrong:
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:
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.
|
|
|
|
Joined: Jul 2003
Posts: 16
Pikka bird
|
OP
Pikka bird
Joined: Jul 2003
Posts: 16 |
|
|
|
|
Joined: Jul 2003
Posts: 742
Hoopy frood
|
Hoopy frood
Joined: Jul 2003
Posts: 742 |
didnt work?
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
|
|
|
|
|
|