Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
This paste will be private.
# # MoveController.rb # movebutton # # Created by Erik Kastner on 11/22/07. # Copyright (c) 2007 __MyCompanyName__. All rights reserved. # require 'osx/cocoa' # code by Jay Phillips - ninja class OSX::NSAnimationContext class << self def with_animation_property_group beginGrouping yield currentContext endGrouping end end end class MoveController < OSX::NSObject ib_outlet :button, :image ib_action :move do OSX::NSAnimationContext.with_animation_property_group do |context| context.duration = 30.0 @button.animator.setFrameOrigin([30,30]) end end end
From the Design Piracy series on my blog: