Quick tip. Been playing with Adobe Air recently and was trying to let the user drag a “systemChrome=”none” transparent=”true” around. The definitive Air reference has an example that shows how to close and minimize, but not how to move it. And all the examples I could find are Flash-based rather than the HTML/JS/Ajax approach I’m taking (along with some forum posters who were as confused as I was). Based on the Flash examples and the close/minimise pattern, it turned out to be this simple:

[javascript] document.body.onmousedown = function() { window.htmlControl.stage.window.startMove(); } [/javascript]