private function dragOverHandler(event:DragEvent):void
{
	/***************/
	//如果按下ctrlKey和shiftKey,也执行Move操作。不执行Link和Copy 
	event.preventDefault();
	if (event.ctrlKey)
	{
		DragManager.showFeedback(DragManager.MOVE);
		return;
	}
	
	if (event.shiftKey)
	{
		DragManager.showFeedback(DragManager.MOVE);
		return;
	}				
}

在Spark控件下这样做是不行的,没有找到解决方法!求解

相关文章:

  • 2022-12-23
  • 2021-10-04
  • 2021-12-04
  • 2021-11-09
  • 2022-12-23
  • 2021-05-22
  • 2022-01-07
  • 2022-12-23
猜你喜欢
  • 2021-05-27
  • 2021-09-13
  • 2022-12-23
  • 2021-09-09
  • 2022-02-11
  • 2021-07-05
相关资源
相似解决方案