2
votes

I am working on Adobe AIR project, in which I need to add "menu option" in a menu, which opens when we right click on any folder. I want to ask that can it be done using adobe air?

Details: Here is more detail: I want to develop air application whose function will be to upload the file/folders on ftp server. It start at OS startup (automatically) and run in background. I want to add menu item "Upload" in OS folder/file right click menu, so that whenever i click on that folder that file/folder should be upload on FTP server. Hope you got it. I've done FTP part, but I want to know that can I add menu item in menu which opens when we right click on any file/folder.

1
You need to provide more details and/or some code. Are you "opening" these "folders" inside of a custom file browser that is part of your application??? Have you never heard of a ContextMenu item? republicofcode.com/tutorials/flash/as3contextmenu - user562566
Okay that makes the issue much clearer... you should edit your question and add this extra detail to it, rather than post it as a comment. :) - user562566
There was question similar to yours, maybe it will help. stackoverflow.com/questions/10044027/… - Art

1 Answers

1
votes

You can't do this directly in AS3 because such things are done via registering server on the OS via DLL (at least on Windows) like GIT installation does or by directly modyfing the the system registry.

You can find more informations here

I'm afraid you'll have to do a small installer with another langage in addition to your AIR application.

Hope that helps.