28 threads found!
Thread | Author | Replies | Views | Last Reply |
---|---|---|---|---|
Dizzi | 1 | 105 | ||
Dizzi | 2 | 59 | ||
Dizzi | 2 | 107 | ||
Dizzi | 36 | 738 | ||
Dizzi | 10 | 228 | ||
Dizzi | 1 | 85 | ||
Dizzi | 1 | 44 | ||
Dizzi | 8 | 326 | ||
Dizzi | 1 | 37 | ||
Dizzi | 1 | 51 | ||
Dizzi | 0 | 60 |
(none)
|
|
Dizzi | 3 | 80 | ||
Dizzi | 4 | 56 | ||
Dizzi | 4 | 94 | ||
Dizzi | 4 | 190 |
1,383 comments found!
Attached Link: http://www.renderosity.com/mod/forumpro/showthread.php?message_id=3503708&ebot_calc_page#message_3503708
See link for shortcuts or my free stuff for a Poser 8+ python script, that does that job better :-)Â
Â
Thread: mainButtons.py Problem | Forum: Poser Python Scripting
Thread: Additive prop poses in python? | Forum: Poser Python Scripting
Thread: Problem with PPro 2010 Python... | Forum: Poser - OFFICIAL
Just a sidenote: The socket module was broken when Poser 8 initially shipped but the SR fixed that. The socket module was needed for the PRPC script. But that's not needed anymore to load content into Poser 8 / Pro 2010 as one can use the same methods the Poser library uses to talk to Poser.
Thread: Additive prop poses in python? | Forum: Poser Python Scripting
You're just setting the value, you need to add it to the current value like this:
param=actor.ParameterByCode(poser.kParmCodeXTRAN)
param.SetValue(param.Value+JumpSize)Â
Â
For anyone with Poser 8 or later, my WheelPosing script is probably easier for positioning many walls to form a corridor.
Thread: Problem with PPro 2010 Python... | Forum: Poser - OFFICIAL
I'm not sure if P3DO does use sockets, last time I heard about it, it ran a Python script to load stuff, so there's nothing the firewall can block.
How are you loading the content? Drag & Drop into Poser? Or via Python scripts? Where are those located? They may need to be installed into Poser Pro 2010. If you're using Windows 7 and Vista with UAC turned on, it could also be that Poser Pro 2010 cannot run the Python scripts, because it cannot access them due to Permissions...
You need to give more information :-)Â
Thread: pro 2010 Python problem.. | Forum: Poser - OFFICIAL
You can put aÂ
poser.ProcessCommand(1176)
before and after the SetFrame so the Animation Palette opens and closes ;-)
The other options you have:
Report the bug to smith micro
Display the current frame with another script in the UIÂ
Â
Thread: pro 2010 Python problem.. | Forum: Poser - OFFICIAL
scene=poser.Scene() scene.SetFrame(scene.Frame()+1) scene.DrawAll()
Works just fine for me. It just doesn't update the frame number in the UI, but it changes the frame.
Thread: Poser library metadata how? | Forum: Poser - OFFICIAL
There are commands to access the meta data available via Python, they're undocumented though.
poser.Filemetadata
poser.SetFilemetadataÂ
and constants starting with kMetaÂ
Â
Thread: Adding More Scripts/Buttons to the Python Script Window Inside Poser | Forum: Poser - OFFICIAL
And for the people who rather like to use shortcuts and have Poser 7 or later:
You can assign a keyboard shortcut to a script in the scripts menu. You just need to change the filename like in the following examle:
From "myscript.py" to "myscript ###Shift+Alt+Ctrl+p.py" and voilà (that means after restarting Poser...) you can run the script by pressing the Alt, Ctrl, Shift and p keys at the same time.Â
Thread: POSER MEMORY PROBLEM | Forum: Poser - OFFICIAL
Did you install any of the service releases for Poser 6? That out of memory error happend a lot in an unpatched Poser 6...
Thread: POSER MEMORY PROBLEM | Forum: Poser - OFFICIAL
Oh dear, another thread there people talk about RAM when they should talk about virtual memory (read: RAM+page file)... Adding RAM will not make a scene render which didn't render before if there was already enough virtual memory available to Poser before... You should check that first.
You coult try to turn off "adaptive bucket size", that way Poser 6 used about 200-300 MB more memory before quitting in my tests.
Thread: The Preview Window | Forum: Poser - OFFICIAL
You may also want to have a look at my Camera Python script in freestuff (Poser 8/Pro 2010), if you encounter lag when switching between the different camera controls. It'll allow camera movement without using the controls (you just have to press shift and or control and move the mouse or use the middle mouse button, and zoom in using the scroll wheel ;-)).
Thread: Small bug with Swaptotal | Forum: Poser Python Scripting
Well, Poser does not update the preview on its own after the script execution, so a "scene.DrawAll()" as last line in all of the scripts should help.
Thread: Check my steps for GC - and a few questions | Forum: Poser - OFFICIAL
Quote - If i run that script - image maps should still be at 2.2, am I right with that or off again?
Yes, but only if the image maps are not connected to bump, displacement, etc. anywhere (as it may be with some content)...
I've got a set gamma script (for P8+) in free stuff that needs less clicks, btw.
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.
Thread: Keyboard Shortcuts for Trackball Controls? | Forum: Poser - OFFICIAL