On Tue, Jan 10, 2012 at 2:22 PM, billh2233 <[email protected]> wrote: > I'm trying to instantiate a new goog.fx/Animate object, but the > constructor doesn't return anything: > > (:require [goog.fx :as fx]) > (let [anim (fx/Animation (array 22 33) (array 44 55) 1000 nil)] > "anim:>" #<undefined> "<end anim" > ...
(let [anim (fx/Animation. (array 22 33) (array 44 55) 1000 nil)] (period after fx/Animation.) -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
