Forum Coordinators: RedPhantom
Poser - OFFICIAL F.A.Q (Last Updated: 2025 Feb 03 12:46 am)
Cool trick! That would require me to create each hair style (really all the same hair in a diffrent place in the timeline) on a diff. skull cap but that would still be much quicker than doing each by hand. Much thanks Phil! Still though, i think i need to start learning some scripting before too much longer if i am going to keep growing.
Mmy Hair Visibility scripts might also be useful for switching between ShowPopulated On and ShowPopulated Off, especially when you have a lot of hair groups.: www.svdlinden.nl/webposerstuff/downloads/ShowPopulatedOnOff.zip
The pen is mightier than the sword. But if you literally want to have some impact, use a typewriter
import poser
scene = poser.Scene()
text = "hair"
letters = 4
viz = 0
for actor in scene.Actors():
if actor.Name()[:letters] == text:
actor.SetOnOff(viz)
You can pretty this up by using Poser dialog text input but the above bear bones will work.
This site uses cookies to deliver the best experience. Our own cookies make user accounts and other features possible. Third-party cookies are used to display relevant ads and to analyze how Renderosity is used. By using our site, you acknowledge that you have read and understood our Terms of Service, including our Cookie Policy and our Privacy Policy.
I do a LOT of work with strand based hair. It is weak in Poser but I’m always striving for realism. One of my biggest hang-ups is constantly having to turn visibility on and off for sets of hair groups/props. Since I usually style different sets of hair for different scenes, I’m stuck with a five minute click fest. It is even worse to turn them back on! Do any of the python script writers out there have time to lend a hand?
I’m enough of a programmer to know it would be possible to write a short script to either turn on or off groups but I’ve never touched Python. I’m hoping someone has time to bang out a quick script to hide a hard coded list of hair groups. Something like this:
.
.
.
Then I could hack that into custom scripts to both turn on and off each set of hair groups I create for present and future projects. If anyone has any interest in helping me out please let me know. I would greatly appreciate it.