2 threads found!
Thread | Author | Replies | Views | Last Reply |
---|---|---|---|---|
mkrueger | 12 | 256 | ||
mkrueger | 6 | 172 |
35 comments found!
Hi,
Here's the link for the resource file format:
http://developer.apple.com/documentation/mac/MoreToolbox/MoreToolbox-99.html
Hope that helps
Martin
Thread: GIRL 3 | Forum: Poser - OFFICIAL
Thread: I need a file and directory selector for python | Forum: Poser Python Scripting
Thread: Save and load UI | Forum: Poser Python Scripting
I don't think that's possible, all UI configuration is stored in the files in the prefs folder and they are only read at startup. Even if you manipulate them, you'd have to restart Poser. martin
Thread: Batch process to make animation from many angles | Forum: Poser Python Scripting
Thread: Anyone been able to download the Final Release??? | Forum: Carrara
Thread: Another cool animation done with Carrara. | Forum: Carrara
When you include Scripting, please make it Python (or Ruby), but not Perl or (even worst) Javascript. Since both Poser and Vue already have Python support and a lot of users of these also use Carrara (I presume?), you would already have a base of users ready to dig into Carrara Scripting. Cheers: where did you get the impression that there are more Perl users and better docs? I don't want to start another skirmish in the neverending language wars, but I also don't want to let that stand as it is ;)
Thread: The RSR Thumbnail format revealed! | Forum: Poser - OFFICIAL
Attached Link: http://developer.apple.com/documentation/mac/MoreToolbox/MoreToolbox-99.html
I finally managed to track down the link again, so here it is in all its gory details: the Resource File Format.Thread: The RSR Thumbnail format revealed! | Forum: Poser - OFFICIAL
XFX3d: I'm not sure what you mean. I used the Python binding for ImageMagick which is compiled against Python 2.4, so this doesn't work in Poser itself. As far as I know, there isn't a binary package of PythonMagick for Python 2.2. And for the return way, you get as far as a PICT file. BTW, I just finished coding the PICT to RSR part, which is a bit more tedious than to simply extract the PICT, since you have to build the whole RSR. I will try to compile the PythonMagick sources against python22.dll, but I wouldn't hold out much hope, I fear I will just stumble around not knowing what to do ;) martin
Thread: The RSR Thumbnail format revealed! | Forum: Poser - OFFICIAL
Currently it's oneway from RSR to PNG and works in two steps: it first extracts the PICT from the RSR and then converts the PICT to PNG. The extraction should work in Poser since it is plain Python, but the PICT -> PNG conversion uses PythonMagick, a binding for the ImageMagick library. This could be replaced by a call to an external batch script (ImageMagick's convert or Irfanview for example). Or somebody knows another library to convert it in Python (I didn't find anything else) ? martin
Thread: The RSR Thumbnail format revealed! | Forum: Poser - OFFICIAL
I wrote a small Python script to convert RSRs to PNGs a while back, since I couldn't find any. So if anyone's interested ... martin
Thread: ---Great Python Utility for P3DO to Poser...Maybe VUE Next? | Forum: Vue
Veritas777: But you do have to have your runtimes in your LibraryPrefs.xml, if I'm not mistaken, otherwise the obj/texture-files are not found. At least that happens when I load the library stuff with my little import tool (which is, I guess, the same basic stuff Tromnek does). martin
Thread: Looking for good text editor | Forum: Poser Technical
As Emacs was already mentioned, I would suggest ViM (www.vim.org), but be warned, the learning curve is fairly steep! Ah, but the rewards ... martin
Thread: Figure Number in PoserPython? | Forum: Poser Python Scripting
Thread: Figure Number in PoserPython? | Forum: Poser Python Scripting
Hi!
Try this:
actors = poser.Scene().CurrentFigure().Actors()
loop through the actors and get the first one which is a body part with the "IsBodyPart" method
the internal name of the actor should be PartName:FigureNumber
so you should be able to extract the figure number after the colon
hope that helps
martin
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: RSR to Png specs | Forum: Poser Technical