Accessing fcurve editor

2012-10-26 Thread Szabolcs Matefy
Hey folks, Does anybody have idea how to access the fcurve editor from scripting? I would like to modify the selected keys on selected fcurves, but for some reason it seems to be that the accessing of the editor itself is not documented... Anybody has any idea? Thanks

Re: Accessing fcurve editor

2012-10-26 Thread Stefan Kubicek
Do a search in the sdk docs for Animation Editor Attributes. Hey folks, Does anybody have idea how to access the fcurve editor from scripting? I would like to modify the selected keys on selected fcurves, but for some reason it seems to be that the accessing of the editor itself is not

Re: Accessing fcurve editor

2012-10-26 Thread Stephen Blair
Hey Szabolcs check out the view attributes, they recently added a lot for the Fcurve Editor On 26/10/2012 10:26 AM, Szabolcs Matefy wrote: Hey folks, Does anybody have idea how to access the fcurve editor from scripting? I would like to modify the selected keys on selected fcurves, but

Re: Accessing fcurve editor

2012-10-26 Thread Peter Agg
You can get to it as a view by digging around a bit: all_views = list(Application.Desktop.ActiveLayout.Views) all_views.extend( list(Application.Desktop.ActiveLayout.Views(vm).Views) ) for view in all_views: if not view.type == Animation Editor: continue fEditor =

Re: Accessing fcurve editor

2012-10-26 Thread Eric Thivierge
Selected FCurves: Application.FCurveSelection Eric Thivierge http://www.ethivierge.com On Sat, Oct 27, 2012 at 1:43 AM, Peter Agg peter@googlemail.com wrote: You can get to it as a view by digging around a bit: all_views =