## 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
classOSX::NSAnimationContextclass<< selfdefwith_animation_property_group
beginGrouping
yield currentContext
endGrouping
endendendclassMoveController< OSX::NSObject
ib_outlet :button,:image
ib_action :movedo
OSX::NSAnimationContext.with_animation_property_group do |context|
context.duration =30.0@button.animator.setFrameOrigin([30,30])endendend