The plane use for slicing is an another proxy accessible as:<br><br>cut.CutFunction[0]<br><br>cut.CutFunction[0].ListProperties() should show you the available properties (one of them is the Origin).<br><br>Likewise, opacity if a property on the representation for the source in the view. The following code will help you locate the representation for the slice filter.<br>
<br>view = servermanager.GetRenderView()<br>cut_repr = None<br>for rep in view.Representations:<br>  if rep.Input[0].Proxy == cut:<br>    cut_repr = rep<br>    break<br><br>cut_repr.ListProperties() will show the properties available, one of them will be Opacity.<br>
<br>Utkarsh<br><br>p.s. this is for 3.4. In 3.6 onwards there are easier ways of accessing the representation.<br><br><br>   <br><br><div class="gmail_quote">On Tue, May 26, 2009 at 4:28 AM, Wim van der Meer <span dir="ltr">&lt;<a href="mailto:wpjvandermeer@gmail.com">wpjvandermeer@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi,<br>
<br>
I am a new ParaView user, and although there are some quirks, I like it so far.<br>
<br>
I am now writing a script to write out an animation. One part of the<br>
animation involves animating a slice filter moving in the z-direction.<br>
When I create the animation using the GUI, in the &quot;Animation View&quot;<br>
window I add a track for &quot;Slice1&quot; and select the &quot;Slice Type - Origin<br>
(2)&quot; property. This works fine. I am unable to find out, however, what<br>
the property name is for the slice object when creating the animation<br>
in Python.<br>
<br>
Another property I would like to animate is opacity of the data.<br>
Again, using the GUI this works fine, but I can&#39;t figure out how to do<br>
this in a script.<br>
<br>
Neither calling ListProperties() on the object or dir() gets me any<br>
further. Any help would be greatly appreciated.<br>
<br>
I run my script from the ParaView 3.4.0 built-in Python shell. The<br>
data is in Legacy VTK format. This is the script I have so far:<br>
<br>
#!/usr/bin/python<br>
# -*- coding: utf-8 -*-<br>
<br>
#################################################<br>
# parameters<br>
filename = &quot;test.avi&quot;<br>
fps = 12.0 # frames/seconds<br>
<br>
#################################################<br>
# preparation<br>
view = servermanager.GetRenderView()<br>
camera = view.GetActiveCamera()<br>
<br>
movie = servermanager.animation.AnimationScene()<br>
movie.ViewModules = [view]<br>
movie.NumberOfFrames = fps * totaltime<br>
<br>
pm = servermanager.ProxyManager()<br>
<br>
#################################################<br>
# cue 1: animating horizontal slices<br>
data = pm.GetProxy(&quot;sources&quot;, &quot;data.vtk&quot;)<br>
bounds = data.GetDataInformation().DataInformation.GetBounds()<br>
startZ = bounds[5]<br>
endZ = bounds[4]<br>
<br>
cut = pm.GetProxy(&quot;sources&quot;, &quot;Slice1&quot;)<br>
<br>
cue1 = servermanager.animation.KeyFrameAnimationCue()<br>
cue1.AnimatedProxy = cut<br>
<br>
# What is the name of the property to change the z- position of the slice?<br>
cue1.AnimatedPropertyName = &quot;InputBounds&quot; # &lt;---------This does not work!!!<br>
<br>
# two key frames with ramp interpolation<br>
keyf0 = servermanager.animation.CompositeKeyFrame()<br>
keyf0.Type = 2 # Set keyframe interpolation type to Ramp.<br>
keyf0.KeyTime = 0<br>
keyf0.KeyValues= [startZ]<br>
<br>
keyf1 = servermanager.animation.CompositeKeyFrame()<br>
keyf1.KeyTime = 1.0<br>
keyf1.KeyValues= [endZ]<br>
<br>
cue1.KeyFrames = [keyf0, keyf1]<br>
<br>
movie.AddCueProxy(cue1)<br>
<br>
#################################################<br>
# Play the animation<br>
#movie.Play()<br>
<br>
#################################################<br>
# Save the animation as an AVI movie<br>
movieWriter = servermanager.vtkSMAnimationSceneImageWriter()<br>
movieWriter.SetFrameRate(fps)<br>
movieWriter.SetFileName(filename)<br>
movieWriter.SetAnimationScene(movie.SMProxy)<br>
movieWriter.Save()<br>
_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the ParaView Wiki at: <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
</blockquote></div><br>