bushi opened this issue on Feb 03, 2001 ยท 21 posts
bushi posted Sun, 04 February 2001 at 3:58 PM
As far as this script is concerned, you could select multiple actors by changing the if statement. change: if SingleActor.Name() == 'Head': to: if (SingleActor.Name() == 'Head') or (SingleActor.Name() == 'Chest'): Now all the MTs for the Head and the Chest will be selected. You could make this script much more generalized by using some of TkInter's widgets. There's one called 'CheckButton' that gives a panel with selectable boxes. I haven't tried building one of these with actor names at runtime but I'd think it could be done. Jeff - No, I haven't tried that yet. I've looked at the examples and it looks like it's fairly straight forward. I need to get a bit deeper into the examples before trying it though.