OpenShot公式ブログへようこそ! OpenShot動画エディターについての最新ニュースや、開発の更新情報をお読みください。RSSを購読するか、FacebookTwitterGoogle+でフォローしてください。

24 7月

Have you ever run into a problem where your favorite Python IDE can't determine the type of a variable, and thus you get no auto-completion? There is a built-in function in Python called isInstance(your_variable, type_of_variable) that is designed to compare a variable to a class type, and return true or false. However, just the ...


21 7月

There comes a time in every man's life where a single goocanvas.Canvas widget just won't cut it. Imagine you need two separate canvases for your interface, but you want them to scroll together with a single scroll bar. How would you solve this problem?

First, to enable a goocanvas.Canvas object to scroll is ...