Mailing List
Home
Forum Home
Softimage
Carrara
trueSpace
Dir3d-l
Maya - a powerful 3D animation and visual effects software
Macromedia Flash Development
Subjects
Cameras
scaleDown command
black out solved
Aircraft Tutorial
Mathematical XYZ ?
Its done This vs That
Its done first week
recommendations for screen video captures?
3DExplorer "Oddity "
New Director
ProTeam renewals
Fuel 's new websites (X post)
Blue peter create a make toy
targeting groups question
XPost: Shockwave 3D game ( sort of )
RES: RES: RES: Fish Modeling
Emitting particles from object intersection
Fuel 's new websites (X post)
Texturing
Big Break Contest Videos
New Plugins
Models and Texture on my updated site
Error Installing Patch tS6 6
Plasma?
Looking for Inspiration
Weird EMail Q
It 's done first week ?
Cherry not cranberry
New game
Camera Animation Problem
Particle plugins?
 
How can I acces the parameters of a clip in mixer via object model???

How can I acces the parameters of a clip in mixer via object model???

2004-03-17       - By Sebastian Faber

 Back
Maybe this is a stupid question: I want to access the "Hidden"-Parameter of a
clip in the animation mixer via OBJECT-Mode. Accessing it via command model
would be the following command:

SetValue "Mixer.SimpleAnim.Diagonal_Clip.actionclip.active", False

How can I access this parameter via object mode???

Thank you very much

Sebastian






The Hierarchie is:
-- ---- ---- ------
Scene_Root
  -Mixer
  -Tracks
  -Animation
   -myClip
      Hidden
      Activ
      Start time
      Duration
      UI properties
      Mute
      solo


The Code should be like this:            
-- ---- ---- ---- ---- ------
  set oRoot    = ActiveSceneRoot
  set oObj     = oRoot.FindChild("Scene_Root")
  set oModel   = GetValue(oObj)
  set oSources = oModel.sources
 
  for each oSource in oSources
    count = count + 1
    logmessage "Source# " & count & ", Name: " & oSource.name
  next  
 
     ...  
     ' generating a Clip
     set oClipAnim = AddClip( "Scene_Root", oSource, , oTrackAnim, 1 )
     
     'Access Hidden-Parameter
     LogMessage oClipAnim.Hidden ??????

     or

     LogMessage oClipAnim.actionclip.active.value ???
     
     
     
     


---
Unsubscribe? Mail Majordomo@(protected) with the following text in body:
unsubscribe xsi