White Raven opened this issue on Aug 15, 2009 ยท 18 posts
PhilC posted Sat, 15 August 2009 at 1:22 PM
Thanks.
May I please ask:-
Is that a copy/paste of what was in the Python text window or did you copy it manually?
(The posing may have removed formatting.)
Did you install to C:Graphics or did you install then move the application to that location?
Where have you installed your Pose 8 content to?
There is a script below that will auto tell you what is where. Or at least where Poser thinks everything is. If different please let me know.
Again thanks.
###########################################<br></br>
# Python script to find<br></br>
# Poser 8 directory locations<br></br>
#<br></br>
# Save as P8_directory_locations.py<br></br>
# Execute using Poser menu File > Run Python scropt<br></br>
#<br></br>
# Right click the resulting text and select 'copy'<br></br>
# You can then paste into a thread or email.<br></br>
import poser<br></br>
print "Poser application foldern%s" %
os.path.split(poser.AppLocation())[0]<br></br>
print<br></br>
print "Preferences Foldern%s" % poser.PrefsLocation()<br></br>
print<br></br>
print "Temp Foldern%s" % poser.TempLocation()<br></br>
print<br></br>
print "Content Foldern%s" %
poser.ContentRootLocation()<br></br>