我正在使用Aptana 2.0中的HTML和JavaScript / jQuery构建和AIR框架应用程序。我删除了工具箱(< systemChrome> none< / systemChrome>),但我需要启用用户移动窗口。
我希望能够点击窗口或窗口本身的任何控件并移动窗口。
我在ActionScript中找到了一些这样做的示例,但由于我需要在HTML / JavaScript中执行此操作,所以没有太多帮助。
答案 0 :(得分:0)
我们需要的只是处理鼠标按下事件,在按下鼠标时,调用startMove()
对象的nativeWindow
方法,使该窗口跟随鼠标。
// bind the mouse down event
$(document).bind
(
"mousedown",
function ()
{
// this will make the window to follow the mouse
nativeWindow.startMove();
}
);