mProjector adds desktop APIs to Adobe Flash. With mProjector you can check for an internet connection, get the mouse postion, download files, animate the Mac dock icon, generate a uniue user id, create child windows, respond to activate/deactivate events, and more.
mProjector uses native AS syntax. If you want to move the window, create a "drag bar" by defining a Flash button with the following onPress handler.
+1
mProjector
mProjector adds desktop APIs to Adobe Flash. With mProjector you can check for an internet connection, get the mouse postion, download files, animate the Mac dock icon, generate a uniue user id, create child windows, respond to activate/deactivate events, and more.
mProjector uses native AS syntax. If you want to move the window, create a "drag bar" by defining a Flash button with the following onPress handler.
drag_btn.onPress = function() {
mWindow.startDrag();
}
If you want to position a window, use the following command:
mWindow.setPosition(x, y);
What could be easier? Or should I ask? ;-)
B.