New issue 81 by sekati: DraggableSprite Enhancements
http://code.google.com/p/sekati/issues/detail?id=81
Purpose of the enhancement request:
Give more flexibility to DraggableSprite.
Would this request break the existing API, add new functionality or both?
Add new functionality
Please use labels, example code and attachments to provide additional info:
1. Adding an overridable drag method to handle drag events would be quite
useful.
2. Added a constructor argument to determine whether center dragging [e.g.
startDrag(true) ]
would also be useful.
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
Comment #1 on issue 81 by sekati: DraggableSprite Enhancements
http://code.google.com/p/sekati/issues/detail?id=81
The frameHandler can be overriden to implement new per-frame drag
functionality like so:
override protected function frameHandler(e:Event=null):void {
super.frameHandler(e);
if(!isDrag) {
// your drag code here!