It would be cool to have a checklist that people could easily edit and use.
Here is a basic checklist I have for anyone to use and build from.
Wishlist Features:
Add button + adds addition checklist statements that are written in text box
Remove button - revmoves that checklists object from the dialog
as the buttons are use the dialog expands and contracts.
the add and remove buttons do not work yet.
Thanks
JokerMartini
rollout rlChecklist "Check List"
(
button btnAdd "+" width:17 height:17 pos:[0,0]
editText etToDoList "" fieldwidth:152 pos:[13,0]
label lbDivide "- - - - - - - - - - - - - - - - - - - - - - - -" pos:[2,18]
label lb1 "Render Resolution" pos:[67,40]
label lb2 "Motion Blur" pos:[67,62]
checkbox ckbx1 "" pos:[36,39] width:12 enabled:false
checkbox ckbx2 "" width:12 pos:[36,61] enabled:false
button btn1 "O" width:24 height:24 pos:[6,32]
button btn2 "O" width:24 height:24 pos:[6,56]
button btn1delete "-" width:13 height:13 pos:[51,40]
button btn2delete "-" width:13 height:13 pos:[51,62]
label lbDivide2 "- - - - - - - - - - - - - - - - - - - - - - - -" pos:[2,80]
button btnClear "Clear" width:138 height:24
on btn1 pressed do
(
ckbx1.checked = true
)
on btn2 pressed do
(
ckbx2.checked = true
)
on btnClear pressed do
(
ckbx1.checked = ckbx2.checked = false
)
)
createDialog rlChecklist 170 130
By JokerMartini · 2010-12-03
Swordslayer · 2010-12-05