;Here's an example .... put this to a remote script .
;Type /mystart to open the dialog
; I think it'll make sense
;------------
; Alias to start Dialog
; Type /mystart to open dialog
;------------
Alias MyStart { Dialog -m Newtable mytable }
; --------------
; Dialog
; -------------
dialog Mytable {
title "New Project"
size -1 -1 181 113
option dbu
list 1, 10 15 50 50, size
list 2, 70 15 50 50, size
button "Load some text", 3, 11 90 56 16
button "filter it", 4, 94 89 61 18
}
;------------
; Alias to Load text
;------------
on *:dialog:Newtable:sclick:3: {
did -r newtable 1
did -a newtable 1 a1
did -a newtable 1 a2
did -a newtable 1 b1
did -a newtable 1 b2
}
;--------------
; The filter working for you
;---------------
on *:dialog:Newtable:sclick:4: {
filter -io newtable 1 newtable 2 b*
}