Re: synoptic editor script

2014-09-19 Thread Eric Turman
Is there a version that works with 2015 yet? we tried it a few months ago,
but it was not working in 2015.

On Fri, Sep 19, 2014 at 1:30 PM, David Gallagher <
davegsoftimagel...@gmail.com> wrote:

>
> (If you're on Windows/Mac), you could also check out our free AnimSchool
> Picker for Softimage:
> http://www.animschool.com/pickerInfo.aspx
> https://www.youtube.com/watch?v=gTUe1YbPAPk
>
> Much better than Synoptic.
>
>
> On 9/19/2014 12:18 PM, Francisco Criado wrote:
>
> Hi guys,
>
>  just trying to do a quick synoptic view for a simple rig i made, already
> loaded the image and made the hotspots but everytime i try to run it "Error
> executing the script file" appears.
> About the script it only contains this kind of stuff:
>
>  sub MOSCA_CON_RIG.eff1(in_obj,in_mousebutton,in_keymodifier)
>  SynopticSelect in_obj, "MOSCA_CON_RIG.eff"
> end sub
>
>  Any help appreciated!
> F.
>
>
>
>
>
>
>


-- 




-=T=-


Re: synoptic editor script

2014-09-19 Thread Jason S

  
  
man SuperSynoptic! 
  
  On 09/19/14 14:30, David Gallagher wrote:


  
  
(If you're on Windows/Mac), you could also check out our free
AnimSchool Picker for Softimage:
http://www.animschool.com/pickerInfo.aspx
https://www.youtube.com/watch?v=gTUe1YbPAPk

Much better than Synoptic.

On 9/19/2014 12:18 PM, Francisco Criado wrote:
  
  
Hi guys,
  
  
  just trying to do a quick synoptic view for a simple rig
i made, already loaded the image and made the hotspots but
everytime i try to run it "Error executing the script file"
appears.
  About the script it only contains this kind of stuff:
  
  
  
sub
  MOSCA_CON_RIG.eff1(in_obj,in_mousebutton,in_keymodifier) 
 SynopticSelect

  in_obj, "MOSCA_CON_RIG.eff"
end sub
  
  
  
  Any help appreciated!
  F.
  
  
  




  
  

  

  
  


  



Re: synoptic editor script

2014-09-19 Thread Emilio Hernandez
I highly recommend Animschool picker for Softimage.  Very fast and
intuitive to use, without the hassle of programming.

Cheers!

---
Emilio Hernández   VFX & 3D animation.

2014-09-19 14:27 GMT-05:00 Francisco Criado :

> Already fixed:
>
> the subroutine ended like this:
>
> sub ALA_DER( in_obj, in_mousebuton, in_keymodifier )
> SelectObj "MOSCA_CON_RIG.ALA_DER", , True
> end sub
>
>
> Thanks for the help, appreciated!
>
> F.
>
>
> 2014-09-19 16:04 GMT-03:00 Stephen Blair :
>
> I don't think the period is a valid character for a subroutine name
>>
>> On Fri, Sep 19, 2014 at 2:50 PM, Francisco Criado 
>> wrote:
>>
>>> Hi Matt, tried replacing by your line and also tried SelectObj
>>> "MOSCA_CON_RIG.eff1", , True
>>> and now i get with those two altrenatives this:
>>>
>>> 'ERROR : Expected '(' - [line 3]
>>> ' WARNING : 3000 - Error parsing z:\3d\mosca_db\synoptic\mosca.htm
>>>
>>> Line 3 on the html is:
>>> 

Re: synoptic editor script

2014-09-19 Thread Francisco Criado
Already fixed:

the subroutine ended like this:

sub ALA_DER( in_obj, in_mousebuton, in_keymodifier )
SelectObj "MOSCA_CON_RIG.ALA_DER", , True
end sub


Thanks for the help, appreciated!

F.


2014-09-19 16:04 GMT-03:00 Stephen Blair :

> I don't think the period is a valid character for a subroutine name
>
> On Fri, Sep 19, 2014 at 2:50 PM, Francisco Criado 
> wrote:
>
>> Hi Matt, tried replacing by your line and also tried SelectObj
>> "MOSCA_CON_RIG.eff1", , True
>> and now i get with those two altrenatives this:
>>
>> 'ERROR : Expected '(' - [line 3]
>> ' WARNING : 3000 - Error parsing z:\3d\mosca_db\synoptic\mosca.htm
>>
>> Line 3 on the html is:
>> 

Re: synoptic editor script

2014-09-19 Thread Stephen Blair
I don't think the period is a valid character for a subroutine name

On Fri, Sep 19, 2014 at 2:50 PM, Francisco Criado 
wrote:

> Hi Matt, tried replacing by your line and also tried SelectObj
> "MOSCA_CON_RIG.eff1", , True
> and now i get with those two altrenatives this:
>
> 'ERROR : Expected '(' - [line 3]
> ' WARNING : 3000 - Error parsing z:\3d\mosca_db\synoptic\mosca.htm
>
> Line 3 on the html is:
> 

Re: synoptic editor script

2014-09-19 Thread Francisco Criado
Hi Matt, tried replacing by your line and also tried SelectObj
"MOSCA_CON_RIG.eff1", , True
and now i get with those two altrenatives this:

'ERROR : Expected '(' - [line 3]
' WARNING : 3000 - Error parsing z:\3d\mosca_db\synoptic\mosca.htm

Line 3 on the html is:

Re: synoptic editor script

2014-09-19 Thread David Gallagher


(If you're on Windows/Mac), you could also check out our free AnimSchool 
Picker for Softimage:

http://www.animschool.com/pickerInfo.aspx
https://www.youtube.com/watch?v=gTUe1YbPAPk

Much better than Synoptic.

On 9/19/2014 12:18 PM, Francisco Criado wrote:

Hi guys,

just trying to do a quick synoptic view for a simple rig i made, 
already loaded the image and made the hotspots but everytime i try to 
run it "Error executing the script file" appears.

About the script it only contains this kind of stuff:

sub MOSCA_CON_RIG.eff1(in_obj,in_mousebutton,in_keymodifier)
SynopticSelect in_obj, "MOSCA_CON_RIG.eff"
end sub

Any help appreciated!
F.









RE: synoptic editor script

2014-09-19 Thread Matt Lind
Try this:

Sub MOSCA_CON_RIG.eff( in_obj, in_mousebuton, in_keymodifier )
Selection.SetAsText( in_obj );
End Sub


The “.” in the subroutine name might be a problem, however.  It’s important to 
know which line the parser is throwing the error.

Matt




From: softimage-boun...@listproc.autodesk.com 
[mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Francisco Criado
Sent: Friday, September 19, 2014 11:18 AM
To: softimage@listproc.autodesk.com
Subject: synoptic editor script

Hi guys,

just trying to do a quick synoptic view for a simple rig i made, already loaded 
the image and made the hotspots but everytime i try to run it "Error executing 
the script file" appears.
About the script it only contains this kind of stuff:

sub MOSCA_CON_RIG.eff1(in_obj,in_mousebutton,in_keymodifier)
SynopticSelect in_obj, "MOSCA_CON_RIG.eff"
end sub

Any help appreciated!
F.







synoptic editor script

2014-09-19 Thread Francisco Criado
Hi guys,

just trying to do a quick synoptic view for a simple rig i made, already
loaded the image and made the hotspots but everytime i try to run it "Error
executing the script file" appears.
About the script it only contains this kind of stuff:

sub MOSCA_CON_RIG.eff1(in_obj,in_mousebutton,in_keymodifier)
SynopticSelect in_obj, "MOSCA_CON_RIG.eff"
end sub

Any help appreciated!
F.