Re: xsi wiki offline?

2017-07-04 Thread Leendert A. Hartog
Looks like they finally got around to killing the wiki.

Their earlier promise to keep it alive be damned...

--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: Soft 2 Houdini

2016-10-07 Thread Leendert A. Hartog
https://archive.sidefx.com/index.php?option=com_content=view=2711=166

Greetz
Leendert
AKA Hirazi Blue
--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: Wiki EOL soon

2016-10-07 Thread Leendert A. Hartog
There has been a new development concerning the Softimage-Wiki.
Autodesk will keep hosting it "as is" for the time being.
As it turns out, it is legally very complicated to transfer the usage rights 
for the content to a "third-party"...

Thanks goes to Nicolas Leduc for trying and for convincing Autodesk to at least 
preserve the Wiki...

Greetz
Leendert
AKA Hirazi Blue
--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

RE: Wiki EOL soon

2016-09-13 Thread Leendert A. Hartog
Just got confirmation from Oliver Weingarten (si-community's owner)  that he'd 
be willing to host it!

Greetz
Leendert
AKA Hirazi Blue

Outlook voor Android downloaden
--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

RE: Wiki EOL soon

2016-09-13 Thread Leendert A. Hartog
PS I'd be willing to put in the effort, but lack of funds would mean finding a 
free host to host the wiki
and my lack of experience in these matters would mean, that I can't guarantee 
success...;)

Greetz
Leendert
AKA Hirazi Blue
--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

RE: Wiki EOL soon

2016-09-13 Thread Leendert A. Hartog
That's not good! I am thinking of setting up a totally new wiki for Softimage, 
but I haven't got a clue, if the current content could easily be transferred to 
such a new wiki. Maybe others can chime in. It probably would be best to host 
the original wiki as a static archive and build a new one independently. It's 
somewhat disappointing that no action has been undertaken by the community "at 
large", as earlier posts in this thread seemed to indicate the wiki was 
well-worth preserving... I myself have little experience in these matters, so 
any help would be greatly welcomed...

Greetz
Leendert
AKA Hirazi Blue
--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: Wiki EOL soon

2016-09-13 Thread Leendert A. Hartog
Did anyone already volunteer to host the legacy Wiki?

Greetz
Leendert
AKA Hirazi Blue
--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: PyQtForSoftimage Examples "Out of present range" error

2016-09-13 Thread Leendert A. Hartog
After having quite publicly humiliated myself with way to many posts in this 
thread I finally got PyQtForSoftimage working on Windows 10. I posted all the 
steps necessary on the si-community in this thread: 
http://www.si-community.com/community/viewtopic.php?f=13=6491
The one thing I seem to have been doing wrong (among many others)  had to do 
with the installation of the alternative PySide. By installing this using "pip 
install --upgrade" it overwrites any existing PySide install already present in 
Python...
When using this new PyQtForSoftimage and the alternative PySide with Kraken, 
you will have to edit the "kraken_si.py"-file as described here: 
http://www.si-community.com/community/viewtopic.php?f=57=6493

Sorry for all the noise...

Greetz
Leendert
AKA Hirazi Blue
--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: PyQtForSoftimage Examples "Out of present range" error

2016-07-01 Thread Leendert A. Hartog
After reinstalling the "alternative" PySide and the plugin, now neither 
pyqtexample.py, nor qtevents.py nor QtSoftimage.64.dll get properly loaded and 
I am getting "import Qt.QtCore as QtCore
# ImportError: No module named QtCore" errors... Would really like to know, 
what is going on...

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 01/07/2016 10:44:31, Takayoshi Matsumoto  wrote:
Here are the links,

https://www.dropbox.com/s/9x9k3u27v2oslmr/PyQtForSoftimage_win10_returnedvalue.xsiaddon?dl=0
https://www.dropbox.com/s/y1mfleopvx5cr2w/PySide-1.2.4-cp27-cp27m-win_amd64.whl?dl=0

Note:
getQtSoftimageAnchor does not return "long" value anymore, but return
as unicode (or str) value in python. so where invoking this command
in, you have to change your python code to removing explicit cast
like,

```python.diff
- sianchor = Application.getQtSoftimageAnchor()
- sianchor = Qt.wrapinstance(long(sianchor), QWidget)

+ sianchor = Application.getQtSoftimageAnchor()
+ sianchor = Qt.wrapinstance(sianchor, QWidget)
```

Full diff of PyQtForSoftimage is here:
https://github.com/yamahigashi/PyQtForSoftimage/commit/e87f74f21d5f11080ea74c96ba525a3c43511c6a

and PySide is:
https://gist.github.com/yamahigashi/f2374c3b6f29f11852c2e7d55cf89f6f

best, Takayoshi

2016-07-01 15:49 GMT+09:00 Takayoshi Matsumoto :
> Hi all,
>
> OK, we've done ;) It works on Windows10(64bit) + Softimage2015(SP1) +
> external Python(2.7.11) + PyQtForSoftimage(samples) and Kraken!!
>
> I've tryed to build PyQtForSoftimage for avoiding limitation of return
> value's size, returning as CString value and then parse it into
> long(ptr, 16) later on python. This seems ok.
> But... unfortunately I encountered a another problem
> http://tech-artists.org/forum/showthread.php?3949-pyside-and-wrapInstance
> , https://bugreports.qt.io/browse/PYSIDE-103
> So I built PySide modified "unsigned long" into "size_t". This also
> seems ok. And after short modfied on py scripts invoking
> "Qt.wrapInstance(ptr, base)", all samples work! and Kraken launch
> again!
> I will redistribute PyQtForSoftimage( or pull request) and PySide later.
>
> # summary Win10 + Soft2015:
>
> ## external python does not work
>
> solutions:
> * set environment variable "PYTHONHOME"
> * (pywin ?)
>
>
> ## crash or got error "Out of present range. (0x-7ffdfff6)" when
> calling getQtSoftimageAnchor
>
> problem:
> The limitation of size of returned value on Command
>
> solution:
> custom build
>
>
> ## PySide's strange behaviour (dialog disappear shortly, crash)
>
> problem:
> Official PySide's shiboken.wrapInstance has overflow bug
>
> https://bugreports.qt.io/browse/PYSIDE-103
> http://tech-artists.org/forum/showthread.php?3949-pyside-and-wrapInstance
>
> solution:
> custom build
>
> offtopic:
> I think other dcc applications that include PySide are avoiding this issue.
> http://www.autodesk.com/company/legal-notices-trademarks/open-source-distribution
>
>
> cheers,
>
> Takayoshi
>
> 2016-07-01 2:06 GMT+09:00 Steven Caron :
>> Hey Martin
>>
>> Thanks for your detailed response!
>>
>> This PYTHONHOME thing is definitely new, I wonder if this is unique to
>> Softimage 2015 R2-SP2, er whatever Autodesk left us with, or if it has to do
>> with Windows 10 and Python?
>>
>> This 'Out of present range' is sounding more like what Takayoshi was
>> pointing out... The size of the return value.
>>
>> Are you setup to compile the C++ part of the plugin on Windows 10? If you
>> could do that and replace the one in the workgroup and see what happens that
>> would be great.
>>
>> Steven
>>
>> On Thu, Jun 30, 2016 at 6:15 AM, Martin Chatterjee
>> wrote:
>>>
>>> Hi Leendert, hi Steven,
>>>
>>>
 Did you try creating and setting the environment variable "PYTHONHOME" to
 the path of your "external" Python?
>>>
>>>
>>>
>>> Oh, is that supposed to be necessary? Having to set that sort of defies
>>> the usefulness of the Soft preferences checkbox, doesn't it?
>>>
>>> Anyway, I gave it a try:
>>>
>>> a.) With PYTHONHOME set to my external Python and 'use external Python'
>>> off I don't have Python support at all anymore inside Soft.
>>>
>>> b.) But with PYTHONHOME set to my external Python and 'use external
>>> Python' on I can sucessfully use my external Python inside Soft.
>>> ( verified by calling import os; LogMessage(os.__file__)
>>> )
>>>
>>> 
>>>
>>>
>>> Now that I have that part up and running I did:
>>>
>>> a.) install PySide 1.2.2 into my external Python (verified by running
>>> from PySide.QtCore import * in a standalone Python shell)
>>>
>>> b.) verify that Pyside can be imported inside Softimage (again verified by
>>> running from PySide.QtCore import * in the Script Editor)
>>>
>>> c.) installed PyQtForSoftimage_beta6.xsiaddon into a fresh workgroup, and
>>> restarted Soft.
>>>
>>> d.) After startup verified that there are no errors on load, checked the
>>> Plugin Manager to make sure that all plugins got loaded 

Re: PyQtForSoftimage Examples "Out of present range" error

2016-07-01 Thread Leendert A. Hartog
There indeed was. I fixed that, but now I am getting the following "Overflow" 
errors while running the examples:

# ERROR : Traceback (most recent call last):
#   File 

Re: PyQtForSoftimage Examples "Out of present range" error

2016-07-01 Thread Leendert A. Hartog
You're probably right, 
but in the end the only thing that matters is the sad fact that I still cannot 
get the plugin to work...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 01/07/2016 16:43:39, Stephen Blair <stephenrbl...@gmail.com> wrote:
More and more, Dependency Walker is all about knowing what to ignore..

There will always be error and warnings

On Fri, Jul 1, 2016 at 6:13 AM, Leendert A. Hartog <hirazib...@live.nl 
[mailto:hirazib...@live.nl]> wrote:

Throwing the dll at the Dependency Walker I get the following info:

Error: At least one required implicit or forwarded dependency was not found.
Error: At least one module has an unresolved import due to a missing export 
function in an implicitly dependent module.
Error: Modules with different CPU types were found.
Warning: At least one delay-load dependency module was not found.
Warning: At least one module has an unresolved import due to a missing export 
function in a delay-load dependent module.

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com [http://si-community.com] & 
xsiforum.de [http://xsiforum.de]


On 01/07/2016 12:08:18, Leendert A. Hartog <hirazib...@live.nl 
[mailto:hirazib...@live.nl]> wrote:
After the removal of the pyc-files the error remains the same...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com [http://si-community.com] & 
xsiforum.de [http://xsiforum.de]


On 01/07/2016 11:56:18, Takayoshi Matsumoto <yamahiga...@gmail.com 
[mailto:yamahiga...@gmail.com]> wrote:
oops something wrong when I made packaging xsiaddon. I assume that
mixing my .pyc into addon. So can yout try to remove
Addons\PyQtForSoftimage\Application\Plugins\Qt\__init__.pyc and
Addons\PyQtForSoftimage\Application\Plugins\sisignals.pyc , restart softimage
and have a challenge again?

2016-07-01 18:08 GMT+09:00 Leendert A. Hartog :
> Thanks for the effort.
> But trying this I get the following errors:
>
> # ERROR : Traceback (most recent call last):
> # File "

--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com 
[mailto:softimage-requ...@listproc.autodesk.com] with "unsubscribe" in the 
subject, and reply to confirm.


-- Softimage Mailing List. To unsubscribe, send a mail to 
softimage-requ...@listproc.autodesk.com with "unsubscribe" in the subject, and 
reply to confirm.--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: PyQtForSoftimage Examples "Out of present range" error

2016-07-01 Thread Leendert A. Hartog
Throwing the dll at the Dependency Walker I get the following info:

Error: At least one required implicit or forwarded dependency was not found.
Error: At least one module has an unresolved import due to a missing export 
function in an implicitly dependent module.
Error: Modules with different CPU types were found.
Warning: At least one delay-load dependency module was not found.
Warning: At least one module has an unresolved import due to a missing export 
function in a delay-load dependent module.

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 01/07/2016 12:08:18, Leendert A. Hartog <hirazib...@live.nl> wrote:
After the removal of the pyc-files the error remains the same...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 01/07/2016 11:56:18, Takayoshi Matsumoto <yamahiga...@gmail.com> wrote:
oops something wrong when I made packaging xsiaddon. I assume that
mixing my .pyc into addon. So can yout try to remove
Addons\PyQtForSoftimage\Application\Plugins\Qt\__init__.pyc and
Addons\PyQtForSoftimage\Application\Plugins\sisignals.pyc , restart softimage
and have a challenge again?

2016-07-01 18:08 GMT+09:00 Leendert A. Hartog :
> Thanks for the effort.
> But trying this I get the following errors:
>
> # ERROR : Traceback (most recent call last):
> # File "--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: PyQtForSoftimage Examples "Out of present range" error

2016-07-01 Thread Leendert A. Hartog
After the removal of the pyc-files the error remains the same...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 01/07/2016 11:56:18, Takayoshi Matsumoto <yamahiga...@gmail.com> wrote:
oops something wrong when I made packaging xsiaddon. I assume that
mixing my .pyc into addon. So can yout try to remove
Addons\PyQtForSoftimage\Application\Plugins\Qt\__init__.pyc and
Addons\PyQtForSoftimage\Application\Plugins\sisignals.pyc , restart softimage
and have a challenge again?

2016-07-01 18:08 GMT+09:00 Leendert A. Hartog :
> Thanks for the effort.
> But trying this I get the following errors:
>
> # ERROR : Traceback (most recent call last):
> # File "--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: PyQtForSoftimage Examples "Out of present range" error

2016-06-30 Thread Leendert A. Hartog
I consider having to set the environment variable under Windows 10 a 
workaround, as it apparently isn't a requirement for those of us still using 
Windows 7...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 30/06/2016 17:26:34, Martin Chatterjee 
 wrote:

To get the "internal" Python back, you'd have to delete the "PYTHONHOME" 
environment variable again...

Yeah of course, I get that. 

But as far as I remember (it's been a few years since we've actually done that 
facility-wide) having to set PYTHONHOME was not a requirement for using an 
external Python inside Soft. 

Apparently now you have to manage setting the environment variable and setting 
a softimage preference in sync for this to work...

-M


--
       Martin Chatterjee
 
[ Freelance Technical Director ]
[   http://www.chatterjee.de [http://www.chatterjee.de/]   ]
[ https://vimeo.com/chatterjee [https://vimeo.com/chatterjee] ] 

-- Softimage Mailing List. To unsubscribe, send a mail to 
softimage-requ...@listproc.autodesk.com with "unsubscribe" in the subject, and 
reply to confirm.--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: PyQtForSoftimage Examples "Out of present range" error

2016-06-30 Thread Leendert A. Hartog
Let me add one more observation, I made while struggling with this. I tried to 
get "PyQtForSoftimage" to work after uninstalling PySide and installing only 
PyQt, but ran into the same set of weird (and ever-changing) errors...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 29/06/2016 20:52:09, Steven Caron  wrote:
To anyone else listening... has anyone gotten PyQtForSoftimage working on 
Windows 10? If so what is your configuration... Softimage version, python 
version, pyqt or PySide version, etc.
*written with my thumbs
-- Softimage Mailing List. To unsubscribe, send a mail to 
softimage-requ...@listproc.autodesk.com with "unsubscribe" in the subject, and 
reply to confirm.--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: PyQtForSoftimage Examples "Out of present range" error

2016-06-29 Thread Leendert A. Hartog
I opened the Fabric thread out of desperation, 
but you will have seen we didn't come any closer to a solution there either.
After one failed attempt with "external" Python and one last attempt with 
"internal" Python and PySide 1.2.4, I am still getting  either "Out of present 
range" errors or "Failed to save scene..." hard crash errors. 
I would like to say it was a fun experience, but it wasn't... No Kraken for me, 
then...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 29/06/2016 19:30:17, Leendert A. Hartog <hirazib...@live.nl> wrote:
Sorry for the confusion... I have been working on this problem for hours and it 
shows!!!

I was trying to get it to work using the "internal" Python, but now I am 
thinking I've tried everything with the "internal" Python, so next up would be 
completely reinstalling "external" Python and giving that another go...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 29/06/2016 18:52:41, Steven Caron <car...@gmail.com> wrote:
Well I don't know where you are anymore... do you want to use system installed 
python or the python shipped with Softimage?
*written with my thumbs
On Jun 29, 2016 9:29 AM, "Leendert A. Hartog" <hirazib...@live.nl 
[mailto:hirazib...@live.nl]> wrote:

No, it seemed to work yesterday, but when I tried to revert to "internal" I had 
to reinstall Softimage to fix the ensuing errors...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com [http://si-community.com] & 
xsiforum.de [http://xsiforum.de]


On 29/06/2016 16:58:52, Leendert A. Hartog <hirazib...@live.nl 
[mailto:hirazib...@live.nl]> wrote:
And as the icing on the cake, the next restart brought back the "Out of present 
range" errors. Something is terribly wrong and I haven't got a clue, what I can 
do to fix this...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com [http://si-community.com] & 
xsiforum.de [http://xsiforum.de]


On 29/06/2016 16:42:05, Leendert A. Hartog <hirazib...@live.nl 
[mailto:hirazib...@live.nl]> wrote:






Sorry for polluting this thread with error messages, but it seems as if every 
time I restart Softimage or reinstall the plugin a different set of errors are 
thrown. I really do not understand what is going on. Now the Qtevents.py still 
offers the same error message as in my previous post, but now the examples 
again behave like before:
Application.ExampleDialog() does create a window on screen, but kills it before 
I can see what it is.
 Application.ExampleMenu() works!!!
 Application.ExampleSignalSlot() throws the following error:
 # ERROR : Traceback (most recent call last):
#   File "

Re: PyQtForSoftimage Examples "Out of present range" error

2016-06-29 Thread Leendert A. Hartog
Sorry for the confusion... I have been working on this problem for hours and it 
shows!!!

I was trying to get it to work using the "internal" Python, but now I am 
thinking I've tried everything with the "internal" Python, so next up would be 
completely reinstalling "external" Python and giving that another go...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 29/06/2016 18:52:41, Steven Caron <car...@gmail.com> wrote:
Well I don't know where you are anymore... do you want to use system installed 
python or the python shipped with Softimage?
*written with my thumbs
On Jun 29, 2016 9:29 AM, "Leendert A. Hartog" <hirazib...@live.nl 
[mailto:hirazib...@live.nl]> wrote:

No, it seemed to work yesterday, but when I tried to revert to "internal" I had 
to reinstall Softimage to fix the ensuing errors...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com [http://si-community.com] & 
xsiforum.de [http://xsiforum.de]


On 29/06/2016 16:58:52, Leendert A. Hartog <hirazib...@live.nl 
[mailto:hirazib...@live.nl]> wrote:
And as the icing on the cake, the next restart brought back the "Out of present 
range" errors. Something is terribly wrong and I haven't got a clue, what I can 
do to fix this...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com [http://si-community.com] & 
xsiforum.de [http://xsiforum.de]


On 29/06/2016 16:42:05, Leendert A. Hartog <hirazib...@live.nl 
[mailto:hirazib...@live.nl]> wrote:






Sorry for polluting this thread with error messages, but it seems as if every 
time I restart Softimage or reinstall the plugin a different set of errors are 
thrown. I really do not understand what is going on. Now the Qtevents.py still 
offers the same error message as in my previous post, but now the examples 
again behave like before:
Application.ExampleDialog() does create a window on screen, but kills it before 
I can see what it is.
 Application.ExampleMenu() works!!!
 Application.ExampleSignalSlot() throws the following error:
 # ERROR : Traceback (most recent call last):
#   File "

Re: PyQtForSoftimage Examples "Out of present range" error

2016-06-29 Thread Leendert A. Hartog
No, it seemed to work yesterday, but when I tried to revert to "internal" I had 
to reinstall Softimage to fix the ensuing errors...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 29/06/2016 16:58:52, Leendert A. Hartog <hirazib...@live.nl> wrote:
And as the icing on the cake, the next restart brought back the "Out of present 
range" errors. Something is terribly wrong and I haven't got a clue, what I can 
do to fix this...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 29/06/2016 16:42:05, Leendert A. Hartog <hirazib...@live.nl> wrote:






Sorry for polluting this thread with error messages, but it seems as if every 
time I restart Softimage or reinstall the plugin a different set of errors are 
thrown. I really do not understand what is going on. Now the Qtevents.py still 
offers the same error message as in my previous post, but now the examples 
again behave like before:
Application.ExampleDialog() does create a window on screen, but kills it before 
I can see what it is.
 Application.ExampleMenu() works!!!
 Application.ExampleSignalSlot() throws the following error:
 # ERROR : Traceback (most recent call last):
#   File "

Re: PyQtForSoftimage Examples "Out of present range" error

2016-06-29 Thread Leendert A. Hartog
I meant PySide 1.2.1.
I reinstalled Softimage, installed PySide 1.2.1 and all the weirdness reported 
in this thread started to happen...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 29/06/2016 17:32:23, Steven Caron  wrote:
You listed PySide 2.2... did you mean 1.2.2? Did you follow the  steps I listed?
*written with my thumbs
-- Softimage Mailing List. To unsubscribe, send a mail to 
softimage-requ...@listproc.autodesk.com with "unsubscribe" in the subject, and 
reply to confirm.--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: PyQtForSoftimage Examples "Out of present range" error

2016-06-29 Thread Leendert A. Hartog
And as the icing on the cake, the next restart brought back the "Out of present 
range" errors. Something is terribly wrong and I haven't got a clue, what I can 
do to fix this...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 29/06/2016 16:42:05, Leendert A. Hartog <hirazib...@live.nl> wrote:






Sorry for polluting this thread with error messages, but it seems as if every 
time I restart Softimage or reinstall the plugin a different set of errors are 
thrown. I really do not understand what is going on. Now the Qtevents.py still 
offers the same error message as in my previous post, but now the examples 
again behave like before:
Application.ExampleDialog() does create a window on screen, but kills it before 
I can see what it is.
 Application.ExampleMenu() works!!!
 Application.ExampleSignalSlot() throws the following error:
 # ERROR : Traceback (most recent call last):
#   File "

Re: PyQtForSoftimage Examples "Out of present range" error

2016-06-29 Thread Leendert A. Hartog
Sorry for polluting this thread with error messages, but it seems as if every 
time I restart Softimage or reinstall the plugin a different set of errors are 
thrown. I really do not understand what is going on. Now the Qtevents.py still 
offers the same error message as in my previous post, but now the examples 
again behave like before:
Application.ExampleDialog() does create a window on screen, but kills it before 
I can see what it is.
 Application.ExampleMenu() works!!!
 Application.ExampleSignalSlot() throws the following error:
 # ERROR : Traceback (most recent call last):
#   File 

Re: PyQtForSoftimage Examples "Out of present range" error

2016-06-29 Thread Leendert A. Hartog
But after restarting Softimage I am back at:
Qtevents.py doesn’t get properly loaded, but throws the following error:
# ERROR : Traceback (most recent call last):
#   File 

Re: PyQtForSoftimage Examples "Out of present range" error

2016-06-29 Thread Leendert A. Hartog
I have reinstalled PyQtForSoftimage in a Workgroup and now Qtevents.py is 
correctly loaded with no errors. Application.ExampleDialog() and 
Application.ExampleSignalSlot()  do create a window on screen, but Softimage 
kills it before I can see what it is. Application.ExampleMenu() still works. 
But now Application.ExampleUIFile() throws the following error:
 # ERROR : Traceback (most recent call last):
#   File 

Re: PyQtForSoftimage Examples "Out of present range" error

2016-06-29 Thread Leendert A. Hartog
I really hope someone will still be able to help me, because this is starting 
to drive me crazy…
I am back on “internal” Python…
I uninstalled PySide 2.2 and installed PySide 2.1, but now Softimage throws a 
whole set of new errors at me. Strangely enough though 
Application.ExampleMenu() now works…
 
Qtevents.py doesn’t get properly loaded, but throws the following error:
# ERROR : Traceback (most recent call last):
#   File 

Re: PyQtForSoftimage Examples "Out of present range" error

2016-06-28 Thread Leendert A. Hartog
I have reverted back to "internal" Python and now Softimage crashes hard when 
invoking the examples...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 28/06/2016 22:26:31, Leendert A. Hartog <hirazib...@live.nl> wrote:
Correction again: “print” doesn’t work for some reason with this “external” 
Python), returns “2.2.4” (NOT "1.2.4").


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 28/06/2016 22:25:10, Leendert A. Hartog <hirazib...@live.nl> wrote:
So now that I solved the problem I was having with the use of an “external” 
Python and have Python 2.7.11 running “in” Softimage, I run into a different 
set of problems. Python 2.7.11 ships with PySide 2.2.4, but now the plugin 
doesn’t work and is giving me the following error message:
“ERROR : [PyQtForSoftimage] Couldn’t import PySide or PyQt4! You must have one 
or the other to run this app.
# ERROR : Traceback (most recent call last):#   File “

Re: PyQtForSoftimage Examples "Out of present range" error

2016-06-28 Thread Leendert A. Hartog
Correction again: “print” doesn’t work for some reason with this “external” 
Python), returns “2.2.4” (NOT "1.2.4").


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 28/06/2016 22:25:10, Leendert A. Hartog <hirazib...@live.nl> wrote:
So now that I solved the problem I was having with the use of an “external” 
Python and have Python 2.7.11 running “in” Softimage, I run into a different 
set of problems. Python 2.7.11 ships with PySide 2.2.4, but now the plugin 
doesn’t work and is giving me the following error message:
“ERROR : [PyQtForSoftimage] Couldn’t import PySide or PyQt4! You must have one 
or the other to run this app.
# ERROR : Traceback (most recent call last):#   File “

Re: PyQtForSoftimage Examples "Out of present range" error

2016-06-28 Thread Leendert A. Hartog
So now that I solved the problem I was having with the use of an “external” 
Python and have Python 2.7.11 running “in” Softimage, I run into a different 
set of problems. Python 2.7.11 ships with PySide 2.2.4, but now the plugin 
doesn’t work and is giving me the following error message:
“ERROR : [PyQtForSoftimage] Couldn’t import PySide or PyQt4! You must have one 
or the other to run this app.
# ERROR : Traceback (most recent call last):#   File 

Re: "external" Python crashes Softimage onstartup

2016-06-28 Thread Leendert A. Hartog
Ignore my last message, it should have read: After defining the environment 
variable "PYTHONHOME" (NOT "PYTHONPATH") and setting it to "C:\Python27" 
Softimage accepted it as an "external" Python. So now I am running Python 
2.7.11 under Softimage, but now the "print" command has suddenly stopped 
working and I am forced to use the old "Application.LogMessage"...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 28/06/2016 20:58:56, Leendert A. Hartog <hirazib...@live.nl> wrote:
Had a weird bit of success. After defining the environment variable 
"PYTHONPATH" and setting it to "C:\Python27" Softimage accepted it as an 
"external" Python. So now I am running Python 2.7.11 under Softimage, but now 
the "print" command has suddenly stopped working and I am forced to use the old 
"Application.LogMessage"...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 28/06/2016 11:25:18, Leendert A. Hartog <hirazib...@live.nl> wrote:
Just tried it with pywin32-217 like you advised, but Softimage still crashes at 
startup.
Well, I guess I won't be using an "external" Python after all...

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 28/06/2016 11:15:33, 松本 隆芳 <matsum...@goshow.co.jp> wrote:
I install pywin32-217.win-amd64-py2.7 from
https://sourceforge.net/projects/pywin32/files/pywin32/Build%20217/
hope this helps...

--

有限会社 娯匠
松本 隆芳/MATSUMOTO TAKAYOSHI

〒166-0003
東京都杉並区高円寺南3-46-10
アクティオーレ高円寺南5階

Tel :03-3318-3120

携帯 :090-6032-8928
メール :matsum...@goshow.co.jp
WEB :http://www.goshow.co.jp/



2016-06-28 17:59 GMT+09:00 Manu Allasia <3d.alla...@gmail.com>:
> Hi Takayoshi,
>
> I'm really interested : Wich pywin version are you using ?
>
> Best regards.
>
> 2016-06-28 10:46 GMT+02:00 松本 隆芳 :
>>
>> FYI, It work well on 2015(sp1) + Win10 + external python 2.7.11 (and the
>> print command also work)
>> but, if you don't install pywin module, softimage crashes on every
>> startup.
>>
>> Takayoshi
>>
>> On 6/28/2016 4:44 PM, Martin Yara wrote:
>> > Thanks. It worked here with 2.7.7.
>> >
>> > The print command doesn't seems to work though.
>> > Is there any advantage using an external Python ?
>> >
>> > Martin
>> >
>> > On Tue, Jun 28, 2016 at 12:12 AM, Leendert A. Hartog
>> >
>> > wrote:
>> >
>> >> That would explain it. Will have to try if that helps. Thanks a lot...
>> >>
>> >> Greetz
>> >> Leendert
>> >> AKA Hirazi Blue
>> >> Softimage hobbyist, admin at si-community.com & xsiforum.de
>> >>
>> >> --
>> >> From: 3d.alla...@gmail.com
>> >> Date: Mon, 27 Jun 2016 16:21:41 +0200
>> >> Subject: Re: "external" Python crashes Softimage onstartup
>> >> To: softimage@listproc.autodesk.com
>> >>
>> >>
>> >> Hi Leendert,
>> >>
>> >> I can share with you my partial experience with a similar problem.
>> >>
>> >> Using Softimage 2015 (or more) and *NOT *"Use Python Installed with
>> >> Softimage (Windows Only)" on windows 7 (or more) Softimage can crash
>> >> on
>> >> startup if you use a *newer version of python than 2.7.7*
>> >>
>> >> So if you want to use an external python, you need to use at max 2.7.7
>> >>
>> >> I tried just with python 2.X.X not with 3.X.X
>> >>
>> >>
>> >> Hope that could help you...
>> >>
>> >>
>> >>
>> >>
>> >>
>> >> 2016-06-27 14:58 GMT+02:00 Leendert A. Hartog :
>> >>
>> >> I probably should add that the problem occurs on Softimage 2015 R2-SP2
>> >> on
>> >> Windows 10...
>> >>
>> >> Greetz
>> >> Leendert
>> >> AKA Hirazi Blue
>> >> Softimage hobbyist, admin at si-community.com & xsiforum.de
>> >>
>> >>
>> >> On 27/06/2016 14:46:37, Leendert A. Hartog wrote:
>> >> Let me BUMP this, as this problem is annoying me immensely and I do not
>> >> have a clue what could be going on...
>> >>
>> >> Greetz
>> >> Leendert
>> >> AKA Hirazi Blue
>> >> Softimage hobbyist, admin 

Re: "external" Python crashes Softimage onstartup

2016-06-28 Thread Leendert A. Hartog
Had a weird bit of success. After defining the environment variable 
"PYTHONPATH" and setting it to "C:\Python27" Softimage accepted it as an 
"external" Python. So now I am running Python 2.7.11 under Softimage, but now 
the "print" command has suddenly stopped working and I am forced to use the old 
"Application.LogMessage"...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 28/06/2016 11:25:18, Leendert A. Hartog <hirazib...@live.nl> wrote:
Just tried it with pywin32-217 like you advised, but Softimage still crashes at 
startup.
Well, I guess I won't be using an "external" Python after all...

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 28/06/2016 11:15:33, 松本 隆芳 <matsum...@goshow.co.jp> wrote:
I install pywin32-217.win-amd64-py2.7 from
https://sourceforge.net/projects/pywin32/files/pywin32/Build%20217/
hope this helps...

--

有限会社 娯匠
松本 隆芳/MATSUMOTO TAKAYOSHI

〒166-0003
東京都杉並区高円寺南3-46-10
アクティオーレ高円寺南5階

Tel :03-3318-3120

携帯 :090-6032-8928
メール :matsum...@goshow.co.jp
WEB :http://www.goshow.co.jp/



2016-06-28 17:59 GMT+09:00 Manu Allasia <3d.alla...@gmail.com>:
> Hi Takayoshi,
>
> I'm really interested : Wich pywin version are you using ?
>
> Best regards.
>
> 2016-06-28 10:46 GMT+02:00 松本 隆芳 :
>>
>> FYI, It work well on 2015(sp1) + Win10 + external python 2.7.11 (and the
>> print command also work)
>> but, if you don't install pywin module, softimage crashes on every
>> startup.
>>
>> Takayoshi
>>
>> On 6/28/2016 4:44 PM, Martin Yara wrote:
>> > Thanks. It worked here with 2.7.7.
>> >
>> > The print command doesn't seems to work though.
>> > Is there any advantage using an external Python ?
>> >
>> > Martin
>> >
>> > On Tue, Jun 28, 2016 at 12:12 AM, Leendert A. Hartog
>> >
>> > wrote:
>> >
>> >> That would explain it. Will have to try if that helps. Thanks a lot...
>> >>
>> >> Greetz
>> >> Leendert
>> >> AKA Hirazi Blue
>> >> Softimage hobbyist, admin at si-community.com & xsiforum.de
>> >>
>> >> --
>> >> From: 3d.alla...@gmail.com
>> >> Date: Mon, 27 Jun 2016 16:21:41 +0200
>> >> Subject: Re: "external" Python crashes Softimage onstartup
>> >> To: softimage@listproc.autodesk.com
>> >>
>> >>
>> >> Hi Leendert,
>> >>
>> >> I can share with you my partial experience with a similar problem.
>> >>
>> >> Using Softimage 2015 (or more) and *NOT *"Use Python Installed with
>> >> Softimage (Windows Only)" on windows 7 (or more) Softimage can crash
>> >> on
>> >> startup if you use a *newer version of python than 2.7.7*
>> >>
>> >> So if you want to use an external python, you need to use at max 2.7.7
>> >>
>> >> I tried just with python 2.X.X not with 3.X.X
>> >>
>> >>
>> >> Hope that could help you...
>> >>
>> >>
>> >>
>> >>
>> >>
>> >> 2016-06-27 14:58 GMT+02:00 Leendert A. Hartog :
>> >>
>> >> I probably should add that the problem occurs on Softimage 2015 R2-SP2
>> >> on
>> >> Windows 10...
>> >>
>> >> Greetz
>> >> Leendert
>> >> AKA Hirazi Blue
>> >> Softimage hobbyist, admin at si-community.com & xsiforum.de
>> >>
>> >>
>> >> On 27/06/2016 14:46:37, Leendert A. Hartog wrote:
>> >> Let me BUMP this, as this problem is annoying me immensely and I do not
>> >> have a clue what could be going on...
>> >>
>> >> Greetz
>> >> Leendert
>> >> AKA Hirazi Blue
>> >> Softimage hobbyist, admin at si-community.com & xsiforum.de
>> >>
>> >>
>> >> On 25/06/2016 14:25:22, Leendert A. Hartog wrote:
>> >> Just noticed something extremely worrisome...
>> >> Unchecking the "Use Python Installed with Softimage (Windows Only)"
>> >> flag
>> >> in the Script Editor Preferences causes Softimage to crash at
>> >> (re-)startup,
>> >> making it impossible to use an "external" Python with Softimage as far
>> >> as
>> >> I can tell...

Re: "external" Python crashes Softimage onstartup

2016-06-28 Thread Leendert A. Hartog
Just tried it with pywin32-217 like you advised, but Softimage still crashes at 
startup.
Well, I guess I won't be using an "external" Python after all...

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 28/06/2016 11:15:33, 松本 隆芳 <matsum...@goshow.co.jp> wrote:
I install pywin32-217.win-amd64-py2.7 from
https://sourceforge.net/projects/pywin32/files/pywin32/Build%20217/
hope this helps...

--

有限会社 娯匠
松本 隆芳/MATSUMOTO TAKAYOSHI

〒166-0003
東京都杉並区高円寺南3-46-10
アクティオーレ高円寺南5階

Tel :03-3318-3120

携帯 :090-6032-8928
メール :matsum...@goshow.co.jp
WEB :http://www.goshow.co.jp/



2016-06-28 17:59 GMT+09:00 Manu Allasia <3d.alla...@gmail.com>:
> Hi Takayoshi,
>
> I'm really interested : Wich pywin version are you using ?
>
> Best regards.
>
> 2016-06-28 10:46 GMT+02:00 松本 隆芳 :
>>
>> FYI, It work well on 2015(sp1) + Win10 + external python 2.7.11 (and the
>> print command also work)
>> but, if you don't install pywin module, softimage crashes on every
>> startup.
>>
>> Takayoshi
>>
>> On 6/28/2016 4:44 PM, Martin Yara wrote:
>> > Thanks. It worked here with 2.7.7.
>> >
>> > The print command doesn't seems to work though.
>> > Is there any advantage using an external Python ?
>> >
>> > Martin
>> >
>> > On Tue, Jun 28, 2016 at 12:12 AM, Leendert A. Hartog
>> >
>> > wrote:
>> >
>> >> That would explain it. Will have to try if that helps. Thanks a lot...
>> >>
>> >> Greetz
>> >> Leendert
>> >> AKA Hirazi Blue
>> >> Softimage hobbyist, admin at si-community.com & xsiforum.de
>> >>
>> >> --
>> >> From: 3d.alla...@gmail.com
>> >> Date: Mon, 27 Jun 2016 16:21:41 +0200
>> >> Subject: Re: "external" Python crashes Softimage onstartup
>> >> To: softimage@listproc.autodesk.com
>> >>
>> >>
>> >> Hi Leendert,
>> >>
>> >> I can share with you my partial experience with a similar problem.
>> >>
>> >> Using Softimage 2015 (or more) and *NOT *"Use Python Installed with
>> >> Softimage (Windows Only)" on windows 7 (or more) Softimage can crash
>> >> on
>> >> startup if you use a *newer version of python than 2.7.7*
>> >>
>> >> So if you want to use an external python, you need to use at max 2.7.7
>> >>
>> >> I tried just with python 2.X.X not with 3.X.X
>> >>
>> >>
>> >> Hope that could help you...
>> >>
>> >>
>> >>
>> >>
>> >>
>> >> 2016-06-27 14:58 GMT+02:00 Leendert A. Hartog :
>> >>
>> >> I probably should add that the problem occurs on Softimage 2015 R2-SP2
>> >> on
>> >> Windows 10...
>> >>
>> >> Greetz
>> >> Leendert
>> >> AKA Hirazi Blue
>> >> Softimage hobbyist, admin at si-community.com & xsiforum.de
>> >>
>> >>
>> >> On 27/06/2016 14:46:37, Leendert A. Hartog wrote:
>> >> Let me BUMP this, as this problem is annoying me immensely and I do not
>> >> have a clue what could be going on...
>> >>
>> >> Greetz
>> >> Leendert
>> >> AKA Hirazi Blue
>> >> Softimage hobbyist, admin at si-community.com & xsiforum.de
>> >>
>> >>
>> >> On 25/06/2016 14:25:22, Leendert A. Hartog wrote:
>> >> Just noticed something extremely worrisome...
>> >> Unchecking the "Use Python Installed with Softimage (Windows Only)"
>> >> flag
>> >> in the Script Editor Preferences causes Softimage to crash at
>> >> (re-)startup,
>> >> making it impossible to use an "external" Python with Softimage as far
>> >> as
>> >> I can tell...
>> >> Is there something I am overlooking? I installed an "external" Python
>> >> 2.7
>> >> and the corresponding Pywin32...
>> >>
>> >> Greetz
>> >> Leendert
>> >> AKA Hirazi Blue
>> >> Softimage hobbyist, admin at si-community.com & xsiforum.de
>> >>
>> >>
>> >> -- Softimage Mailing List. To unsubscribe, send a mail to
>> >> softimage-requ...@listproc.autodesk.com with "unsubscribe" in the
>

RE: "external" Python crashes Softimage onstartup

2016-06-27 Thread Leendert A. Hartog
That would explain it. Will have to try if that helps. Thanks a lot...
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
From: 3d.alla...@gmail.com
Date: Mon, 27 Jun 2016 16:21:41 +0200
Subject: Re: "external" Python crashes Softimage onstartup
To: softimage@listproc.autodesk.com

Hi Leendert, 
I can share with you my partial experience with a similar problem. 
Using Softimage 2015 (or more) and NOT "Use Python Installed with Softimage 
(Windows Only)" on windows 7 (or more)  Softimage can crash on startup if you 
use a newer version of python than 2.7.7
So if you want to use an external python, you need to use at max 2.7.7 
I tried just with python 2.X.X not with 3.X.X

Hope that could help you... 




2016-06-27 14:58 GMT+02:00 Leendert A. Hartog <hirazib...@live.nl>:






I probably should add that the problem 
occurs on Softimage 2015 R2-SP2 on Windows 10...

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de




   On 27/06/2016 14:46:37, Leendert A. 
Hartog <hirazib...@live.nl> wrote:Let me BUMP this, as this problem is annoying 
me immensely and I do not have a clue what could be going on...

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de




       On 25/06/2016 14:25:22, Leendert A. 
Hartog <hirazib...@live.nl> wrote:Just noticed something extremely 
worrisome...Unchecking the "Use Python Installed with Softimage (Windows Only)" 
flag in the Script Editor Preferences causes Softimage to crash at 
(re-)startup,making it impossible to use an "external" Python with Softimage as 
far as I can tell...Is there something I am overlooking? I installed an 
"external" Python 2.7 and the corresponding Pywin32...

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.
   --
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.
   
--

Softimage Mailing List.

To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.


-- 
Emmanuel Allasia - R
3D MatchMovers | Gobi Studio+33 663 713 381 / +33 491 088 916


--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm. 
  --
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: "external" Python crashes Softimage onstartup

2016-06-27 Thread Leendert A. Hartog
I probably should add that the problem occurs on Softimage 2015 R2-SP2 on 
Windows 10...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 27/06/2016 14:46:37, Leendert A. Hartog <hirazib...@live.nl> wrote:
Let me BUMP this, as this problem is annoying me immensely and I do not have a 
clue what could be going on...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 25/06/2016 14:25:22, Leendert A. Hartog <hirazib...@live.nl> wrote:
Just noticed something extremely worrisome...
Unchecking the "Use Python Installed with Softimage (Windows Only)" flag in the 
Script Editor Preferences causes Softimage to crash at (re-)startup,
making it impossible to use an "external" Python with Softimage as far as I can 
tell...
Is there something I am overlooking? I installed an "external" Python 2.7 and 
the corresponding Pywin32...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


-- Softimage Mailing List. To unsubscribe, send a mail to 
softimage-requ...@listproc.autodesk.com with "unsubscribe" in the subject, and 
reply to confirm.
-- Softimage Mailing List. To unsubscribe, send a mail to 
softimage-requ...@listproc.autodesk.com with "unsubscribe" in the subject, and 
reply to confirm.--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: "external" Python crashes Softimage onstartup

2016-06-27 Thread Leendert A. Hartog
Let me BUMP this, as this problem is annoying me immensely and I do not have a 
clue what could be going on...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 25/06/2016 14:25:22, Leendert A. Hartog <hirazib...@live.nl> wrote:
Just noticed something extremely worrisome...
Unchecking the "Use Python Installed with Softimage (Windows Only)" flag in the 
Script Editor Preferences causes Softimage to crash at (re-)startup,
making it impossible to use an "external" Python with Softimage as far as I can 
tell...
Is there something I am overlooking? I installed an "external" Python 2.7 and 
the corresponding Pywin32...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


-- Softimage Mailing List. To unsubscribe, send a mail to 
softimage-requ...@listproc.autodesk.com with "unsubscribe" in the subject, and 
reply to confirm.--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: PyQtForSoftimage Examples "Out of present range" error

2016-06-27 Thread Leendert A. Hartog
I was able to use the Windows installer for PySide 
("PySide-1.2.2.win-amd64-py2.7.exe"), after setting 
"HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.7\InstallPath" in the registry 
to point to the "internal" Python and running the installer "as an 
Administrator" (as I have my Softimage installed in the "Program 
Files"directory).


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 26/06/2016 17:07:12, Martin <furik...@gmail.com> wrote:
I'll have to go to my office to verify all the versions but I think SI crashed 
with every version of Python and Softimage I tried, independently if I used 
PyQT for Softimage plugin, PySide, or not.

What I did was installing a the same Python version SI is using, then PySide, 
copy this PySide folder to my Workgroup, use the internal Python and load this 
PySide folder and PyQT for SI plugin.

Martin
Sent from my iPhone

On 2016/06/26, at 14:50, Leendert A. Hartog <hirazib...@live.nl 
[mailto:hirazib...@live.nl]> wrote:


Oh... and 64 bit, obviously...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com [http://si-community.com] & 
xsiforum.de [http://xsiforum.de]


On 26/06/2016 07:44:14, Leendert A. Hartog <hirazib...@live.nl 
[mailto:hirazib...@live.nl]> wrote:
Windows 10
Softimage 2015 R2-SP2
"internal" Python 2.7.3
Pyside 1.2.2
PyQtForSoftimage_beta6.xsiaddon

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com [http://si-community.com] & 
xsiforum.de [http://xsiforum.de]


On 26/06/2016 04:57:07, Steven Caron <car...@gmail.com 
[mailto:car...@gmail.com]> wrote:
Ok, I have windows 7 and everything is working as expected. Let's debug this?

Win 7 64bit, check...
Softimage version?
Python version?
PyQt or PySide? which version exactly...
Version of PyQtForSoftimage plugin?


On Sat, Jun 25, 2016 at 7:50 PM, Martin <furik...@gmail.com 
[mailto:furik...@gmail.com]> wrote:

 I'm on Windows 7 Ultimate.

Martin
Sent from my iPhone

On 2016/06/26, at 11:36, Steven Caron <car...@gmail.com 
[mailto:car...@gmail.com]> wrote:


which operating system are you guys on?

On Sat, Jun 25, 2016 at 7:11 PM, Martin <furik...@gmail.com 
[mailto:furik...@gmail.com]> wrote:

Yeah that's the same problem I had a few months ago.

My "solution" was to use the internal Python and load pyside modules in a 
workgroup. I can send you that workgroup folder if you want.

Martin
Sent from my iPhone

On 2016/06/26, at 1:30, Leendert A. Hartog <hirazib...@live.nl 
[mailto:hirazib...@live.nl]> wrote:


I have tried installing the PyQtForSoftimage addon today, after having 
successfully installed PyQt and PySide, but the PyQt_EXamples all return a "COM 
Error: Out of present range. (0x-7ffdfff6) (...) # ERROR : OLE error 
0x80020101"-error... I haven't got a clue what is going on...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com [http://si-community.com] & 
xsiforum.de [http://xsiforum.de]


--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com 
[mailto:softimage-requ...@listproc.autodesk.com] with "unsubscribe" in the 
subject, and reply to confirm.

--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com 
[mailto:softimage-requ...@listproc.autodesk.com] with "unsubscribe" in the 
subject, and reply to confirm.


--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com 
[mailto:softimage-requ...@listproc.autodesk.com] with "unsubscribe" in the 
subject, and reply to confirm.

--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com 
[mailto:softimage-requ...@listproc.autodesk.com] with "unsubscribe" in the 
subject, and reply to confirm.


-- Softimage Mailing List. To unsubscribe, send a mail to 
softimage-requ...@listproc.autodesk.com 
[mailto:softimage-requ...@listproc.autodesk.com] with "unsubscribe" in the 
subject, and reply to confirm.
--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com 
[mailto:softimage-requ...@listproc.autodesk.com] with "unsubscribe" in the 
subject, and reply to confirm.--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: PyQtForSoftimage Examples "Out of present range" error

2016-06-25 Thread Leendert A. Hartog
Oh... and 64 bit, obviously...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 26/06/2016 07:44:14, Leendert A. Hartog <hirazib...@live.nl> wrote:
Windows 10
Softimage 2015 R2-SP2
"internal" Python 2.7.3
Pyside 1.2.2
PyQtForSoftimage_beta6.xsiaddon

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 26/06/2016 04:57:07, Steven Caron <car...@gmail.com> wrote:
Ok, I have windows 7 and everything is working as expected. Let's debug this?

Win 7 64bit, check...
Softimage version?
Python version?
PyQt or PySide? which version exactly...
Version of PyQtForSoftimage plugin?


On Sat, Jun 25, 2016 at 7:50 PM, Martin <furik...@gmail.com 
[mailto:furik...@gmail.com]> wrote:

 I'm on Windows 7 Ultimate.

Martin
Sent from my iPhone

On 2016/06/26, at 11:36, Steven Caron <car...@gmail.com 
[mailto:car...@gmail.com]> wrote:


which operating system are you guys on?

On Sat, Jun 25, 2016 at 7:11 PM, Martin <furik...@gmail.com 
[mailto:furik...@gmail.com]> wrote:

Yeah that's the same problem I had a few months ago.

My "solution" was to use the internal Python and load pyside modules in a 
workgroup. I can send you that workgroup folder if you want.

Martin
Sent from my iPhone

On 2016/06/26, at 1:30, Leendert A. Hartog <hirazib...@live.nl 
[mailto:hirazib...@live.nl]> wrote:


I have tried installing the PyQtForSoftimage addon today, after having 
successfully installed PyQt and PySide, but the PyQt_EXamples all return a "COM 
Error: Out of present range. (0x-7ffdfff6) (...) # ERROR : OLE error 
0x80020101"-error... I haven't got a clue what is going on...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com [http://si-community.com] & 
xsiforum.de [http://xsiforum.de]


--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com 
[mailto:softimage-requ...@listproc.autodesk.com] with "unsubscribe" in the 
subject, and reply to confirm.

--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com 
[mailto:softimage-requ...@listproc.autodesk.com] with "unsubscribe" in the 
subject, and reply to confirm.


--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com 
[mailto:softimage-requ...@listproc.autodesk.com] with "unsubscribe" in the 
subject, and reply to confirm.

--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com 
[mailto:softimage-requ...@listproc.autodesk.com] with "unsubscribe" in the 
subject, and reply to confirm.


-- Softimage Mailing List. To unsubscribe, send a mail to 
softimage-requ...@listproc.autodesk.com with "unsubscribe" in the subject, and 
reply to confirm.--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: PyQtForSoftimage Examples "Out of present range" error

2016-06-25 Thread Leendert A. Hartog
Windows 10
Softimage 2015 R2-SP2
"internal" Python 2.7.3
Pyside 1.2.2
PyQtForSoftimage_beta6.xsiaddon

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 26/06/2016 04:57:07, Steven Caron <car...@gmail.com> wrote:
Ok, I have windows 7 and everything is working as expected. Let's debug this?

Win 7 64bit, check...
Softimage version?
Python version?
PyQt or PySide? which version exactly...
Version of PyQtForSoftimage plugin?


On Sat, Jun 25, 2016 at 7:50 PM, Martin <furik...@gmail.com 
[mailto:furik...@gmail.com]> wrote:

 I'm on Windows 7 Ultimate.

Martin
Sent from my iPhone

On 2016/06/26, at 11:36, Steven Caron <car...@gmail.com 
[mailto:car...@gmail.com]> wrote:


which operating system are you guys on?

On Sat, Jun 25, 2016 at 7:11 PM, Martin <furik...@gmail.com 
[mailto:furik...@gmail.com]> wrote:

Yeah that's the same problem I had a few months ago.

My "solution" was to use the internal Python and load pyside modules in a 
workgroup. I can send you that workgroup folder if you want.

Martin
Sent from my iPhone

On 2016/06/26, at 1:30, Leendert A. Hartog <hirazib...@live.nl 
[mailto:hirazib...@live.nl]> wrote:


I have tried installing the PyQtForSoftimage addon today, after having 
successfully installed PyQt and PySide, but the PyQt_EXamples all return a "COM 
Error: Out of present range. (0x-7ffdfff6) (...) # ERROR : OLE error 
0x80020101"-error... I haven't got a clue what is going on...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com [http://si-community.com] & 
xsiforum.de [http://xsiforum.de]


--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com 
[mailto:softimage-requ...@listproc.autodesk.com] with "unsubscribe" in the 
subject, and reply to confirm.

--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com 
[mailto:softimage-requ...@listproc.autodesk.com] with "unsubscribe" in the 
subject, and reply to confirm.


--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com 
[mailto:softimage-requ...@listproc.autodesk.com] with "unsubscribe" in the 
subject, and reply to confirm.

--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com 
[mailto:softimage-requ...@listproc.autodesk.com] with "unsubscribe" in the 
subject, and reply to confirm.


-- Softimage Mailing List. To unsubscribe, send a mail to 
softimage-requ...@listproc.autodesk.com with "unsubscribe" in the subject, and 
reply to confirm.--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

PyQtForSoftimage Examples "Out of present range" error

2016-06-25 Thread Leendert A. Hartog
I have tried installing the PyQtForSoftimage addon today, after having 
successfully installed PyQt and PySide, but the PyQt_EXamples all return a "COM 
Error: Out of present range. (0x-7ffdfff6) (...) # ERROR : OLE error 
0x80020101"-error... I haven't got a clue what is going on...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Workgroup changes do not "stick"...

2016-06-25 Thread Leendert A. Hartog
When I connect or disconnect a new workgroup and restart the change doesn't 
stick.
If I manually save the "Preferences" it does, but this is not what is to be 
expected...
What am I doing wrong?


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

"external" Python crashes Softimage onstartup

2016-06-25 Thread Leendert A. Hartog
Just noticed something extremely worrisome...
Unchecking the "Use Python Installed with Softimage (Windows Only)" flag in the 
Script Editor Preferences causes Softimage to crash at (re-)startup,
making it impossible to use an "external" Python with Softimage as far as I can 
tell...
Is there something I am overlooking? I installed an "external" Python 2.7 and 
the corresponding Pywin32...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

RE: Convert PIC files

2016-06-20 Thread Leendert A. Hartog
The makers of XnConvert also offer a command line image processor called 
NConvert, which would set you back $100 for commercial use, but might prove 
handy when trying to convert a massive amount of 
files...http://www.xnview.com/en/nconvert/GreetzLeendertAKA Hirazi 
BlueSoftimage hobbyist, admin at si-community.com & xsiforum.de
Date: Mon, 20 Jun 2016 09:16:25 +0200
From: li...@thomasvolkmann.com
To: softimage@listproc.autodesk.com
Subject: Re: Convert PIC files





 XnConvert might be an option: http://www.xnview.com/en/xnconvert/
 
 
Martin Yara  hat am 20. Juni 2016 um 09:07 geschrieben:


I have to convert tons of Softimage PIC files to TGAs, is there any fast way to 
do this ?
 
I think I'll be doing it with Photoshop batches, but I would like a faster / 
better solution if there is any.
 
Thanks

Martin

--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

 
--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm. 
  --
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: material library export

2016-02-16 Thread Leendert A. Hartog
As a PS to my previous post: I haven't got a clue if that would work as I do 
not use network drives. 


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


On 16/02/2016 15:42:21, Leendert A. Hartog <hirazib...@live.nl> wrote:
This might help:
http://woshub.com/how-to-access-mapped-network-drives-from-the-elevated-apps/

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
On 16/02/2016 14:24:31, Mirko Jankovic <mirkoj.anima...@gmail.com> wrote:
a bit problem with that is sa if I run si as administrator it doesn't see 
network at all :) NAS and everything is not accessible . But will try to see if 
it works for export at least. thanks


On Tue, Feb 16, 2016 at 1:53 PM, Leendert A. Hartog <hirazib...@live.nl 
[mailto:hirazib...@live.nl]> wrote:

I ran into similar problems with 2015 R2-SP2 on "Windows 10" recently.
Running the XSI.bat "as an administrator" fixed this for me though.

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com [http://si-community.com] & 
xsiforum.de [http://xsiforum.de]
On 16/02/2016 13:38:17, Mirko Jankovic <mirkoj.anima...@gmail.com 
[mailto:mirkoj.anima...@gmail.com]> wrote:
restarting si, comp, new scenes.. nothing helps.
Issue is exporting it self it simply doesn't export anything. 
there is no file nothing.. tried both file formats offered and nothing. 
no file is created. 

On Tue, Feb 16, 2016 at 1:21 PM, Andi Farhall <hack...@outlook.com 
[mailto:hack...@outlook.com]> wrote:

on 2015 rather than sp2 but i had a situation on reading a matlib where it came 
in as empty and renamed __DEFAULT__. Totally unexplained, but restarting soft 
and reloading the scene "fixed" the issue. Try a clean start.. Merge the 
scene... I'm assuming you have more than half a dozen shaders in there?


Andi

...

http://www.hackneyeffects.com/ [http://www.hackneyeffects.com/]
https://vimeo.com/user4174293 [https://vimeo.com/user4174293]
http://www.linkedin.com/pub/andi-farhall/b/496/b21 
[http://www.linkedin.com/pub/andi-farhall/b/496/b21]


http://www.flickr.com/photos/lord_hackney/ 
[http://www.flickr.com/photos/lord_hackney/]
http://spylon.tumblr.com/ [http://spylon.tumblr.com/]

This email and any attachments to it may be confidential and are intended 
solely for the use of the individual to whom it is addressed. Any views or 
opinions expressed are solely those of the author and do not necessarily 
represent those of Hackney Effects Ltd.
If you are not the intended recipient of this email, you must neither take any 
action based upon its contents, nor copy or show it to anyone.
Please contact the sender if you believe you have received this email in error.



From: mirkoj.anima...@gmail.com [mailto:mirkoj.anima...@gmail.com]
Date: Tue, 16 Feb 2016 12:46:21 +0100
Subject: material library export
To: softimage@listproc.autodesk.com [mailto:softimage@listproc.autodesk.com]


Hey guys,
Can anyone try exporting an material library from si2015 sp2?
It worked perfectly a while ago but I just needed it and there is simply 
nothing exported at all.
Any ideas?

--

Mirko Jankovic
skype: mirko-jankovic

https://vimeo.com/mirkoj [https://vimeo.com/mirkoj]


Need some help with rendering an Redshift project?

http://www.gpuoven.com/ [http://www.gpuoven.com/]




--

Mirko Jankovic
skype: mirko-jankovic

https://vimeo.com/mirkoj [https://vimeo.com/mirkoj]


Need some help with rendering an Redshift project?

http://www.gpuoven.com/ [http://www.gpuoven.com/]




--

Mirko Jankovic
skype: mirko-jankovic

https://vimeo.com/mirkoj [https://vimeo.com/mirkoj]


Need some help with rendering an Redshift project?

http://www.gpuoven.com/ [http://www.gpuoven.com/]


Re: material library export

2016-02-16 Thread Leendert A. Hartog
This might help:
http://woshub.com/how-to-access-mapped-network-drives-from-the-elevated-apps/

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
On 16/02/2016 14:24:31, Mirko Jankovic <mirkoj.anima...@gmail.com> wrote:
a bit problem with that is sa if I run si as administrator it doesn't see 
network at all :) NAS and everything is not accessible . But will try to see if 
it works for export at least. thanks


On Tue, Feb 16, 2016 at 1:53 PM, Leendert A. Hartog <hirazib...@live.nl 
[mailto:hirazib...@live.nl]> wrote:

I ran into similar problems with 2015 R2-SP2 on "Windows 10" recently.
Running the XSI.bat "as an administrator" fixed this for me though.

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com [http://si-community.com] & 
xsiforum.de [http://xsiforum.de]
On 16/02/2016 13:38:17, Mirko Jankovic <mirkoj.anima...@gmail.com 
[mailto:mirkoj.anima...@gmail.com]> wrote:
restarting si, comp, new scenes.. nothing helps.
Issue is exporting it self it simply doesn't export anything.
there is no file nothing.. tried both file formats offered and nothing.
no file is created.

On Tue, Feb 16, 2016 at 1:21 PM, Andi Farhall <hack...@outlook.com 
[mailto:hack...@outlook.com]> wrote:

on 2015 rather than sp2 but i had a situation on reading a matlib where it came 
in as empty and renamed __DEFAULT__. Totally unexplained, but restarting soft 
and reloading the scene "fixed" the issue. Try a clean start.. Merge the 
scene... I'm assuming you have more than half a dozen shaders in there?


Andi

...

http://www.hackneyeffects.com/ [http://www.hackneyeffects.com/]
https://vimeo.com/user4174293 [https://vimeo.com/user4174293]
http://www.linkedin.com/pub/andi-farhall/b/496/b21 
[http://www.linkedin.com/pub/andi-farhall/b/496/b21]


http://www.flickr.com/photos/lord_hackney/ 
[http://www.flickr.com/photos/lord_hackney/]
http://spylon.tumblr.com/ [http://spylon.tumblr.com/]

This email and any attachments to it may be confidential and are intended 
solely for the use of the individual to whom it is addressed. Any views or 
opinions expressed are solely those of the author and do not necessarily 
represent those of Hackney Effects Ltd.
If you are not the intended recipient of this email, you must neither take any 
action based upon its contents, nor copy or show it to anyone.
Please contact the sender if you believe you have received this email in error.



From: mirkoj.anima...@gmail.com [mailto:mirkoj.anima...@gmail.com]
Date: Tue, 16 Feb 2016 12:46:21 +0100
Subject: material library export
To: softimage@listproc.autodesk.com [mailto:softimage@listproc.autodesk.com]


Hey guys,
Can anyone try exporting an material library from si2015 sp2?
It worked perfectly a while ago but I just needed it and there is simply 
nothing exported at all.
Any ideas?

--

Mirko Jankovic
skype: mirko-jankovic

https://vimeo.com/mirkoj [https://vimeo.com/mirkoj]


Need some help with rendering an Redshift project?

http://www.gpuoven.com/ [http://www.gpuoven.com/]




--

Mirko Jankovic
skype: mirko-jankovic

https://vimeo.com/mirkoj [https://vimeo.com/mirkoj]


Need some help with rendering an Redshift project?

http://www.gpuoven.com/ [http://www.gpuoven.com/]




--

Mirko Jankovic
skype: mirko-jankovic

https://vimeo.com/mirkoj [https://vimeo.com/mirkoj]


Need some help with rendering an Redshift project?

http://www.gpuoven.com/ [http://www.gpuoven.com/]


Re: Goodbyes (was this is the end...)

2016-02-04 Thread Leendert A. Hartog
@Luc-Eric - Out of curiosity: can you tell me how many people are subscribed to 
this mailing list currently?

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
On 04/02/2016 18:54:28, Luc-Eric Rousseau <luceri...@gmail.com> wrote:
Oh, nobody wants an Autodesk guy moderating an XSI list, this is just something 
the list got stuck with :P
I'm not aware of the list being at risk of going away, however nothing can last 
forever. I cannot help you with moving the users elsewhere, the list of 
subscribers is protected by the customer data privacy policy. I haven't blocked 
people plugging their houdini things, I won't block anyone plugging their 
alternate mailing list as long as it's not annoying spam.


On 3 February 2016 at 19:27, Jason S <jasonsta...@gmail.com 
[mailto:jasonsta...@gmail.com]> wrote:

On 02/03/16 4:36, Leendert A. Hartog wrote:

@Jason - Thanks for the compliment!
If and when the need were to arise, I would certainly consider it, but not as a 
sole moderator.


Cool! :)
Otherwise perhaps Luc-Eric(?) would also (continue to) be up to the challenge?


Re: Goodbyes (was this is the end...)

2016-02-03 Thread Leendert A. Hartog
@Jason - Thanks for the compliment!
If and when the need were to arise, I would certainly consider it, but not as a 
sole moderator. 
I have learned from my time with the si-community that important decisions such 
as banning someone shouldn't be taken by one person alone.
The si-community has a rule that any temporary or permanent ban must be agreed 
upon by at least two moderators.
That said, IIRC, we only once had an incident that seemed to warrant a 
temporary ban.
Genuine spammers, however, get kicked out without such discretion...

Greetz
Leendert
AKA Hirazi Blue

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
On 03/02/2016 01:14:54, Jason S  wrote:
If such a case would arise,
Hirazi? Given your excellent job (also in terms of fairness) in the rare cases 
when moderation was required at SI-Community,
would you be open to moderate the list as well?


On 02/02/16 19:01, Jason S wrote:

If we want, we could follow their example

http://community.avid.com/forums/p/8263/365964.aspx 
[http://community.avid.com/forums/p/8263/365964.aspx]

(and avoid the all consuming vortex ¦P )

Ladies & Gentlemen:
Due to reasons all too convoluted to go into here, it has been decided that the 
original DS list hosted at Softimage.com will be closed down. The community has 
taken the situation into our own hands and moved to a new home. We've now 
passed 270 members. If you'd like to join us, visit the list web page at:

http://groups.google.com/group/DS-List/ 
[http://groups.google.com/group/DS-List/]
At least for us, all previous messages would be kept and new ones added at the 
same place,
except subscriptions & posts would just be sent through at a different list 
@googlegroups.com address.



On 02/02/16 10:23, Bradley Gabe wrote:

I appreciate the sentiment folks, you've already thanked me enough over the 
years. :-)

For the first time, I am concerned that the list might disappear once and for 
all, and possibly without warning. At the moment, this has been my only contact 
with the old user base. I'm afraid if the list goes, I won't be able to keep up 
as I am being sucked into an entirely different, all-consuming vortex.





Re: Goodbyes (was this is the end...)

2016-01-31 Thread Leendert A. Hartog
@Stephan - While I do not think this group will need a lot of moderation, there 
will have to be some system in place to exclude people who violate some basic 
ground rules. Opening up the list to the outside-world will almost certainly 
bring in "spammers" for instance...


Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
On 31/01/2016 16:33:07, Stephen Davidson <magic...@bellsouth.net> wrote:
I belong to another group, called the Speed Razor Video Editing 
[https://groups.yahoo.com/neo/groups/razor_users/info], on Yahoo.
It was a discussion group that was formed after Speed Razor was shelved,
many years ago. The Yahoo groups behave very similarly to the Softimage
mail group.  

We would need a moderator, however. Any volunteers?

Best Regards,
  Stephen P. Davidson 
       (954) 552-7956
    sdavid...@3danimationmagic.com
Any sufficiently advanced technology is indistinguishable from magic
                                                                             - 
Arthur C. Clarke
[http://www.3danimationmagic.com/]

On Sun, Jan 31, 2016 at 4:39 AM Leendert A. Hartog <hirazib...@live.nl 
[mailto:hirazib...@live.nl]> wrote:

While I assume the list is safe at least until Autodesk definitively pulls the 
plug on Softimage support (end of April AFAIK), we can keep on assuming the 
list is safe until it’s too late or we can take action to move this list to a 
company-independent location to ensure its continuation. We should seriously 
consider taking action now, before it’s too late. Better safe than sorry, as 
the saying goes…
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com [http://si-community.com] & 
xsiforum.de [http://xsiforum.de]
On 30/01/2016 19:33:07, Martin <furik...@gmail.com [mailto:furik...@gmail.com]> 
wrote:
Most of us will definitely stay in the business (or hobby) and some of us will 
still using at some degree Softimage for years so I don't see why this list 
should disappear any time soon.

Martin
Sent from my iPhone

On 2016/01/30, at 18:31, Olivier Jeannel <facialdel...@gmail.com 
[mailto:facialdel...@gmail.com]> wrote:


Hey hey, calm down. Is this list really going to disapear ?
Ain't possible to move somewhere else if so ? 

And I owe you M. Gabe my very first step on ice with your tutorials !


On Fri, Jan 29, 2016 at 11:22 PM, Jason S <jasonsta...@gmail.com 
[mailto:jasonsta...@gmail.com]> wrote:

Now now.. the list is highly unlikely to go anywhere.

I can also recall such goodbyes from before, and like before I hope it's not 
really goodbye  ;-)



On 01/29/16 15:38, Bradley Gabe wrote:

In the event the list suddenly disappears with all this EOL talk, I thought I'd 
offer a well deserved and long overdue thanks to everyone in the community for 
everything they've done over the years. It was the original si3d list that 
provided me the opportunity I needed for my very first break into high end all 
those years ago. And it's been the XSI community and this list that helped put 
a roof over my head, feed my family, and keep me functionally sane since then.

Best wishes to everyone in their future ventures.

-Bradley




Re: Goodbyes (was this is the end...)

2016-01-31 Thread Leendert A. Hartog
While I assume the list is safe at least until Autodesk definitively pulls the 
plug on Softimage support (end of April AFAIK), we can keep on assuming the 
list is safe until it’s too late or we can take action to move this list to a 
company-independent location to ensure its continuation. We should seriously 
consider taking action now, before it’s too late. Better safe than sorry, as 
the saying goes…
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
On 30/01/2016 19:33:07, Martin  wrote:
Most of us will definitely stay in the business (or hobby) and some of us will 
still using at some degree Softimage for years so I don't see why this list 
should disappear any time soon.

Martin
Sent from my iPhone

On 2016/01/30, at 18:31, Olivier Jeannel  wrote:


Hey hey, calm down. Is this list really going to disapear ?
Ain't possible to move somewhere else if so ? 

And I owe you M. Gabe my very first step on ice with your tutorials !


On Fri, Jan 29, 2016 at 11:22 PM, Jason S  wrote:

Now now.. the list is highly unlikely to go anywhere.

I can also recall such goodbyes from before, and like before I hope it's not 
really goodbye  ;-)



On 01/29/16 15:38, Bradley Gabe wrote:

In the event the list suddenly disappears with all this EOL talk, I thought I'd 
offer a well deserved and long overdue thanks to everyone in the community for 
everything they've done over the years. It was the original si3d list that 
provided me the opportunity I needed for my very first break into high end all 
those years ago. And it's been the XSI community and this list that helped put 
a roof over my head, feed my family, and keep me functionally sane since then.

Best wishes to everyone in their future ventures.

-Bradley




Re: Converting Nurbs to Polygons

2016-01-29 Thread Leendert A. Hartog
Haven't tried this myself in a long time, only took their demo "for a spin" way 
back, 
but MOI ("Moment of Inspiration" - http://moi3d.com/) advertises with the 
following:
"The icing on the cake is MoI’s unique polygon mesh export that generates 
exceptionally clean and crisp N-Gon polygon meshes from CAD NURBS models." and 
is way cheaper than Rhino.

Sent from Mailbird 
[http://www.getmailbird.com/?utm_source=Mailbirdutm_medium=emailutm_campaign=sent-from-mailbird]
On 29/01/2016 11:09:55, David Saber  wrote:
Thanks, I will test Rhino as well!

On 2016-01-29 10:51, Enter Reality wrote:
> I strongly suggest you to try Rhino for nurbs conversion and poly
> optimization/cleaning, since there are some builtin features in order
> to do that.
> Then from there you can export in FBX and have a clean mesh rather
> then wasting time in Maya or do the cleanup in Softimage.


test

2015-12-12 Thread Leendert A. Hartog
Sorry for the noise...

Re: Licensing error R2-SP2 (was ""86269SFTIMSIB_2016_0F")

2015-12-10 Thread Leendert A. Hartog
Just never thought of having to update the license file as well, as I 
figured the MayaS 2016 file would still be valid for the SP2 as well...

Thanks for your patience, all...

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

-Oorspronkelijk bericht- 
From: Maurice Patel

Sent: Thursday, December 10, 2015 8:13 PM
To: softimage@listproc.autodesk.com
Subject: RE: Licensing error R2-SP2 (was ""86269SFTIMSIB_2016_0F")

Cool! I am glad it all worked out in the end. Sorry that you had to go 
through this.

Maurice

Maurice Patel
Tél:  514 954-7134
Cell: 514 242-6549

From: softimage-boun...@listproc.autodesk.com 
[mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Leendert A. 
Hartog

Sent: Thursday, December 10, 2015 2:11 PM
To: softimage@listproc.autodesk.com
Subject: Re: Licensing error R2-SP2 (was ""86269SFTIMSIB_2016_0F")

Problem solved...
After going back to registeronce and getting a new license file, there does 
appear to have been something wrong with my original license file,
dating from the time when the MayaS 2016 bundle was first released, as it 
was missing an "INCREMENT 86269SFTIMSIB_2016_0F" block.

With this new license everything seems to work as expected.

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

From: hk-v...@iscs-i.com<mailto:hk-v...@iscs-i.com>
Sent: Thursday, December 10, 2015 6:23 PM
To: softimage@listproc.autodesk.com<mailto:softimage@listproc.autodesk.com>
Cc: Leendert A. Hartog<mailto:hirazib...@live.nl>
Subject: Re: Licensing error R2-SP2 (was ""86269SFTIMSIB_2016_0F")


Have you tried Autodesk's licensing parser to validate your file:

http://www.licenseparser.com/

Cheers,

Henry

On 2015-12-10 10:17, Leendert A. Hartog wrote:

Could there be something wrong with my license file?

Is there someone who could check this, where I could send my current license 
file to?


Normal "interfaced" Softimage 2015 and Maya 2016 run properly off it,

Only problem I've faced so far are the missing "2016" batch licenses...



Greetz

Leendert

AKA Hirazi Blue

Softimage hobbyist, admin at si-community.com & xsiforum.de



-Oorspronkelijk bericht- From: Maurice Patel

Sent: Thursday, December 10, 2015 4:44 PM

To: softimage@listproc.autodesk.com<mailto:softimage@listproc.autodesk.com>

Subject: RE: Licensing error R2-SP2 (was ""86269SFTIMSIB_2016_0F")



I can help clarify. There is no difference. There was no Softimage 2016 so 
for the 2016 release of the Suites and the Maya/3ds Max bundles a 'bridge' 
had to be created for Softimage 2015 to go into the new offering. This was 
the R2 version and apart from licensing requirements there was no change in 
the software. The only software updates have been the service packs which 
were issued separately. Our QA team reported today that they have not yet 
identified an issue in their tests (Batch is working) but that they are 
continuing to look into this.




Maurice Patel

Tél:  514 954-7134

Cell: 514 242-6549



-Original Message-

From: 
softimage-boun...@listproc.autodesk.com<mailto:softimage-boun...@listproc.autodesk.com> 
[mailto:softimage-boun...@listproc.autodesk.com<mailto:softimage-boun...@listproc.autodesk.com>] 
On Behalf Of Ponthieux, Joseph G. (LARC-E1A)[LITES II]


Sent: Thursday, December 10, 2015 9:53 AM

To: softimage@listproc.autodesk.com<mailto:softimage@listproc.autodesk.com>

Subject: Re: Licensing error R2-SP2 (was ""86269SFTIMSIB_2016_0F")



I just installed 2016 ECSU and recalled seeing this in the release notes:





https://knowledge.autodesk.com/sites/default/files/entertainment_creation_s

uites_2016_readme_enu.htm



The Softimage Notes suggest that SI 15 and 16 are identical. I suspected 
Softimage would be renamed 2016 in order to keep it included in the suites 
and keep it's identity as a suite component for reference. Thing is it says 
that that version with the 2016 suite is not "Softimage 2016 R2" but 
"Softimage 2015 R2" and that 2015 R2 only works with 2016 license keys.


The installer doesn't install it automatically as in the past, but it does 
copy the necessary installation package to do so manually. I never installed 
it, figured I'd wait till next year to see if a final SP comes out.




Looking at these notes you'd think the only thing they spend any time 
working on is FBX but all you have to do is open Maya 2016 to know that¹s 
not the case. It would be nice though to have more information on what if 
anything makes these Softimage versions any different, assuming they might 
be.




Joey









On 12/9/15 5:15 PM, 
"softimage-boun...@listproc.autodesk.com<mailto:softimage-boun...@listproc.autodesk.com> 
on behalf of Leendert A. Hartog" 
<softimage-boun...@listproc.autodes

Re: Licensing error R2-SP2 (was ""86269SFTIMSIB_2016_0F")

2015-12-10 Thread Leendert A. Hartog
Problem solved...
After going back to registeronce and getting a new license file, there does 
appear to have been something wrong with my original license file, 
dating from the time when the MayaS 2016 bundle was first released, as it was 
missing an "INCREMENT 86269SFTIMSIB_2016_0F" block. 
With this new license everything seems to work as expected.

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

From: hk-v...@iscs-i.com 
Sent: Thursday, December 10, 2015 6:23 PM
To: softimage@listproc.autodesk.com 
Cc: Leendert A. Hartog 
Subject: Re: Licensing error R2-SP2 (was ""86269SFTIMSIB_2016_0F")

Have you tried Autodesk's licensing parser to validate your file:

http://www.licenseparser.com/

Cheers,

Henry

On 2015-12-10 10:17, Leendert A. Hartog wrote:

Could there be something wrong with my license file?
Is there someone who could check this, where I could send my current license 
file to?
Normal "interfaced" Softimage 2015 and Maya 2016 run properly off it,
Only problem I've faced so far are the missing "2016" batch licenses...

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

-Oorspronkelijk bericht- From: Maurice Patel
Sent: Thursday, December 10, 2015 4:44 PM
To: softimage@listproc.autodesk.com
Subject: RE: Licensing error R2-SP2 (was ""86269SFTIMSIB_2016_0F")

I can help clarify. There is no difference. There was no Softimage 2016 so for 
the 2016 release of the Suites and the Maya/3ds Max bundles a 'bridge' had to 
be created for Softimage 2015 to go into the new offering. This was the R2 
version and apart from licensing requirements there was no change in the 
software. The only software updates have been the service packs which were 
issued separately. Our QA team reported today that they have not yet identified 
an issue in their tests (Batch is working) but that they are continuing to look 
into this.

Maurice Patel
Tél:  514 954-7134
Cell: 514 242-6549

-Original Message-
From: softimage-boun...@listproc.autodesk.com 
[mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Ponthieux, Joseph 
G. (LARC-E1A)[LITES II]
Sent: Thursday, December 10, 2015 9:53 AM
To: softimage@listproc.autodesk.com
Subject: Re: Licensing error R2-SP2 (was ""86269SFTIMSIB_2016_0F")

I just installed 2016 ECSU and recalled seeing this in the release notes:


https://knowledge.autodesk.com/sites/default/files/entertainment_creation_s
uites_2016_readme_enu.htm

The Softimage Notes suggest that SI 15 and 16 are identical. I suspected 
Softimage would be renamed 2016 in order to keep it included in the suites and 
keep it's identity as a suite component for reference. Thing is it says that 
that version with the 2016 suite is not "Softimage 2016 R2" but "Softimage 2015 
R2" and that 2015 R2 only works with 2016 license keys.
The installer doesn't install it automatically as in the past, but it does copy 
the necessary installation package to do so manually. I never installed it, 
figured I'd wait till next year to see if a final SP comes out.

Looking at these notes you'd think the only thing they spend any time working 
on is FBX but all you have to do is open Maya 2016 to know that¹s not the case. 
It would be nice though to have more information on what if anything makes 
these Softimage versions any different, assuming they might be.

Joey




On 12/9/15 5:15 PM, "softimage-boun...@listproc.autodesk.com on behalf of 
Leendert A. Hartog" <softimage-boun...@listproc.autodesk.com on behalf of 
hirazib...@live.nl> wrote:Thanks. The installed version is the R2-SP2 that is 
bundled with the license for Maya 2016. It was my impression that SP2 and R2-SP 
weren't identical, otherwise there wouldn't be a reason to distribute two 
different versions. But I could be mistaken... Greetz Leendert AKA Hirazi Blue 
Softimage hobbyist, admin at si-community.com & xsiforum.de -Oorspronkelijk 
bericht- From: Ponthieux, Joseph G. (LARC-E1A)[LITES II] Sent: Wednesday, 
December 9, 2015 10:58 PM To: softimage@listproc.autodesk.com Subject: RE: 
Licensing error R2-SP2 (was ""86269SFTIMSIB_2016_0F") Leendert, Is your install 
base strictly Softimage or is it a suite? I presume whatever it is it must be 
installed from a 2016 package? There was a warning somewhere that said the two 
versions should not be installed at the same time. Is it possible you have both 
installed somehow? When I run xsibatch here using the 2015 version, it tells me 
it is checking out: === 
Autodesk Softimage 13.0.114.0 
=== License information: 
using [86269SFTIMSIB_2015_0F] I don't have SI 2016 R2 installed. If your 
version is looking to something with 2016 license code in it, it must be the SI 
2016 R2 ver

Re: Licensing error R2-SP2 (was ""86269SFTIMSIB_2016_0F")

2015-12-10 Thread Leendert A. Hartog

Could there be something wrong with my license file?
Is there someone who could check this, where I could send my current license 
file to?

Normal "interfaced" Softimage 2015 and Maya 2016 run properly off it,
Only problem I've faced so far are the missing "2016" batch licenses...

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

-Oorspronkelijk bericht- 
From: Maurice Patel

Sent: Thursday, December 10, 2015 4:44 PM
To: softimage@listproc.autodesk.com
Subject: RE: Licensing error R2-SP2 (was ""86269SFTIMSIB_2016_0F")

I can help clarify. There is no difference. There was no Softimage 2016 so 
for the 2016 release of the Suites and the Maya/3ds Max bundles a 'bridge' 
had to be created for Softimage 2015 to go into the new offering. This was 
the R2 version and apart from licensing requirements there was no change in 
the software. The only software updates have been the service packs which 
were issued separately. Our QA team reported today that they have not yet 
identified an issue in their tests (Batch is working) but that they are 
continuing to look into this.


Maurice Patel
Tél:  514 954-7134
Cell: 514 242-6549

-Original Message-
From: softimage-boun...@listproc.autodesk.com 
[mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Ponthieux, 
Joseph G. (LARC-E1A)[LITES II]

Sent: Thursday, December 10, 2015 9:53 AM
To: softimage@listproc.autodesk.com
Subject: Re: Licensing error R2-SP2 (was ""86269SFTIMSIB_2016_0F")

I just installed 2016 ECSU and recalled seeing this in the release notes:


https://knowledge.autodesk.com/sites/default/files/entertainment_creation_s
uites_2016_readme_enu.htm

The Softimage Notes suggest that SI 15 and 16 are identical. I suspected 
Softimage would be renamed 2016 in order to keep it included in the suites 
and keep it's identity as a suite component for reference. Thing is it says 
that that version with the 2016 suite is not "Softimage 2016 R2" but 
"Softimage 2015 R2" and that 2015 R2 only works with 2016 license keys.
The installer doesn't install it automatically as in the past, but it does 
copy the necessary installation package to do so manually. I never installed 
it, figured I'd wait till next year to see if a final SP comes out.


Looking at these notes you'd think the only thing they spend any time 
working on is FBX but all you have to do is open Maya 2016 to know that¹s 
not the case. It would be nice though to have more information on what if 
anything makes these Softimage versions any different, assuming they might 
be.


Joey




On 12/9/15 5:15 PM, "softimage-boun...@listproc.autodesk.com on behalf of 
Leendert A. Hartog" <softimage-boun...@listproc.autodesk.com on behalf of 
hirazib...@live.nl> wrote:



Thanks. The installed version is the R2-SP2 that is bundled with the
license for Maya 2016.
It was my impression that SP2 and R2-SP weren't identical, otherwise
there wouldn't be a reason to distribute two different versions.
But I could be mistaken...

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

-Oorspronkelijk bericht-
From: Ponthieux, Joseph G. (LARC-E1A)[LITES II]
Sent: Wednesday, December 9, 2015 10:58 PM
To: softimage@listproc.autodesk.com
Subject: RE: Licensing error R2-SP2 (was ""86269SFTIMSIB_2016_0F")

Leendert,

Is your install base strictly Softimage or is it a suite? I presume
whatever it is it must be installed from a 2016 package?

There was a warning somewhere that said the two versions should not be
installed at the same time. Is it possible you have both installed
somehow?

When I run xsibatch here using the 2015 version, it tells me it is
checking
out:

   ===
Autodesk Softimage 13.0.114.0
   ===

   License information: using [86269SFTIMSIB_2015_0F]

I don't have SI 2016 R2 installed.

If your version is looking to something with 2016 license code in it,
it must be the SI 2016 R2 version that you are trying to run?

The reason I ask is that since the SI 2015 SP2 package is supposed to
be identical (?) to the SI 2016 R2 package, it might be possible to
uninstall the 2016 version and install the 2015 one that way the 2015
software might only look for licenses with "2015" in it. Maybe that
will let you get production going till the problem is sorted out?


--
Joey Ponthieux
LaRC Information Technology Enhanced Services (LITES II) Science
Systems and Applications Inc. (SSAI) NASA Langley Research Center
__
Opinions stated here-in are strictly those of the author and do not
represent the opinions of NASA or any other party.


-Original Message-
From: softimage-boun...@listproc.autodesk.com [mailto:softimage-
boun...@listproc.

Re: Licensing error R2-SP2 (was ""86269SFTIMSIB_2016_0F")

2015-12-09 Thread Leendert A. Hartog
I’ve changed the title of the thread to make it more meaningful and perhaps get 
it noticed better...
Would be nice, if someone from Autodesk could look into this issue,
while the software technically is still supported.
I’m not on subscription any more,
so I have no other way to bring this to their attention...

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

From: Leendert A. Hartog 
Sent: Tuesday, December 8, 2015 4:29 PM
To: softimage@listproc.autodesk.com 
Subject: Re: ""86269SFTIMSIB_2016_0F"

After having stopped the server, setting the FLEXLM_DIAGNOSTICS to 3 and 
running XSI.bat, all I get is the “there is no interactive network license 
(...)” error and nothing in the command window...

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

From: Stephen Blair 
Sent: Tuesday, December 8, 2015 4:18 PM
To: softimage@listproc.autodesk.com 
Subject: Re: ""86269SFTIMSIB_2016_0F"

When Softimage can get a license, you won't see anything from 
FLEXLM_DIAGNOSTICS=3 
The license manager should show what licenses are checked out.


If you really wanted to see what license Softimage interactive tries to check 
out, you'd have to stop the license server and then start Softimage with 
FLEXLM_DIAGNOSTICS set.

Softimage 2015 SP1 will cascade through the licenses like this:

Feature:   86269SFTIM_2015_0F
Feature:   86270SIECS_2015_0F
Feature:   86458SIECS_2016_0F
Feature:   863983DSMXS_2015_0F
Feature:   864733DSMXS_2016_0F
Feature:   86400MAYAS_2015_0F
Feature:   86441MAYAS_2016_0F
Feature:   86243ENCSU_2015_0F
Feature:   86435ENCSU_2016_0F
Feature:   86248ESEC_2015_0F

---
Autodesk® Softimage® 2015
---
Error: there is no interactive network license available to run Autodesk 
Softimage 2015.
Would you like to run in Standalone mode?
---
Yes   No   
---

Feature:   SFTIM_F_S





On Tue, Dec 8, 2015 at 9:38 AM, Leendert A. Hartog <hirazib...@live.nl> wrote:

  The regular Softimage interface runs without errors, even started from the 
command prompt with “FLEXLM_DIAGNOSTICS” set to 3...

  Greetz
  Leendert
  AKA Hirazi Blue
  Softimage hobbyist, admin at si-community.com & xsiforum.de

  From: Ponthieux, Joseph G. (LARC-E1A)[LITES II] 
  Sent: Tuesday, December 8, 2015 3:27 PM
  To: softimage@listproc.autodesk.com 
  Subject: RE: ""86269SFTIMSIB_2016_0F"

  The Softimage 15 R2 interface runs though, correct? Even though your license 
lists the item 86269SFTIMSIB_2015_0F. Its only the batch gives the error?



  --

  Joey Ponthieux

  LaRC Information Technology Enhanced Services (LITES II)

  Science Systems and Applications Inc. (SSAI)

  NASA Langley Research Center

  __

  Opinions stated here-in are strictly those of the author and do not 

  represent the opinions of NASA or any other party.



  From: softimage-boun...@listproc.autodesk.com 
[mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Jens Lindgren
  Sent: Tuesday, December 08, 2015 7:29 AM
  To: softimage@listproc.autodesk.com
  Subject: Re: ""86269SFTIMSIB_2016_0F"



  The Softimage that is boundled with 2016 products is called Softimage 2015 
(SP2) R2. R2 menas it will use 2016 licenses, H instead of G in product key.

  So I'm guessing you just need to get the 2016 license from AD.



  On Tue, Dec 8, 2015 at 1:00 PM, Leendert A. Hartog <hirazib...@live.nl> wrote:

This is 2015 SP2 (the one bundled to MayaS 2016)



From: Leendert A. Hartog 

Sent: Tuesday, December 8, 2015 12:53 PM

To: softimage@listproc.autodesk.com 

Subject: ""86269SFTIMSIB_2016_0F"



Hi list,

while trying to check out a batch license, I get the following errors 
(after setting “ FLEXLM_DIAGNOSTICS to 3”) as attached to this mail.

Weird thing is FlexLM seems to want to check out “86269SFTIMSIB_2016_0F” , 
which (due to the EOL) doesn’t exist...



Greetz

Leendert

AKA Hirazi Blue

Softimage hobbyist, admin at si-community.com & xsiforum.de








  -- 

  Jens Lindgren

  

  VFX Supervisor & Lead TD

  Magoo 3D Studios






Re: Licensing error R2-SP2 (was ""86269SFTIMSIB_2016_0F")

2015-12-09 Thread Leendert A. Hartog
After having contacted Maurice Patel directly, I was informed this was the 
first time the devs heard of this issue.
My question to you all now is, does anyone else experience this problem as well?
I am not “on support” anymore, so my sole report doesn’t carry that much 
weight...

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

From: Leendert A. Hartog 
Sent: Wednesday, December 9, 2015 10:35 AM
To: softimage@listproc.autodesk.com 
Subject: Re: Licensing error R2-SP2 (was ""86269SFTIMSIB_2016_0F")

I’ve changed the title of the thread to make it more meaningful and perhaps get 
it noticed better...
Would be nice, if someone from Autodesk could look into this issue,
while the software technically is still supported.
I’m not on subscription any more,
so I have no other way to bring this to their attention...

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

From: Leendert A. Hartog 
Sent: Tuesday, December 8, 2015 4:29 PM
To: softimage@listproc.autodesk.com 
Subject: Re: ""86269SFTIMSIB_2016_0F"

After having stopped the server, setting the FLEXLM_DIAGNOSTICS to 3 and 
running XSI.bat, all I get is the “there is no interactive network license 
(...)” error and nothing in the command window...

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

From: Stephen Blair 
Sent: Tuesday, December 8, 2015 4:18 PM
To: softimage@listproc.autodesk.com 
Subject: Re: ""86269SFTIMSIB_2016_0F"

When Softimage can get a license, you won't see anything from 
FLEXLM_DIAGNOSTICS=3 
The license manager should show what licenses are checked out.


If you really wanted to see what license Softimage interactive tries to check 
out, you'd have to stop the license server and then start Softimage with 
FLEXLM_DIAGNOSTICS set.

Softimage 2015 SP1 will cascade through the licenses like this:

Feature:   86269SFTIM_2015_0F
Feature:   86270SIECS_2015_0F
Feature:   86458SIECS_2016_0F
Feature:   863983DSMXS_2015_0F
Feature:   864733DSMXS_2016_0F
Feature:   86400MAYAS_2015_0F
Feature:   86441MAYAS_2016_0F
Feature:   86243ENCSU_2015_0F
Feature:   86435ENCSU_2016_0F
Feature:   86248ESEC_2015_0F

---
Autodesk® Softimage® 2015
---
Error: there is no interactive network license available to run Autodesk 
Softimage 2015.
Would you like to run in Standalone mode?
---
Yes   No   
---

Feature:   SFTIM_F_S





On Tue, Dec 8, 2015 at 9:38 AM, Leendert A. Hartog <hirazib...@live.nl> wrote:

  The regular Softimage interface runs without errors, even started from the 
command prompt with “FLEXLM_DIAGNOSTICS” set to 3...

  Greetz
  Leendert
  AKA Hirazi Blue
  Softimage hobbyist, admin at si-community.com & xsiforum.de

  From: Ponthieux, Joseph G. (LARC-E1A)[LITES II] 
  Sent: Tuesday, December 8, 2015 3:27 PM
  To: softimage@listproc.autodesk.com 
  Subject: RE: ""86269SFTIMSIB_2016_0F"

  The Softimage 15 R2 interface runs though, correct? Even though your license 
lists the item 86269SFTIMSIB_2015_0F. Its only the batch gives the error?



  --

  Joey Ponthieux

  LaRC Information Technology Enhanced Services (LITES II)

  Science Systems and Applications Inc. (SSAI)

  NASA Langley Research Center

  __

  Opinions stated here-in are strictly those of the author and do not 

  represent the opinions of NASA or any other party.



  From: softimage-boun...@listproc.autodesk.com 
[mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Jens Lindgren
  Sent: Tuesday, December 08, 2015 7:29 AM
  To: softimage@listproc.autodesk.com
  Subject: Re: ""86269SFTIMSIB_2016_0F"



  The Softimage that is boundled with 2016 products is called Softimage 2015 
(SP2) R2. R2 menas it will use 2016 licenses, H instead of G in product key.

  So I'm guessing you just need to get the 2016 license from AD.



  On Tue, Dec 8, 2015 at 1:00 PM, Leendert A. Hartog <hirazib...@live.nl> wrote:

This is 2015 SP2 (the one bundled to MayaS 2016)



From: Leendert A. Hartog 

Sent: Tuesday, December 8, 2015 12:53 PM

To: softimage@listproc.autodesk.com 

Subject: ""86269SFTIMSIB_2016_0F"



Hi list,

while trying to check out a batch license, I get the following errors 
(after setting “ FLEXLM_DIAGNOSTICS to 3”) as attached to this mail.

Weird thing is FlexLM seems to want to check out “86269SFTIMSIB_2016_0F” , 
which (due to the EOL) doesn’t exist...



Greetz

Leendert

AKA Hirazi Blue

Softimage hobbyist, admin at si-community.com & xsiforum.de








  -- 

  Jens Lindgren

  

  VFX Supervisor & Lead TD

  Magoo 3D Studios







""86269SFTIMSIB_2016_0F"

2015-12-08 Thread Leendert A. Hartog
Hi list,
while trying to check out a batch license, I get the following errors (after 
setting “ FLEXLM_DIAGNOSTICS to 3”) as attached to this mail.
Weird thing is FlexLM seems to want to check out “86269SFTIMSIB_2016_0F” , 
which (due to the EOL) doesn’t exist...

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


Re: ""86269SFTIMSIB_2016_0F"

2015-12-08 Thread Leendert A. Hartog
And I am using the R2 version...

From: Jens Lindgren 
Sent: Tuesday, December 8, 2015 1:28 PM
To: softimage@listproc.autodesk.com 
Subject: Re: ""86269SFTIMSIB_2016_0F"

The Softimage that is boundled with 2016 products is called Softimage 2015 
(SP2) R2. R2 menas it will use 2016 licenses, H instead of G in product key.
So I'm guessing you just need to get the 2016 license from AD.

On Tue, Dec 8, 2015 at 1:00 PM, Leendert A. Hartog <hirazib...@live.nl> wrote:

  This is 2015 SP2 (the one bundled to MayaS 2016)

  From: Leendert A. Hartog 
  Sent: Tuesday, December 8, 2015 12:53 PM
  To: softimage@listproc.autodesk.com 
  Subject: ""86269SFTIMSIB_2016_0F"

  Hi list,
  while trying to check out a batch license, I get the following errors (after 
setting “ FLEXLM_DIAGNOSTICS to 3”) as attached to this mail.
  Weird thing is FlexLM seems to want to check out “86269SFTIMSIB_2016_0F” , 
which (due to the EOL) doesn’t exist...

  Greetz
  Leendert
  AKA Hirazi Blue
  Softimage hobbyist, admin at si-community.com & xsiforum.de





-- 

Jens Lindgren

VFX Supervisor & Lead TD
Magoo 3D Studios


Re: ""86269SFTIMSIB_2016_0F"

2015-12-08 Thread Leendert A. Hartog
The regular Softimage interface runs without errors, even started from the 
command prompt with “FLEXLM_DIAGNOSTICS” set to 3...

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

From: Ponthieux, Joseph G. (LARC-E1A)[LITES II] 
Sent: Tuesday, December 8, 2015 3:27 PM
To: softimage@listproc.autodesk.com 
Subject: RE: ""86269SFTIMSIB_2016_0F"

The Softimage 15 R2 interface runs though, correct? Even though your license 
lists the item 86269SFTIMSIB_2015_0F. Its only the batch gives the error?

 

--

Joey Ponthieux

LaRC Information Technology Enhanced Services (LITES II)

Science Systems and Applications Inc. (SSAI)

NASA Langley Research Center

__

Opinions stated here-in are strictly those of the author and do not 

represent the opinions of NASA or any other party.

 

From: softimage-boun...@listproc.autodesk.com 
[mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Jens Lindgren
Sent: Tuesday, December 08, 2015 7:29 AM
To: softimage@listproc.autodesk.com
Subject: Re: ""86269SFTIMSIB_2016_0F"

 

The Softimage that is boundled with 2016 products is called Softimage 2015 
(SP2) R2. R2 menas it will use 2016 licenses, H instead of G in product key.

So I'm guessing you just need to get the 2016 license from AD.

 

On Tue, Dec 8, 2015 at 1:00 PM, Leendert A. Hartog <hirazib...@live.nl> wrote:

  This is 2015 SP2 (the one bundled to MayaS 2016)

   

  From: Leendert A. Hartog 

  Sent: Tuesday, December 8, 2015 12:53 PM

  To: softimage@listproc.autodesk.com 

  Subject: ""86269SFTIMSIB_2016_0F"

   

  Hi list,

  while trying to check out a batch license, I get the following errors (after 
setting “ FLEXLM_DIAGNOSTICS to 3”) as attached to this mail.

  Weird thing is FlexLM seems to want to check out “86269SFTIMSIB_2016_0F” , 
which (due to the EOL) doesn’t exist...

   

  Greetz

  Leendert

  AKA Hirazi Blue

  Softimage hobbyist, admin at si-community.com & xsiforum.de

   

   




-- 

Jens Lindgren



VFX Supervisor & Lead TD

Magoo 3D Studios



Re: ""86269SFTIMSIB_2016_0F"

2015-12-08 Thread Leendert A. Hartog
After having stopped the server, setting the FLEXLM_DIAGNOSTICS to 3 and 
running XSI.bat, all I get is the “there is no interactive network license 
(...)” error and nothing in the command window...

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

From: Stephen Blair 
Sent: Tuesday, December 8, 2015 4:18 PM
To: softimage@listproc.autodesk.com 
Subject: Re: ""86269SFTIMSIB_2016_0F"

When Softimage can get a license, you won't see anything from 
FLEXLM_DIAGNOSTICS=3 
The license manager should show what licenses are checked out.


If you really wanted to see what license Softimage interactive tries to check 
out, you'd have to stop the license server and then start Softimage with 
FLEXLM_DIAGNOSTICS set.

Softimage 2015 SP1 will cascade through the licenses like this:

Feature:   86269SFTIM_2015_0F
Feature:   86270SIECS_2015_0F
Feature:   86458SIECS_2016_0F
Feature:   863983DSMXS_2015_0F
Feature:   864733DSMXS_2016_0F
Feature:   86400MAYAS_2015_0F
Feature:   86441MAYAS_2016_0F
Feature:   86243ENCSU_2015_0F
Feature:   86435ENCSU_2016_0F
Feature:   86248ESEC_2015_0F

---
Autodesk® Softimage® 2015
---
Error: there is no interactive network license available to run Autodesk 
Softimage 2015.
Would you like to run in Standalone mode?
---
Yes   No   
---

Feature:   SFTIM_F_S





On Tue, Dec 8, 2015 at 9:38 AM, Leendert A. Hartog <hirazib...@live.nl> wrote:

  The regular Softimage interface runs without errors, even started from the 
command prompt with “FLEXLM_DIAGNOSTICS” set to 3...

  Greetz
  Leendert
  AKA Hirazi Blue
  Softimage hobbyist, admin at si-community.com & xsiforum.de

  From: Ponthieux, Joseph G. (LARC-E1A)[LITES II] 
  Sent: Tuesday, December 8, 2015 3:27 PM
  To: softimage@listproc.autodesk.com 
  Subject: RE: ""86269SFTIMSIB_2016_0F"

  The Softimage 15 R2 interface runs though, correct? Even though your license 
lists the item 86269SFTIMSIB_2015_0F. Its only the batch gives the error?



  --

  Joey Ponthieux

  LaRC Information Technology Enhanced Services (LITES II)

  Science Systems and Applications Inc. (SSAI)

  NASA Langley Research Center

  __

  Opinions stated here-in are strictly those of the author and do not 

  represent the opinions of NASA or any other party.



  From: softimage-boun...@listproc.autodesk.com 
[mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Jens Lindgren
  Sent: Tuesday, December 08, 2015 7:29 AM
  To: softimage@listproc.autodesk.com
  Subject: Re: ""86269SFTIMSIB_2016_0F"



  The Softimage that is boundled with 2016 products is called Softimage 2015 
(SP2) R2. R2 menas it will use 2016 licenses, H instead of G in product key.

  So I'm guessing you just need to get the 2016 license from AD.



  On Tue, Dec 8, 2015 at 1:00 PM, Leendert A. Hartog <hirazib...@live.nl> wrote:

    This is 2015 SP2 (the one bundled to MayaS 2016)



From: Leendert A. Hartog 

Sent: Tuesday, December 8, 2015 12:53 PM

To: softimage@listproc.autodesk.com 

Subject: ""86269SFTIMSIB_2016_0F"



Hi list,

while trying to check out a batch license, I get the following errors 
(after setting “ FLEXLM_DIAGNOSTICS to 3”) as attached to this mail.

Weird thing is FlexLM seems to want to check out “86269SFTIMSIB_2016_0F” , 
which (due to the EOL) doesn’t exist...



Greetz

Leendert

AKA Hirazi Blue

Softimage hobbyist, admin at si-community.com & xsiforum.de








  -- 

  Jens Lindgren

  

  VFX Supervisor & Lead TD

  Magoo 3D Studios





Re: Windows 10 - what's the current verdict.

2015-11-26 Thread Leendert A. Hartog
Hi Stephan,
Would you care to share your little “floating windows closing script”?

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist

From: Stephan Woermann 
Sent: Wednesday, November 25, 2015 9:02 PM
To: softimage@listproc.autodesk.com 
Subject: Re: Windows 10 - what's the current verdict.

At SI start, i have problems with floating windows. The first opened have 
sometimes no buttons and is frameless. Especially with the render preview.

When all floating windows are closed with the help of a script, the issue is 
gone...


Latest NVidia driver is used. From SI2013-15.



Re: Windows 10 - what's the current verdict.

2015-11-26 Thread Leendert A. Hartog
Thanks.

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist

From: Stephen Blair 
Sent: Thursday, November 26, 2015 6:38 PM
To: softimage@listproc.autodesk.com 
Subject: Re: Windows 10 - what's the current verdict.

use the View object and the View.State property 


var desktop = Application.Desktop;
var views = desktop.ActiveLayout.Views;
for( i=0; i<views.Count; i++) {
if ( views(i).Floating == true )
{
Application.LogMessage( views(i).FullName );
views(i).state = 1;
}
}

On Thu, Nov 26, 2015 at 10:39 AM, Leendert A. Hartog <hirazib...@live.nl> wrote:

  Hi Stephan,
  Would you care to share your little “floating windows closing script”?

  Greetz
  Leendert
  AKA Hirazi Blue
  Softimage hobbyist

  From: Stephan Woermann 
  Sent: Wednesday, November 25, 2015 9:02 PM
  To: softimage@listproc.autodesk.com 
  Subject: Re: Windows 10 - what's the current verdict.

  At SI start, i have problems with floating windows. The first opened have 
sometimes no buttons and is frameless. Especially with the render preview.

  When all floating windows are closed with the help of a script, the issue is 
gone...


  Latest NVidia driver is used. From SI2013-15.





Re: Softimage 2015 Service Pack 2 is now available

2015-10-06 Thread Leendert A. Hartog

Hi,
Thanks for that.
You wrote "the only difference is in the supported licensing year."
Could you please explain what you mean by that?

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

-Oorspronkelijk bericht- 
From: Hsiao Ming Chia

Sent: Tuesday, October 06, 2015 11:59 AM
To: softimage@listproc.autodesk.com
Subject: Softimage 2015 Service Pack 2 is now available

Hello,

Softimage 2015 SP2 is now available for download here:
http://knowledge.autodesk.com/support/softimage/downloads/caas/downloads/content/autodesk-C2-AE-softimage-C2-AE-2015-service-pack-2.html

Please install the correct version depending on the licensing year you are 
using:

If you have licenses to Softimage 2015, please install 2015 SP2.
If you are using Softimage 2015 R2 from the 2016 suites/bundles, please 
install 2015 R2_SP2 instead.


The fixes are the same in both versions, the only difference is in the 
supported licensing year.


Please note you have to uninstall Softimage 2015 or 2015 SP1 before 
installing this latest service pack.


Thanks,
Hsiao Ming





Re: SP2???

2015-09-24 Thread Leendert A. Hartog
But if they are able to iron out ALL of the bugs, that would be a unique 
selling-point to resurrect the software... 
And that’s not even the main reason for that not being likely to happen.

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


From: pete...@skynet.be 
Sent: Thursday, September 24, 2015 4:21 PM
To: softimage@listproc.autodesk.com 
Subject: Re: SP2???

likely last softimage SP ever, so if it leaves one bug alive, it’s not enough...
From: Cesar Saez 
Sent: Thursday, September 24, 2015 11:04 AM
To: softimage@listproc.autodesk.com 
Subject: Re: SP2???

Prepare yourself to read people  complaining about the lack of new 
features/bugfixes on SP2... Tough crowd :)



SP2???

2015-09-16 Thread Leendert A. Hartog
I might have missed the announcement, if so, sorry, but can we still expect a 
Softimage 2015 Service Pack 2 and if so, when will it be released?

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

RE: FBX: all takes in one import?

2015-09-02 Thread Leendert A. Hartog
Is there any way to figure out what other undocumented goodies (similar to 
"LoadMode") are hidden under "ImportFBXOptions"?

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
From: hirazib...@live.nl
To: softimage@listproc.autodesk.com
Subject: RE: FBX: all takes in one import?
Date: Wed, 2 Sep 2015 11:34:48 +0200




Thanks.I have looked at the log and think I've figured it out.Using 
"Application.SetValue("ImportFBXOptions.LoadMode", 3, 0)"  I am able to load 
the Takes as Action Sources. But this seems to be undocumented or am I looking 
in the wrong place?

Too bad there doesn't seem to be a better way to figure out how many Takes are 
actually embedded in the FBX file beforhand.But that's not really a 
show-stopper to me right now.
Thanks all once more...
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
Date: Wed, 2 Sep 2015 16:29:30 +0900
Subject: Re: FBX: all takes in one import?
From: furik...@gmail.com
To: softimage@listproc.autodesk.com

The Crosswalk property is for Crosswalk dotXSI if I'm not mistaken.
For Import FBX, you'll need the Import FBX Property.
Ssomething like this:
//JScriptvar fbxpath = "your FBX File"var take = "Number of the take"
var r = ActiveSceneRootvar fbxProp = r.properties("ImportFBXOptions");if 
(!fbxProp ) fbxProp = r.AddProperty( "ImportFBXOptions" 
);fbxProp.ImportHardEdges = 1FBXImport ( fbxpath, take )
Play with the Checkboxes, look at the logs and customize it.


That's how I create custom importers / exporters to be sure everyone is using 
the same parameters and automatize some other things.
Martin


On Wed, Sep 2, 2015 at 4:07 PM, Leendert A. Hartog <hirazib...@live.nl> wrote:
Thank you very much!

That would seem enough info even for me to code something s



--- Original Message ---



From: "Luc-Eric Rousseau" <luceri...@gmail.com>

Sent: 2 September 2015 02:12

To: softimage@listproc.autodesk.com

Subject: Re: FBX: all takes in one import?



as far as I know, the fbx commands take all their parameters from that

crosswalk property set at the scene root.

http://softimage.wiki.softimage.com/xsidocs/import_export_xwalk4xsi_ScriptingCrosswalkForSoftimage.htm



I don't think there is anything to query the number of takes.  The

actual Autodesk FBX sdk has python bindings, but that just sounds like

too much work for what you need.  Import until it fails!





On 1 September 2015 at 14:53, Leendert A. Hartog <hirazib...@live.nl> wrote:

>

> Okay, there hopefully is room for one more silly question:

> The UI offers an option to import animation as action source,

> where can I find the sdk equivalent?

>

> Greetz

> Leendert

> AKA Hirazi Blue

> Softimage hobbyist, admin at si-community.com & xsiforum.de

>

> Counting the misfired previous post, that's five posts in a row, I'll shut

> up now...

> 

> From: hirazib...@live.nl

> To: softimage@listproc.autodesk.com

> Subject: RE: FBX: all takes in one import?

> Date: Tue, 1 Sep 2015 19:04:26 +0200

>

>

> In Jscript the command works and the takes are indeed imported separately,

> in Python I obviously should add some ''magic prefix" or such.

> I was obviously looking in the wrong places...

> Thanks.

> Bonus question:

> For looping purposes: is there a way to get the number of takes in a FBX

> file as an integer?

>

> Greetz

> Leendert

> AKA Hirazi Blue

> Softimage hobbyist, admin at si-community.com & xsiforum.de

>

> 

> From: hirazib...@live.nl

> To: softimage@listproc.autodesk.com

> Subject: RE: FBX: all takes in one import?

> Date: Tue, 1 Sep 2015 18:53:01 +0200

>

> Having hopefully averted disaster, I''m back:

> Okay, have to humbly admit to my utter NOOBness,

> but when I try to use "FBXImport" I get a "name (...) not defined" error...

>

> Greetz

> Leendert

> AKA Hirazi Blue

> Softimage hobbyist, admin at si-community.com & xsiforum.de

>

> 

> From: hirazib...@live.nl

> To: softimage@listproc.autodesk.com

> Subject: RE: FBX: all takes in one import?

> Date: Tue, 1 Sep 2015 18:37:39 +0200

>

>

> I will have to get back to you about this.

> My workstation just now seemingly died on me, so now I must try to

> resuscitate it first...

>

> Greetz

> Leendert

> AKA Hirazi Blue

> Softimage hobbyist, admin at si-community.com & xsiforum.de

>

> 

> Date: Tue, 1 Sep 2015 12:08:18 -0400

> Subject: Re: FBX: all takes in one import?

> From: luceri...@gmail.com

> To: softimage@listproc.autodesk.com

>


RE: FBX: all takes in one import?

2015-09-02 Thread Leendert A. Hartog
Maybe my statement was worded poorly.The fourth option - import as action 
source - is undocumented,at least on this page: 
http://docs.autodesk.com/SI/2015/ENU/Softimage-Developer-Help/#!/url=./si_cmds/FBXImportMode.html
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
> Date: Wed, 2 Sep 2015 14:09:25 -0400
> Subject: Re: FBX: all takes in one import?
> From: luceri...@gmail.com
> To: softimage@listproc.autodesk.com
> 
> load mode is not undocumented, it's the radio button parameter on the
> ImportFBXOption property page.  3 is "update animation"
> 
> On 2 September 2015 at 12:40, Leendert A. Hartog <hirazib...@live.nl> wrote:
> > Is there any way to figure out what other undocumented goodies
> > (similar to "LoadMode") are hidden under "ImportFBXOptions"?
  

Re: FBX: all takes in one import?

2015-09-02 Thread Leendert A. Hartog
The fourth option - import as action source - seems undocumented in the sdk 
docs, is what I should have said...

--- Original Message ---

From: "Luc-Eric Rousseau" <luceri...@gmail.com>
Sent: 2 September 2015 21:53
To: softimage@listproc.autodesk.com
Subject: Re: FBX: all takes in one import?

there are big problems with autodesk docs and google searches.

try the properties documentation docs
http://docs.autodesk.com/SI/2015/ENU/#!/url=./files/dataman_xwalk_props_ImportFBXOptionsDialogBox.htm


On 2 September 2015 at 14:38, Leendert A. Hartog <hirazib...@live.nl> wrote:
> Maybe my statement was worded poorly.
> The fourth option - import as action source - is undocumented,
> at least on this page:
> http://docs.autodesk.com/SI/2015/ENU/Softimage-Developer-Help/#!/url=./si_cmds/FBXImportMode.html



RE: FBX: all takes in one import?

2015-09-01 Thread Leendert A. Hartog

Okay, there hopefully is room for one more silly question:The UI offers an 
option to import animation as action source,where can I find the sdk equivalent?
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
Counting the misfired previous post, that's five posts in a row, I'll shut up 
now...From: hirazib...@live.nl
To: softimage@listproc.autodesk.com
Subject: RE: FBX: all takes in one import?
Date: Tue, 1 Sep 2015 19:04:26 +0200




In Jscript the command works and the takes are indeed imported separately,in 
Python I obviously should add some ''magic prefix" or such.I was obviously 
looking in the wrong places...Thanks.Bonus question: For looping purposes: is 
there a way to get the number of takes in a FBX file as an integer?
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
From: hirazib...@live.nl
To: softimage@listproc.autodesk.com
Subject: RE: FBX: all takes in one import?
Date: Tue, 1 Sep 2015 18:53:01 +0200




Having hopefully averted disaster, I''m back:Okay, have to humbly admit to my 
utter NOOBness,but when I try to use "FBXImport" I get a "name (...) not 
defined" error...
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
From: hirazib...@live.nl
To: softimage@listproc.autodesk.com
Subject: RE: FBX: all takes in one import?
Date: Tue, 1 Sep 2015 18:37:39 +0200





I will have to get back to you about this. My workstation just now seemingly 
died on me, so now I must try to resuscitate it first...
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
Date: Tue, 1 Sep 2015 12:08:18 -0400
Subject: Re: FBX: all takes in one import?
From: luceri...@gmail.com
To: softimage@listproc.autodesk.com

what happens when you run the FBXImport script command, with different takeIDs, 
does it work?

On 1 September 2015 at 11:18, Leendert A. Hartog <hirazib...@live.nl> wrote:



No, it wouldn't. But they have already (and repeatedly) stated their initial 
goal to focus on the Unity crowd.

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


  

RE: FBX: all takes in one import?

2015-09-01 Thread Leendert A. Hartog
In Jscript the command works and the takes are indeed imported separately,in 
Python I obviously should add some ''magic prefix" or such.I was obviously 
looking in the wrong places...Thanks.Bonus question: For looping purposes: is 
there a way to get the number of takes in a FBX file as an integer?
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
From: hirazib...@live.nl
To: softimage@listproc.autodesk.com
Subject: RE: FBX: all takes in one import?
Date: Tue, 1 Sep 2015 18:53:01 +0200




Having hopefully averted disaster, I''m back:Okay, have to humbly admit to my 
utter NOOBness,but when I try to use "FBXImport" I get a "name (...) not 
defined" error...
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
From: hirazib...@live.nl
To: softimage@listproc.autodesk.com
Subject: RE: FBX: all takes in one import?
Date: Tue, 1 Sep 2015 18:37:39 +0200





I will have to get back to you about this. My workstation just now seemingly 
died on me, so now I must try to resuscitate it first...
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
Date: Tue, 1 Sep 2015 12:08:18 -0400
Subject: Re: FBX: all takes in one import?
From: luceri...@gmail.com
To: softimage@listproc.autodesk.com

what happens when you run the FBXImport script command, with different takeIDs, 
does it work?

On 1 September 2015 at 11:18, Leendert A. Hartog <hirazib...@live.nl> wrote:



No, it wouldn't. But they have already (and repeatedly) stated their initial 
goal to focus on the Unity crowd.

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

  

RE: FBX: all takes in one import?

2015-09-01 Thread Leendert A. Hartog


From: hirazib...@live.nl
To: softimage@listproc.autodesk.com
Subject: RE: FBX: all takes in one import?
Date: Tue, 1 Sep 2015 19:04:26 +0200




In Jscript the command works and the takes are indeed imported separately,in 
Python I obviously should add some ''magic prefix" or such.I was obviously 
looking in the wrong places...Thanks.Bonus question: For looping purposes: is 
there a way to get the number of takes in a FBX file as an integer?
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
From: hirazib...@live.nl
To: softimage@listproc.autodesk.com
Subject: RE: FBX: all takes in one import?
Date: Tue, 1 Sep 2015 18:53:01 +0200




Having hopefully averted disaster, I''m back:Okay, have to humbly admit to my 
utter NOOBness,but when I try to use "FBXImport" I get a "name (...) not 
defined" error...
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
From: hirazib...@live.nl
To: softimage@listproc.autodesk.com
Subject: RE: FBX: all takes in one import?
Date: Tue, 1 Sep 2015 18:37:39 +0200





I will have to get back to you about this. My workstation just now seemingly 
died on me, so now I must try to resuscitate it first...
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
Date: Tue, 1 Sep 2015 12:08:18 -0400
Subject: Re: FBX: all takes in one import?
From: luceri...@gmail.com
To: softimage@listproc.autodesk.com

what happens when you run the FBXImport script command, with different takeIDs, 
does it work?

On 1 September 2015 at 11:18, Leendert A. Hartog <hirazib...@live.nl> wrote:



No, it wouldn't. But they have already (and repeatedly) stated their initial 
goal to focus on the Unity crowd.

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de


  

RE: FBX: all takes in one import?

2015-09-01 Thread Leendert A. Hartog

I will have to get back to you about this. My workstation just now seemingly 
died on me, so now I must try to resuscitate it first...
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
Date: Tue, 1 Sep 2015 12:08:18 -0400
Subject: Re: FBX: all takes in one import?
From: luceri...@gmail.com
To: softimage@listproc.autodesk.com

what happens when you run the FBXImport script command, with different takeIDs, 
does it work?

On 1 September 2015 at 11:18, Leendert A. Hartog <hirazib...@live.nl> wrote:



No, it wouldn't. But they have already (and repeatedly) stated their initial 
goal to focus on the Unity crowd.

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
  

RE: FBX: all takes in one import?

2015-09-01 Thread Leendert A. Hartog
Having hopefully averted disaster, I''m back:Okay, have to humbly admit to my 
utter NOOBness,but when I try to use "FBXImport" I get a "name (...) not 
defined" error...
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
From: hirazib...@live.nl
To: softimage@listproc.autodesk.com
Subject: RE: FBX: all takes in one import?
Date: Tue, 1 Sep 2015 18:37:39 +0200





I will have to get back to you about this. My workstation just now seemingly 
died on me, so now I must try to resuscitate it first...
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
Date: Tue, 1 Sep 2015 12:08:18 -0400
Subject: Re: FBX: all takes in one import?
From: luceri...@gmail.com
To: softimage@listproc.autodesk.com

what happens when you run the FBXImport script command, with different takeIDs, 
does it work?

On 1 September 2015 at 11:18, Leendert A. Hartog <hirazib...@live.nl> wrote:



No, it wouldn't. But they have already (and repeatedly) stated their initial 
goal to focus on the Unity crowd.

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de

  

RE: FBX: all takes in one import?

2015-09-01 Thread Leendert A. Hartog
Here's hoping this message does get through...
Problem is, there are no separate files or folders as akeytsu "throws" the data 
at me in one FBX file, which keeps the separate takes hidden within.
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de 
  

RE: FBX: all takes in one import?

2015-09-01 Thread Leendert A. Hartog
But as they currently target Unity (and not Softimage, obviously),it is 
understandable that they won't lose any sleep over this issue...:D
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
> From: angus.david...@wits.ac.za
> To: softimage@listproc.autodesk.com
> Subject: RE: FBX: all takes in one import?
> Date: Tue, 1 Sep 2015 15:00:46 +
> 
> I can only then suggest you feed it back to the Akeytsu that an option on 
> export to choose between all in one file or separate files would be 
> appreciated.
> 
> Kind regards
> 
> Angus
> 
> From: Leendert A. Hartog [mailto:hirazib...@live.nl] 
> Sent: 01 September 2015 04:53 PM
> To: softimage@listproc.autodesk.com
> Subject: RE: FBX: all takes in one import?
> 
> I will have to get back to you on that one, but thanks in advance.
> I am not looking for the takes in one file, but a more general solution.
> Have even looked at the FBX sdk, but that's way over my head, I'm afraid.
> Strangely Maya seems to have the multi-take import in place
> (but thinking about it and the history of FBX, that's not all that strange...)
> 
> Greetz
> Leendert
> AKA Hirazi Blue
> Softimage hobbyist, admin at si-community.com & xsiforum.de
> 
> 
> From: angus.david...@wits.ac.za
> To: softimage@listproc.autodesk.com
> Subject: RE: FBX: all takes in one import?
> Date: Tue, 1 Sep 2015 14:47:26 +
> If you want send me the FBX and I will see what I can figure out
>  
> From: Leendert A. Hartog [mailto:hirazib...@live.nl] 
> Sent: 01 September 2015 04:44 PM
> To: softimage@listproc.autodesk.com
> Subject: RE: FBX: all takes in one import?
>  
> Here's hoping this message does get through...
>  
> Problem is, there are no separate files or folders as akeytsu "throws" the 
> data at me in one FBX file, which keeps the separate takes hidden within.
>  
> Greetz
> Leendert
> AKA Hirazi Blue
> Softimage hobbyist, admin at si-community.com & xsiforum.de
> 
>  This communication is intended for the addressee only. It is confidential. If 
> you have received this communication in error, please notify us immediately 
> and destroy the original message. You may not copy or disseminate this 
> communication without the permission of the University. Only authorised 
> signatories are competent to enter into agreements on behalf of the 
> University and recipients are thus advised that the content of this message 
> may not be legally binding on the University and may contain the personal 
> views and opinions of the author, which are not necessarily the views and 
> opinions of The University of the Witwatersrand, Johannesburg. All agreements 
> between the University and outsiders are subject to South African Law unless 
> the University agrees in writing to the contrary. 
> 
> 
>  style="width:100%;"> 
> 
>  size="1" color="#99">This communication is 
> intended for the addressee only. It is confidential. If you have received 
> this communication in error, please notify us immediately and destroy the 
> original message. You may not copy or disseminate this communication without 
> the permission of the University. Only authorised signatories are competent 
> to enter into agreements on behalf of the University and recipients are thus 
> advised that the content of this message may not be legally binding on the 
> University and may contain the personal views and opinions of the author, 
> which are not necessarily the views and opinions of The University of the 
> Witwatersrand, Johannesburg. All agreements between the University and 
> outsiders are subject to South African Law unless the University agrees in 
> writing to the contrary. 
> 
>  
> 
  

RE: FBX: all takes in one import?

2015-09-01 Thread Leendert A. Hartog
No, it wouldn't. But they have already (and repeatedly) stated their initial 
goal to focus on the Unity crowd.

Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
From: angus.david...@wits.ac.za
To: softimage@listproc.autodesk.com
Subject: RE: FBX: all takes in one import?
Date: Tue, 1 Sep 2015 15:06:39 +









Well wouldn’t hurt to ask ;)
 


From: Leendert A. Hartog [mailto:hirazib...@live.nl]


Sent: 01 September 2015 05:04 PM

To: softimage@listproc.autodesk.com

Subject: RE: FBX: all takes in one import?


 

But as they currently target Unity (and not Softimage, obviously),

it is understandable that they won't lose any sleep over this issue...


:D


 


Greetz


Leendert


AKA Hirazi Blue


Softimage hobbyist, admin at si-community.com & xsiforum.de


 

> From: 
angus.david...@wits.ac.za

> To: softimage@listproc.autodesk.com

> Subject: RE: FBX: all takes in one import?

> Date: Tue, 1 Sep 2015 15:00:46 +

> 

> I can only then suggest you feed it back to the Akeytsu that an option on 
> export to choose between all in one file or separate files would be 
> appreciated.

> 

> Kind regards

> 

> Angus

> 

> From: Leendert A. Hartog [mailto:hirazib...@live.nl]


> Sent: 01 September 2015 04:53 PM

> To: softimage@listproc.autodesk.com

> Subject: RE: FBX: all takes in one import?

> 

> I will have to get back to you on that one, but thanks in advance.

> I am not looking for the takes in one file, but a more general solution.

> Have even looked at the FBX sdk, but that's way over my head, I'm afraid.

> Strangely Maya seems to have the multi-take import in place

> (but thinking about it and the history of FBX, that's not all that strange...)

> 

> Greetz

> Leendert

> AKA Hirazi Blue

> Softimage hobbyist, admin at si-community.com & xsiforum.de

> 

> 

> From: angus.david...@wits.ac.za

> To: softimage@listproc.autodesk.com

> Subject: RE: FBX: all takes in one import?

> Date: Tue, 1 Sep 2015 14:47:26 +

> If you want send me the FBX and I will see what I can figure out

>  

> From: Leendert A. Hartog [mailto:hirazib...@live.nl]


> Sent: 01 September 2015 04:44 PM

> To: softimage@listproc.autodesk.com

> Subject: RE: FBX: all takes in one import?

>  

> Here's hoping this message does get through...

>  

> Problem is, there are no separate files or folders as akeytsu "throws" the 
> data at me in one FBX file, which keeps the separate takes hidden within.

>  

> Greetz

> Leendert

> AKA Hirazi Blue

> Softimage hobbyist, admin at si-community.com & xsiforum.de

> 

>  This communication is intended for the addressee only. It is confidential. If 
> you have received this communication in error, please notify us immediately 
> and destroy the original message. You may not copy or disseminate this 
> communication without the permission
 of the University. Only authorised signatories are competent to enter into 
agreements on behalf of the University and recipients are thus advised that the 
content of this message may not be legally binding on the University and may 
contain the personal views
 and opinions of the author, which are not necessarily the views and opinions 
of The University of the Witwatersrand, Johannesburg. All agreements between 
the University and outsiders are subject to South African Law unless the 
University agrees in writing
 to the contrary. 

> 

> 

>  style="width:100%;">


> 

>  size="1" color="#99">This communication is 
> intended for the addressee only. It is confidential. If you have received 
> this communication in error,
 please notify us immediately and destroy the original message. You may not 
copy or disseminate this communication without the permission of the 
University. Only authorised signatories are competent to enter into agreements 
on behalf of the University and recipients
 are thus advised that the content of this message may not be legally binding 
on the University and may contain the personal views and opinions of the 
author, which are not necessarily the views and opinions of The University of 
the Witwatersrand, Johannesburg.
 All agreements between the University and outsiders are subject to South 
African Law unless the University agrees in writing to the contrary. 


> 

>  

> 










RE: FBX: all takes in one import?

2015-09-01 Thread Leendert A. Hartog
I will have to get back to you on that one, but thanks in advance.I am not 
looking for the takes in one file, but a more general solution.Have even looked 
at the FBX sdk, but that's way over my head, I'm afraid.
Strangely Maya seems to have the multi-take import in place(but thinking about 
it and the history of FBX, that's not all that strange...)
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com & xsiforum.de
From: angus.david...@wits.ac.za
To: softimage@listproc.autodesk.com
Subject: RE: FBX: all takes in one import?
Date: Tue, 1 Sep 2015 14:47:26 +









If you want send me the FBX and I will see what I can figure out
 


From: Leendert A. Hartog [mailto:hirazib...@live.nl]


Sent: 01 September 2015 04:44 PM

To: softimage@listproc.autodesk.com

Subject: RE: FBX: all takes in one import?


 

Here's hoping this message does get through...

 


Problem is, there are no separate files or folders as akeytsu "throws" the data 
at me in one FBX file, which keeps the separate takes hidden within.


 



Greetz


Leendert


AKA Hirazi Blue


Softimage hobbyist, admin at si-community.com & xsiforum.de










RE: FBX: all takes in one import?

2015-08-30 Thread Leendert A. Hartog
Allow me 1 BUMP... :D
Greetz
Leendert
AKA Hirazi Blue
Softimage hobbyist, admin at si-community.com  xsiforum.de
From: hirazib...@live.nl
To: softimage@listproc.autodesk.com
Subject: FBX: all takes in one import?
Date: Wed, 26 Aug 2015 20:38:21 +0200




While trying to evaluate akeytsu (www.nukeygara.com) I am faced with the 
following problem: akeytsu exports fbx files with multiple takes embedded 
within them. Is it possible to import all these takes in one go as separate 
action sources without having to suffer the scenic route of manually 
importing all takes one at a time?

Greetz
Leendert
AKA Hirazi Blue

  

FBX: all takes in one import?

2015-08-26 Thread Leendert A. Hartog
While trying to evaluate akeytsu (www.nukeygara.com) I am faced with the 
following problem: akeytsu exports fbx files with multiple takes embedded 
within them. Is it possible to import all these takes in one go as separate 
action sources without having to suffer the scenic route of manually 
importing all takes one at a time?

Greetz
Leendert
AKA Hirazi Blue
  

Re: Pretty OT :)

2015-08-22 Thread Leendert A. Hartog

Looks very fascinating. Do tell us more!
Might even be a worth amaking-of for the si-community.
Contact me,  if you agree...

--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: Friday Flashback #236

2015-08-20 Thread Leendert A. Hartog

Well, there is Syflex Sylyn, apparently in alpha
http://www.cgchannel.com/2015/08/syflex-announces-sylyn/

Greetz
Leendert
AKA Hirazi Blue

--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: gehen Syflex announces Syly

2015-08-19 Thread Leendert A. Hartog
Don't you think we all collectively have Fabric and/or Softimage on the 
brain? :p

Looks like a nodal system to me, sort of default look'n'feel.

Liefs en groetjes
Leendert

--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: gehen Syflex announces Syly

2015-08-19 Thread Leendert A. Hartog
But then again: we don't know how long they already have been working on 
this.
Maybe a little birdie gave them the idea (or an inkling on the fate of 
Softimage) when they worked on Syflex on ICE


Greetz
Leendert
AKA Hirazi Blue

--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: So this is where the MeshMixer dev has been hiding? Nice presentation.

2015-08-17 Thread Leendert A. Hartog

So why did it get pulled?
Something deemed wrong with it after all?
:p

Greetz
Leendert
AKA Hirazi Blue

--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: So this is where the MeshMixer dev has been hiding? Nice presentation.

2015-08-17 Thread Leendert A. Hartog

For those who did not have a chance to see the presentation yet:
http://www.dailymotion.com/video/x31z7u9_the-future-of-modeling_school

Greetz
Leendert
AKA Hirazi Blue

--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: Crosswalk in Maya

2015-08-14 Thread Leendert A. Hartog
AFAIK Maya Crosswalk was a separately and manually installed plugin for 
Maya,

but I don't know if there is a Maya 2016 version of it.
You could try (at your own risk, obviously) the 2015 version, which is 
included in the downloads on this page:

http://knowledge.autodesk.com/support/3ds-max/downloads/caas/downloads/content/autodesk-crosswalk.html#cross

Greetz
Leendert
AKA Hirazi Blue


--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: Soft and Windows 10

2015-08-13 Thread Leendert A. Hartog

Jeff McFall schreef op 13-8-2015 om 17:53:


I am curious if anyone has had a chance to try and use Soft on Windows 
10  yet?


Jeff


www.si-community.com/community/viewtopic.php?f=12t=5918

Greetz
Leendert
AKA Hirazi Blue


--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: Is purchasing a new softimage license impossible?

2015-05-18 Thread Leendert A. Hartog

Completely agree with Scott Parrish here.
Emotions are fully understandable, but:
Nothing  to see here, move along!

Greetz
Leendert

--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: Friday Flashback #223

2015-05-11 Thread Leendert A. Hartog

According to this post over at xsisupport -
http://xsisupport.com/2014/02/21/friday-flashback-160

Softimage XSI 1.0
Essentials: $7,995
Advanced: $11,995

Greetz
Leendert


--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



registeronce Firefox?

2015-04-17 Thread Leendert A. Hartog
Might well be a fluke, only happening to me, albeit two years in a row, 
but it would seem that the registeronce website doesn’t particularly 
like my Firefox browser. The boxes where one has to input the final 
server related info just do not materialize. Luckily, good old bad 
Internet Explorer did the trick  so I am good, technically, but it might 
be something someone at Autodesk might want to look into.


Greetz
Leendert

--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com




Re: OT: Hypershade changes in Maya 2016

2015-04-15 Thread Leendert A. Hartog

Leendert A. Hartog schreef op 14-4-2015 om 11:45:
Now that there are  some clear and commendable results coming from 
Project H,
could someone in-the-know perhaps tell me, if the Maya docs have also 
gotten a gentle nudge in the right direction?
And yes I know  many people find them more than sufficient, but 
relatively speaking to the xsidocs they could still  use some love IMHO.


To quickly answer my own question:
The Maya 2016 docs came online - 
http://help.autodesk.com/view/MAYAUL/2016/ENU/
and while it's too early (for me) to tell if and to what extent they 
cleaned it up as a whole,
the fact they included a special Softimage to Maya Bridge Guide is a 
nice touch IMHO...


Greetz
Leendert

--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: OT: Hypershade changes in Maya 2016

2015-04-14 Thread Leendert A. Hartog
Now that there are  some clear and commendable results coming from 
Project H,
could someone in-the-know perhaps tell me, if the Maya docs have also 
gotten a gentle nudge in the right direction?
And yes I know  many people find them more than sufficient, but 
relatively speaking to the xsidocs they could still  use some love IMHO.


Greetz
Leendert

--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: OT: Hypershade changes in Maya 2016

2015-04-14 Thread Leendert A. Hartog

The main docs, IMHO

Greetz
Leendert

--
Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: OT: Hypershade changes in Maya 2016

2015-04-14 Thread Leendert A. Hartog

Eric Thivierge schreef op 14-4-2015 om 17:08:
If you want to stay in the industry and stay relevant you have to evolve. 

Let's say you have to adapt, not necessarily evolve...

Greetz
Leendert

--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: OT: Hypershade changes in Maya 2016

2015-04-14 Thread Leendert A. Hartog


Eric Thivierge schreef op 14-4-2015 om 17:39:

Getting a bit semantic but you probably need to do both no? :)


You're right, it's getting a bit semantic, quite a bit actually... ;)
I'll shut up now (I am a linguist originally, so it is a force of habit
of sorts)

Greetz
Leendert

--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com





test

2015-04-04 Thread Leendert A. Hartog
Sorry, just wanted to test if the mailing list itself has broken down or 
that it is just extremely low on activity.


Greetz
Leendert

--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: Self installing Prop survive New Scene

2015-03-23 Thread Leendert A. Hartog

Add the creation of the property to a NewScene event, maybe?

Greetz
Leendert

--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: Renderman

2015-03-23 Thread Leendert A. Hartog

3delight exports rib files...

Greetz
Leendert

--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: Self installing Prop survive New Scene

2015-03-23 Thread Leendert A. Hartog
Saving a preset of the property in a siOnCloseScene event and reloading 
in a NewScene event?
Can't test this ATM, not near Softimage. But it's inelegant even if it 
works...

I'll shut up now... ;)

Greetz
Leendert

--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: Crashing with unknown error message.

2015-03-19 Thread Leendert A. Hartog

This won't help you any, I'm afraid (sorry),
but, if I am reading this correctly, this appears to be a known issue 
with Alembic:

https://code.google.com/p/alembic/issues/detail?id=336

Greetz
Leendert

--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: Very OT: for the love of your career.. try houdini

2015-03-18 Thread Leendert A. Hartog

Gerbrand Nel schreef op 17-3-2015 om 11:11:
I'm not getting anything out of posting this, except knowing I might 
save the life of a fellow artist.


So I spent the last year learning Maya, and got to a point where I can 
compete against people straight out of collage.
This got me a bit down, as I'm one of the more experienced softimage 
artists here in South Africa.


Not wanting to sound cynical here, as this is a serious question, but 
does the setback after years of expertise in Softimage to a more 
beginner level in other software get even more profound when dealing 
with Houdini? Learning Houdini seems, especially from a Softimage POV, 
way more palatable, but mastering it would seem to be a different story 
altogether.


Greetz
Leendert

--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: parenting in Softimage vs. Maya.....confusion

2015-02-27 Thread Leendert A. Hartog

Artur Woźniak schreef op 27-2-2015 om 19:01:

I,ll blame You now. They read this, You know.


So when exactly  did they start reading a Softimage related list?
I was under the impression, that part of our predicament was that they 
actually hardly ever did...

:D

Greetz
Leendert

--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com



Re: Maya thinks they're clever....and that's the problem

2015-02-19 Thread Leendert A. Hartog
Maya is the veil that covers our real nature and the real nature of the 
world around us. Maya is fundamentally inscrutable: we don’t know why it 
exists and we don’t know when it began. What we do know is that, like 
any form of ignorance, maya ceases to exist at the dawn of knowledge, 
the knowledge of our own divine nature. (The Concept of Maya - 
http://waa.ai/4rcY)


--

Leendert A. Hartog AKA Hirazi Blue
Administrator NOT the owner of si-community.com




  1   2   3   4   >