Adobe AIR to execute program

With AIR 2.0 you now can: if(NativeProcess.isSupported) { var file:File = File.desktopDirectory; file = file.resolvePath(“StyleLookupold.exe”); var nativeProcessStartupInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo(); nativeProcessStartupInfo.executable = file; var process:NativeProcess = new NativeProcess(); process.start(nativeProcessStartupInfo); } You also need to add this to your descriptor file. <supportedProfiles>extendedDesktop</supportedProfiles>

How to embed a video into GitHub README.md?

Add a url to video file in your ReadMe. Github now supports videos, see more detailed answer here: https://stackoverflow.com/a/4279746/1092815 You can see a live example here (See at the end of the readme): https://github.com/alelievr/Mixture/blob/0.4.0/README.md Github Pages I strongly recommend placing the video in a project website created with GitHub Pages instead of the readme, like … Read more