On Fri, 2012-01-06 at 10:02 -0500, Brian Duffy wrote:
> Hello,

> 
> Having trouble figuring out why I can't use set_seek_flags(...) on a
> ClutterGst VideoTexture. I'm getting the error "set_seek_flags" does
> not exist in the context of ClutterGst.VideoTexture. I have confirmed
> I'm using Clutter-Gst 1.4.4 with ClutterGst.Version.check(1,4,4).
> Also, I am using Vala 0.14 on Fedora 16. Could this be a Vala binding
> problem? Here is the code ...
> 

Looking at the vapi files of vala 0.14 for ClutterGst, it looks like
they forgot to define the binding for most of the methods touching
properties. This might be deliberate.

You should still be able to do something like this :

tx.set_property("seek-flags", ClutterGst.SeekFlags(1));

or 

tx.seek_flags = ClutterGst.SeekFlags(1);


Regards,

--
Lionel landwerlin



_______________________________________________
clutter-app-devel-list mailing list
clutter-app-devel-list@clutter-project.org
http://lists.clutter-project.org/listinfo/clutter-app-devel-list

Reply via email to