To save each Project file in AIR application separately

Hello
I'm on the verge of developing a Desktop AIR application for a particular purpose. Now this application has the facility to develop multiple projects. What I would like to do is to save each of this project in a separate file in a specified location.
And moreover when I double click this project file, the AIR application should load with the specific project. My main purpose is to port project file of user's choice from one PC to another and open the same (assuming AIR application is installed in that machine) on double clicking it.
So if a user has created 5 projects inside the application and wants to share only one of the project, he/she should be able to do that.
A application that works the same way is MarketSamurai.
I hope I have explained it clearly my requirement, kindly please provide me suggestions.
Thanks

You can register file types, sure. Did you check the API reference ?

Similar Messages

  • Do I have to save each pdf file before printing?

    Do I have to save each pdf file before printing? It won't allow me to print unless I save it first.

    Are you viewing in a browser? Which one? What steps are you taking to print and exactly what happens?

  • I can't save Logic Projects/Files since updating to Lion. Help?!

    I can't save Logic Projects/Files since updating to Lion. Help?!

    I just had the same problem, after working on a project for a couple of hours and thinking it was saved, I go back to work on it some more and all the work I had done was not there. This is totally frustrating. I posted here as well and haven't had any responses. Good luck to you.

  • Packaging AIRHelp .air file with AIR Application

    Hi,
    Has anyone had any experience packaging an AIRHelp project (generated by RoboHelp) with an AIR Application?  I want installation for our app to be simple as possible for the end user, and requiring them to install the help separately from the real AIR application seems to be complicated and error prone.  (In addition, ProductManager launch function cannot determine whether or not help has been installed, so there could be problems there.)
    Currently we are using a native installer for the AIR app. 
    Thanks in advance,
    -Tom

    Another thing I learned is that you might have the icon file embeded in the application somewhere and that removes it from the include in AIR package screen.That shows the same 303 error. See more detalis here : http://spy6.blogspot.com/2009/10/error-creating-air-file-303error-some.html

  • Xhow XDP file in AIR application

    Does anyone knows how to load an XDP file in a HTML component
    in an AIR application? Loading PDF files is no problem.
    The XDP comes from a JAVA webserver. So, another possibility
    would be to convert the XDP to PDF on the server, before sending it
    to the AIR application. Does anyone knows if this is possible?
    thanks,
    Peter Vermeulen
    Belgium

    Having basically the same issue.  A blank screen appears.  I am using an iframe to display the PDF file (or trying to)
    Windows 7 Professional
    Acrobat Pro X
    AIR 2.7
    AIR SDK 2.7
    Code:
    <script>
    function init()
      var out = document.getElementById('outDiv');
      if (air.HTMLLoader.pdfCapability ==
       air.HTMLPDFCapability.STATUS_OK)
       out.innerHTML =
        "<iframe src='pdf/newsletter.pdf' width='700' height='500'></iframe>";
      else
       out.innerHTML = "<h2>PDF capability not found</h2> <p>Error is: " + air.HTMLLoader.pdfCapability+"</p>";
    </script>
    I am receiving a 3202 error on return from HTMLLoader.pdfCapability (acrobat version too old)

  • Open files with AIR application

    Hy, I made an AIR application that manages video files. Is there any way that when I try to open a video file to be opened with my application and play it ? Not just open the application and browse for the video.
    Thanks.

    bump!
    really? noone knows the answer?

  • How to embed icon MAc dmg file in air application while in windows its working fine

    how to embed icon in mac os dmg file ..while in windows i ha set in air application .xml file in <icon> tag and its working..so to embed icon for MAc OS

    solution ::
    add this code in windows app of AIR
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication 
    xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%" creationComplete="init()" layout="absolute" xmlns:local="*">
    <mx:VBox>
    <mx:Label text="Jay Mahadev" fontSize="32" />
    </mx:VBox>
    <mx:Script>
    <![CDATA[
    private function init():void
    if(NativeApplication.supportsDockIcon){ 
    var dockIcon:DockIcon = NativeApplication.nativeApplication.icon as DockIcon;NativeApplication.nativeApplication.addEventListener(InvokeEvent.INVOKE,undock);
    //dockIcon.menu = createIconMenu();
    else if (NativeApplication.supportsSystemTrayIcon){ 
    var sysTrayIcon:SystemTrayIcon = NativeApplication.nativeApplication.icon as SystemTrayIcon;sysTrayIcon.tooltip =
    "Stopwatch";sysTrayIcon.addEventListener(MouseEvent.CLICK,undock);
    //sysTrayIcon.menu = createIconMenu();
    public function undock(event:Event = null):void{stage.nativeWindow.visible =
    true;NativeApplication.nativeApplication.icon.bitmaps = [];
    ]]>
    </mx:Script>
    </mx:WindowedApplication>
    and also in windowapplication.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <application xmlns="http://ns.adobe.com/air/application/1.0">
     <icon>
    <image128x128>/icons/128x128.png</image128x128>
    <image48x48>/icons/48x48.png</image48x48>
    <image32x32>/icons/32x32.png</image32x32>
    <image16x16>/icons/16x16.png</image16x16>
    </icon>
    </application>
    Reference Link :::
    http://www.adobe.com/devnet/air/flash/quickstart/articles/stopwatch_dock_system_tray.html

  • Textinput issue from external file in AIR application (Is it bcz of mask?)

    Hi
    I tried to load external swf in TabNavigator. In this file, I have some input text.
    I can key in external file's text input after load. But i got  "Security Sandbox Violation" error.
    Here is the code
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                                                         xmlns:s="library://ns.adobe.com/flex/spark"
                                                         xmlns:mx="library://ns.adobe.com/flex/mx">
    <mx:TabNavigator width="100%" height="100%">
                        <mx:Canvas>
                                       <s:SWFLoader id="_swfLoader" source="C:\Users\bala\Desktop\TextSWF.swf"/>
                        </mx:Canvas>
    </mx:TabNavigator>
    </s:WindowedApplication>
    To solve security issue, i used load swf as bytes. After load there is no security issues, but i cannot key in external file's text input.
    Here is the code,
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                               xmlns:s="library://ns.adobe.com/flex/spark"
                               xmlns:mx="library://ns.adobe.com/flex/mx">
    <fx:Script>
                        <![CDATA[
                                  protected function CreationCompleteHandler(event:FlexEvent):void
                                            var loader:URLLoader=new URLLoader();
                                            loader.dataFormat=URLLoaderDataFormat.BINARY;
                                            loader.addEventListener(Event.COMPLETE, onSWFLoaded);
                                            loader.load(new URLRequest("C:\\Users\\bala\\Desktop\\TextSWF.swf"));
                                  private function onSWFLoaded(e:Event):void {
                                            var loader:URLLoader=URLLoader(e.target);
                                            loader.removeEventListener(Event.COMPLETE, onSWFLoaded);
                                            var context:LoaderContext=new LoaderContext(false, new ApplicationDomain());
                                            context.allowLoadBytesCodeExecution=true;
                                            _swfLoader.loaderContext = context;
                                            _swfLoader.load(loader.data);
                        ]]>
              </fx:Script>
    <mx:TabNavigator width="100%" height="100%">
              <mx:Canvas>
                        <s:SWFLoader id="_swfLoader" />
              </mx:Canvas>
    </mx:TabNavigator>
    </s:WindowedApplication>
    How can solve this issue. Is there anything to do with css?
    Is tabnavigator conatin default mask? How can user edit masked textinput without embed font?
    Thanks
    Regards
    Balasubramaniyan.S

    Thanks for your reply,
    Yes, the addedToStage handler is executed every time. I set my host application up to work exactly with that behaviour. There are several events going from client to host to help the communication inside the the application. I can't get behind the reason why it won't work.
    I made a case where I created a camera instance inside the host application and passed it over to the client via
    client.setupFunction(inArg: arg, sendCamera: Camera);
    That works. But I also need a microphone, and I can't get the mic working over with the same technique. And also I'd prefer to have it all in the client, cause I designed the application model to work exactly in that fashion.
    I guess it's a secruity sandboxing problem, but I can't find any documentation on this issue.
    Thanks, maybe another solution can be found here. ;-)

  • Adobe Captivate asks me to save my project file when I dont make changes...

    Hello,
    I think it is confusing Adobe will ask if I want to save the file even if I don't make any changes... Maybe this is something they can change in the next version?
    Ryan

    I have had this happen. It's odd. Some things seem to get saved, while others do not.  I haven't tracked it to be certain, but as I recall Bookmark changes or changes to File Properties, for example, won't be saved while working in the Content or Tags panel may be.  No idea why this is the case. 
    As mentioned above, it's always a good idea to make interim Save As's using a different file name (File01, File02, etc.) so if your document should become corrupt during the editing process you have an earlier version to go back to. 

  • Haven't used icloud yet but if we have multiple devices with multiple contacts can we save each contact list to the cloud separately?

    We have four separate iPhones with four separate contact list but one family apple ID.  If we back each device up to the cloud using the same apple ID will it keep the lists separate?

    You can share the same Apple ID for purchasng form the iTunes and app stores without any problems, but you should all used separate iCloud accounts with separate Apple IDs.  (You are not required to use the same ID for iCloud and other services as you do for the iTunes store.)  This will prevent you from ending up with merged data.  You should also use separate Apple IDs for iMessage and FaceTime or you will end up getting each other's text messages and FaceTime calls.
    This article may be of interest: http://www.macstories.net/stories/ios-5-icloud-tips-sharing-an-apple-id-with-you r-family/, as well as this video: http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l.

  • Using iMovie to save project files to external hard drive?

    I have a MacBook Pro with very limited space on the internal hard disk drive. I also have a few FireWire external hard drives.
    A friend recently gave me his Hitachi DZ-HS300A mini-DVD camcorder so I could copy footage off of it, load it into my machine, edit it and upload it (several minutes) to YouTube. He can't do this because he lives in a remote area where there is no broadband yet.
    I almost never use iMovie. I was wondering if there is a way to save the project file to an external FireWire drive so that there will be no large video files clogging up my laptop's internal hard drive. Can this be done? Is there an iMove preference I have to change?

    You should generally leave the iMovie Project file on the boot drive. The Project File is mainly a small text file with in and out points.
    The iMovie Event file is where the video assets are stored. You can store events to an external hard drive in two ways:
    1) As you import from the camera, you will see an import screen. You can select the external drive on the import screen
    2) If the event is already on your internal drive, you can click View/Events By Volume. Now you can drag and drop the event to the external drive in the Events SOurce List in iMovie.
    For your external drive to be visible to iMovie, it must be formatted HFS+ or HFS+ (journalled).

  • Save PDF-file on the application server

    Hello experts,
    I convert my Smartform to a PDF-File. I copied the code from  Suresh Kumar Parvathaneni (REPORT zsuresh_test). At first, thank you Suresh Kumar for that!
    Now, I would like to save the PDF-File on the application server and not local.
    Could you tell me how to do this. Especially, where do I have to put the abap-code in the given code from Suresh Kumar.
    I thank you very much for your help in advance.
    With kind regards.
    gokselin

    Hi,
    You can use the OPEN DATASET statment.
    Probably you must be having an output table which you are downloading to the local machine.You can use the same and loop at it. and if the OPEN dataset returned sy-subrc 0, use the TRANSFER statment.
    Remember the data will be binary for pdf. So you have to open the dataset in binary mode.
    regards,
    Advait

  • Save project file and event file?

    When archiving a project, should I save the project file and the event file? All of my raw footage is saved on it's origional media.
    Cheers.
    Tom

    You want to save the Project folder contents and the contents of any Events used within the Project. You can also do this from the Project library itself by control clicking on the Project itself and selecting Duplicate Project. Make sure to attach an external drive for the archive.

  • How can I write my Adobe AIR application tracing lines into a log file

    I Have a question about log files for AIR application
    How can I make my application writing all tracing and exceptions into a log file?

    I think if you pubish a -debug SWF it will log to flashlog.txt

  • MS Project Very Slow and Project Files Large when Using Shared Resource Pool

    Hello,
    We are using MS Project 2010 Professional in our organization and using a shared resource pool so we can easily identify resource conflicts.  When we started this process many months ago the resource pool worked great.  Now that we have nearly
    all of our projects (~40) using the resource pool, it has become essentially unusable.  Each project file that is sharing the resource pool is 12 MB or greater in file size, and most of the project files contain less than 100 lines.  Saving any file
    takes ~4 minutes.  As a result, many of the resource managers and project managers are starting to avoid using MS Project which is undermining our original intent.
    Any thoughts on what we could try to regain the usability, make the file sizes smaller, improve save times, etc.?  Will MS Project Server fix all of these issues?
    Thanks,
    Josh

    If any of your PMs renamed, moved or over-wrote their project file whilst linked to the Resource Pool or a master, then the file may well have corrupted itself or the pool or both. With 40 files, you can guarantee one or more PMs will do one of the above,
    so file corruption is a when, not if (2days or 2 years or more).
    For 40 projects Project Server or any solution that copies data to a database so the resource data can be consolidated is needed. Project Server is not a simple application, it's a full server and requires proper training and processes to add value. And
    it needs configuring by someone who knows what they're doing!
    In the mean time try unattaching all project files from the pool, then create a new blank pool and re-attach.You will also need to File, Save as to repair each project file if needed. For bad corruption save as to a .xml format then re-import to a blank
    project.
    Or, create a new master each time by inserting all projects into a new blank project, but deselecting the Link option. All tasks are then copied and the resource data consolidated. Record a macro to make creating this very quick and easy (provided your network
    isn't too slow).
    <p>Rod Gill</p> <p><a href="http://www.project-systems.co.nz/project-vba-book/index.html/">The one and only Project VBA Book</a> <a href="http://www.project-systems.co.nz/"></p> <p>Rod
    Gill Project Management</a></p>

Maybe you are looking for

  • Advice needed regarding best practice

    Hi - curious as to if what i have setup now should be changed to best utilize Time Machine. I have iMac with 750GB drive (a small chunk is partitioned for Vista) - lets assume I have 600 GB dedicated for the mac. I havetwo firewire external drives -

  • Managed Server is not responding

    Hi All, I have an application (UCM 11g 11.1.1.5) running on WLS (10.3.5) like one Admin Server and 2 managed servers (UCM,IBR). Yesterday when i tried to access the application, its not responding. I am not getting error, waited for around 15 mints.I

  • HTTP connection problems

    Hi I am using eclipseME plugin to develop a midlet .It uses the J2ME WTK2.1 from Sun. When I trty to connect I get a strange error like this java.lang.ClassNotFoundException: com/sun/midp/io/j2me/www/mydomain./com/Protocol/ here the url i used for co

  • MP-4 to Mp-3

    How do I convert Mp4 music file that is on my iTunes to Mp3 music file to play on a regular USB music player.

  • ISE Profilinh and Thin Clients

    I have ISE 1.2 and HP T610 thin client on the network 802.1x authorization is working correctly but clients are profiled as generic HP-devices or HP printers I don't know how to create custom profiling policy for 'HP-Thin-Client' device. What OUI con