PDA

View Full Version : Using a desktop Application into Another Application using Adobe Air flex3


kirat_johal
03-12-2009, 11:05 AM
have created a notepad desktop application using Adobe air.
The output is "NotePad Application" that is installed on my system.
Now i have created another desktop Application.I want to use Notepad application in this Application .
How it will be done?

sudhansurana
03-12-2009, 12:47 PM
Use this code to open the another project.
private function openApplication():void
{
var request :URLRequest = new URLRequest("C:\\Program Files\\path\\application.exe");
navigateToURL(request )
}

kirat_johal
03-12-2009, 12:56 PM
I donnot want the exe to open in different or same browser window.
I want to put the exe on the Adobe Application Screen and when the user will click on the icon the exe will execute.