Air Installer Copying and or extracting external files

Is there a way to have an air installer copy an external file to the installation directory?  We are using video data in our app and the resulting air application is just far to big (i.e installer will not run on the end users machine).  So I am thinking that perhaps the air installer can install the app then copy any required media/data from external files to the correct directory.
Can this be done?

I have done something similar with a document management app.
Once the app was installed it would check for a DVD / Thumb drive and silently copy all the documents from another drive to the (ASD) AppStorageDirectory.
You could also download your media files to the AppStorageDirectory as well.
When my app gets updated I have a function that deletes obsolete files from the ADS and leave the files I need to persist untouched.
Here is a snippet that reads available drives and looks for a specific named drive and then creates an Array listing all the files which can
then be copied using  SOURCE.copyToAsync(DESTINATION)...
var os:String = Capabilities.os.substr(0, 3).toLowerCase();
         var currentDrives:Array = (os=="mac") ? new File('/Volumes/').getDirectoryListing() : File.getRootDirectories() ;
         var fileList:Array;
         var fileCount:int = 0;
         var fileListArr:Array = new Array();
         for each(var file:File in currentDrives){
             //trace ("Drive: " + file.name + " Size: " + file.size);
             if(file.name.toString().indexOf("KnownNameofDVD")>-1){
                 trace ("Drive: " + file.name + " Size: " + file.size);
                  fileList = (os=="mac") ? new  File('/Volumes/'+file.name).getDirectoryListing() :  new  File(file.name.getDirectoryListing()
                 for(var l:int = 0 ; l<fileList.length; l++){
                     //trace(fileList[l].nativePath)                    
                     fileCount++;
                     fileListArr.push(fileList[l].nativePath.toString())

Similar Messages

  • How can I copy and paste a pdf file from my picture file and paste onto a document?

    How can i copy and paste a pdf file onto a document.  I am trying to place and article onto my
    Reverbnation Press page.  They only give you the option to either place a url link or paste a document.  There
    is no uploading for the Press page.  thanks, elena

    The Digital Editions forum is here, in case this is what you are talking about:
    http://forums.adobe.com/community/adobe_digital_editions
    If you are not, I apologize for the misunderstanding.

  • I download autocad 2010 with crack, how can i install it with crack coz i can't find where to paste the crack file? not like windows just go to drive c, progarms and click the installed folder and you can copy and paste the crack file.

    i download autocad 2010 with crack, how can i install it with crack coz i can't find where to paste the crack file? not like windows just go to drive c, progarms and click the installed folder and you can copy and paste the crack file.
    please help me..
    thanks

    No one here will help you.
    You should definitely ask your question in this forum:
    http://forums.autodesk.com/t5/AutoCAD-2010/bd-p/360

  • Can I simply copy and paste an existing library file from XP to a Mac and then copy and paste the music files themselves? Of course, the music files will be in a different location...

    Hello Gurus,
    I have an aged XP machine with a large music library in ITunes. iTunes will not run any longer (tried uninstalling and reinstalling etc to no avail) but the music files are backed up onto an external drive so all safe. I have purchased a Mac which of course already has iTunes installed and I can copy the music files onto the Mac, but can I simply copy and paste the iTunes library files from the XP machine to the Mac so that all of the playlists, tags, ratings etc transfer, or do I have to start again?
    Thanks for the advice.

    Sounds like you have a split library. Ideally you would make this portable before attempting to move it to the Mac. See make a split library portable for details.
    Perhaps you can get iTunes running on the old box long enough to sort things out...
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    You will also want to deauthorize the XP system once everything is working properly on the Mac.
    tt2

  • Can't copy and paste or drag files and folders

    In the last few days I can no longer drag files or folders on my desktop, in my mail program (Entourage) and I can't copy and paste anymore. I also can't get iDisk to come up. It keeps givng me error messeges. (error code -50). Anyone had similar problems and know of a solution?

    When did you last run a bit of basic maintenance?
    Repairing permissions is important, and should always be carried out both before and after any software installation or update.
    Go to Disk Utility (this is in your Utilities Folder in your Application folder) and click on the icon of your hard disk (not the one with all the numbers).
    In First Aid, click on Repair Permissions.
    This only takes a minute or two in Tiger, but much longer in Leopard.
    Background information here:
    http://docs.info.apple.com/article.html?artnum=25751
    and here:
    http://docs.info.apple.com/article.html?artnum=302672
    An article on troubleshooting Permissions can be found here:
    http://support.apple.com/kb/HT2963
    By the way, you can ignore any messages about SUID or ACL file permissions, as explained here:
    http://support.apple.com/kb/TS1448?viewlocale=en_US
    If you were having any serious problems with your Mac you might as well complete the exercise by repairing your hard disk as well. You cannot do this from the same start-up disk. Reboot from your install disk (holding down the C key). Once it opens, select your language, and then go to Disk Utility from the Utilities menu. Select your hard disk as before and click Repair.
    Once that is complete reboot again from your usual start-up disk.
    More useful reading here:
    Resolve startup issues and perform disk maintenance with Disk Utility and fsck
    http://support.apple.com/kb/TS1417?viewlocale=en_US
    For a full description of how to resolve Disk, Permission and Cache Corruption, you should read this FAQ from the X Lab:
    http://www.thexlab.com/faqs/repairprocess.html

  • How to release and read another external file

    My vi is set to read an external file (a previously collected force plate signal), then perform a string of analyses on it and finally save the analytical output. Currently, "Read from measurement file" is outside the while loop containing all of my analysis.
    Without completely restarting the vi, I would like to be able to release the file and load another.  How might I do this?  
    Thanks!

    I would do several things to clean up the block diagram.
    whenever you have multiple outputs that are related to each other (PF, F100, F150, F200, F250, etc...) or all of the RFDs and Impulses, you can bundle them together and then display them with one big cluster, or as an array, if that makes sense.  This will reduce your total number of outputs and maybe improve organizaiton.
    If you have a seqeunce of functions that go together, you can combine them into a SubVI to save blockdiagram space and making things more logical.
    If you have several places where the same sort of function is being done, (for example, you have Extract-Statistics-Formula several times and Extract-Integral-Statisics several times) you can make this into a sub-VI and then loop through it.  That way you can execute the function multiple times (with slight changes on each loop), but you only have to have the code written once. It also makes it much easier to improve the code because you only have to make one change instead of four. 
    The attached VI shows two ways of doing something.  On the left is your code, which is four sets of the same thing.  On the right, I've taken this code and put it into a loop so it does the same thing four times.
    Attachments:
    Simplified Code.vi ‏896 KB

  • How to open and read an external file in Dashboard widget?

    I am new to Dashboard widgets and also Javascript. I have written a widget that needs to open and read a file on the local file system. I have searched a lot and have not found any documentation or reference on the internet as to how to do this.
    I know it can be done since there is a checkbox in the widget attributes that says "Allow External File Access".
    can anyone help me out here?
    Thanks

    You need to define the AllowFileAccessOutsideOfWidget key to Yes.
    You also need to define the AllowFullAccess key.
    You may also need to define the AllowSystem key (to Yes of course).
    Mihalis.
    PS. If you cannot find any other documentation please check http://widgetbook.blogspot.com.

  • Adobe AIR Installer.app and Comcast ID

    Has anyone had trouble with installing the Adobe AIR Installer.app in order to have a comcast ID on your computer and TV?

    If you need it for the usage meter, instructions here  > http://usagemeterapp.comcast.net/air.html
    Repair permissions prior to installing Adobe Air.
    Launch Disk Utility located in HD > Applications > Utilities
    Select the startup disk on the left then select the First Aid tab.
    Click: Repair Disk Permissions
    This process can take a few minutes.
    Quit Disk Utility when it's finished then try installing Adobe Air.
    FAQ's for >  Xfinity Usage Meter Application

  • Why cant I copy and paste local links (file:/// or bookmarks) into an editable page (browser or email) in Fx 4 or 5, as I COULD in Fx 3?

    During the time I was using Fx 3, I found out that I could copy and past links and bookmark folders into an editable page in firefox, and manipulate those links just as I could in my emails for instance -- copy and paste to my hearts content! and the links would remain clickable--
    now, having switched to Fx 4, and then a week later Fx 5, I find out that in neither of these versions can I still do this same operation-- the links from file (file:///) and bookmarks to local pages (including about:config, or about:blank) used to show up in an editable page (and then saved in the scrapbook extension, but even if saved onboard my disk, no matter) as a clickable link-- (no, about config would not open up from a saved page, Im trying to remember more examples here, the LINK would still be a correct hyperlink)
    now, in Fx 4 and 5, these links are copied to the clipboard as text only!
    this saddens greatly-- I was making wonderful use of this feature back in Fx 3.6-- but Fx 5 really is faster, and so far, ALL the extensions Ive come to LOVE still work great in Fx5, and things happen faster
    can someone tell me why,
    and
    is there a config setting, or some other solution that can change this back for me?
    ("3 people have this problem 2 new this week")
    THANK YOU "I have this problem too" clickers!!!
    Im still checking back here regularly to find out WHY!?

    During the time I was using Fx 3, I found out that I could copy and past links and bookmark folders into an editable page in firefox, and manipulate those links just as I could in my emails for instance -- copy and paste to my hearts content! and the links would remain clickable--
    now, having switched to Fx 4, and then a week later Fx 5, I find out that in neither of these versions can I still do this same operation-- the links from file (file:///) and bookmarks to local pages (including about:config, or about:blank) used to show up in an editable page (and then saved in the scrapbook extension, but even if saved onboard my disk, no matter) as a clickable link-- (no, about config would not open up from a saved page, Im trying to remember more examples here, the LINK would still be a correct hyperlink)
    now, in Fx 4 and 5, these links are copied to the clipboard as text only!
    this saddens greatly-- I was making wonderful use of this feature back in Fx 3.6-- but Fx 5 really is faster, and so far, ALL the extensions Ive come to LOVE still work great in Fx5, and things happen faster
    can someone tell me why,
    and
    is there a config setting, or some other solution that can change this back for me?
    ("3 people have this problem 2 new this week")
    THANK YOU "I have this problem too" clickers!!!
    Im still checking back here regularly to find out WHY!?

  • I have restricted copy and print on a file, but now i cannot it to attach it to an email

    I have restricted copy and edit on a confidential file i want to email.  However, now i cannot see the file in order to attach it to an email or even by using Finder.  However i can see it on Desktop.  Major problem is now i cannot send the file using Outlook for mac as the file is not visible with the "attach" function

    Hi securityissue,
    Try open the document in Acrobat and try to re-save with different name if you have permission to do so.
    Also you may copy the document on thumb drive/ Flash drive and copy over to another machine and try to check the same.
    Regards,
    Ajlan Huda.

  • I followed the instructions to copy and paste ALL profile files from old PowerBook to new MacBook Pro, so why are no bookmarks now shown in Firefox?

    From the page
    https://support.mozilla.org/en-US/kb/recovering-important-data-from-an-old-profile#w_copying-files-between-profile-folders
    After dragging and dropping the profile folder from the old PowerBook to the new MacBook Pro, I followed the copy/paste instructions, apparently successfully, to replace all the files in the latter with all the files in the former -- essentially to transfer my Firefox browser functionality from the old computer to the new. However, on starting Firefox, I have ZERO bookmarks (in other words, Firefox looks like it did when I downloaded and installed it a couple days ago). One note: When I performed the operation, I had used the new version of Firefox almost not at all, yet in the course of copying and pasting I had to permit replacement of HUNDREDS of bookmark files with identical names. How could THIS be?!?

    It is normally best to only restore personal data that you really need (bookmarks, passwords, etc.) and not a full profile folder.
    The xxxx in the name of the JSON backup (bookmarks-####-##-##_xxxx_$$$$.jsonlz4) denotes the number of bookmarks in the file and a file hash ($$$$) is appended to check if it is necessary to save a new backup, so only if there is a different hash because bookmarks were modified then a new backup is created.
    If you remove the newer backups that were created before you restored the backup and only leave the bookmark backups from the saved profile then Firefox should rebuild the bookmarks when you remove all the places files.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    Can you attach a screenshot to clarify what you mean with ''all those hundreds of bookmarks, now residing in the profile folder''?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    *Use a compressed image type like PNG or JPG to save the screenshot
    *Make sure that you do not exceed the maximum size of 1 MB

  • Disable Options (Save a copy and print) in PDF file

    Hello Friends,
    We have a java based web product in which we have enter metadata of a PDF file and upload that file on server with metadata. Now I want to disable save a copy, print, copy and save as text options. Is there any API avaliable please help me i am in deep trouble.
    regards,
    Shambhu Mitra

    Hi,
    This is not possible AFAIK. These features are specific to the browser and you don't have any control over them. If you want to stop people
    from being able to copy/print your data then you might want to consider the following
    * don't make it available in the first place
    * make it available in another form
    * make only some of it available (i.e. what the user needs)

  • How to copy and paste the solution files of SharePoint 2010 from one machine to another machine?

    Hi,
    I was working with SharePoint 2010  in one of my Virtual machines.Now that the lease for my Virtual Machine is going to expire, I want to shift the entire contents of the project to another machine (local) with SharePoint 2010. Also, I want the pages
    in the other machine to be editable. 
    How can I copy the solution files to the other machine? And I want the exact path where the files are located, so that I can shift them to the other machine.
    Thanks in advance. 

    ...that's not a good approach.
    Deploying customisations can be as simple as files being copied onto the file system. Most of the time however there is a lot more happening behind the scenes and simply copying the files won't work.
    Also that is assuming that you mean solutions rather than the pages themselves (or the contents of document libraries) in which case you want to copy databases, not just files.
    SharePoint isn't a simple thing to move, you may need to look at this a bit harder.

  • Copy and paste (gif/jpg file)

    I need to copy a gif/jpg file from one folder and paste it into another folder. The java.io package does not provide any method to do this. How do I achieve this? Does Java 1.4 provide anything? Is there any sample code available anywhere?

    Not quite sure what you mean here...are you talking about a GUI context? If so you need to look at the DnD framework...java.awt.dnd.
    If you mean just copying a file over to a new location just use: File.renameTo (File).

  • DW050 Installation errors and where do I file my install logs?

    I've just installed Photoshop CS6 on an i7 PC wiht 16 gig of RAM and plenty of hard drive space. I've got 25 errors and 2 warning in the install logs. Can someone please tell me where or to whom I should send this file?
    Doug

    Doug has left for work interstate. I'm monitoring his mail until he returns. Margie is my Name, I am Doug's PA and can help you find any logs of other information you need in his absence.
    Doug deleted all reference to Photoshop CS6 from his PC before leaving but by using Photoshop CS5, I obtained the following system information from his computer:
    I'll monitor his mail and answer you when required.
    Adobe Photoshop Version: 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch]) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:5 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 4
    Processor speed: 3073 MHz
    Built-in memory: 12279 MB
    Free memory: 8946 MB
    Memory available to Photoshop: 10946 MB
    Memory used by Photoshop: 75 %
    Image tile size: 132K
    Image cache levels: 6
    Display: 2
    Display Bounds:=  top: 0, left: -1600, bottom: 1200, right: 0
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1080, right: 1920
    Video Card Number: 1
    Video Card: ATI Radeon HD 5800 Series
    Driver Version: 8.951.0.0
    Driver Date: 20120308000000.000000-000
    Video Card Driver: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 1920 x 1080 x 4294967296 colors
    Video Card Caption: ATI Radeon HD 5800 Series
    Video Card Memory: 1024 MB
    Serial number: 91198735701417563220
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS5 (64 Bit)\
    Temporary file path: C:\Users\doug\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      K:\, 370.1G, 349.2G free
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS5 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2010/10/04-23:36:11   64.441628   64.441628
       adbeape.dll   Adobe APE 2010/02/23-12:40:58   61.421986   61.421986
       AdobeLinguistic.dll   Adobe Linguisitc Library   5.0.0  
       AdobeOwl.dll   Adobe Owl 2010/06/03-13:43:23   3.0.93   61.433187
       AdobeOwlCanvas.dll   Adobe Owl Canvas   3.0.68   61.2954
       AdobePDFL.dll   PDFL 2010/12/13-23:37:10   64.341419   64.341419
       AdobePIP.dll   Adobe Product Improvement Program   5.0.0.2021  
       AdobeXMP.dll   Adobe XMP Core   5.0   61.134777
       AdobeXMPFiles.dll   Adobe XMP Files   5.0   61.134777
       AdobeXMPScript.dll   Adobe XMP Script   5.0   61.134777
       adobe_caps.dll   Adobe CAPS   3,0,116,0  
       adobe_OOBE_Launcher.dll   Adobe OOBE Launcher   1.0.0.64 (BuildVersion: 1.0; BuildDate: Mon Jan 26 2010 21:49:00)   1.000000
       AFlame.dll   AFlame 2010/02/23-17:27:33   61.421976   61.421976
       AFlamingo.dll   AFlamingo 2010/02/23-17:27:33   61.421978   61.421978
       AGM.dll   AGM 2010/10/04-23:36:11   64.441628   64.441628
       ahclient.dll    AdobeHelp Dynamic Link Library   1,5,0,30  
       aif_core.dll   AIF   2.0   53.422628
       aif_ogl.dll   AIF   2.0   53.422628
       amtlib.dll   AMTLib (64 Bit)   3.0.0.64 (BuildVersion: 3.0; BuildDate:  Mon Jan 26 2010 21:49:00)   1.000000
       amtservices.dll   AMTServices (64 Bit)   3.0.0.64 (BuildVersion: 3.0; BuildDate:  Mon Jan 26 2010 21:49:00)   1.000000
       ARE.dll   ARE 2010/10/04-23:36:11   64.441628   64.441628
       asneu.dll    AsnEndUser Dynamic Link Library   1, 7, 0, 1  
       AXE8SharedExpat.dll   AXE8SharedExpat 2010/02/23-17:27:33   61.421978   61.421978
       AXEDOMCore.dll   AXEDOMCore 2010/02/23-17:27:33   61.421978   61.421978
       Bib.dll   BIB 2010/10/04-23:36:11   64.441628   64.441628
       BIBUtils.dll   BIBUtils 2010/10/04-23:36:11   64.441628   64.441628
       boost_threads.dll   DVA Product   5.0.0  
       cg.dll   NVIDIA Cg Runtime   2.0.0015  
       cgGL.dll   NVIDIA Cg Runtime   2.0.0015  
       CoolType.dll   CoolType 2010/10/04-23:36:11   64.441628   64.441628
       data_flow.dll   AIF   2.0   53.422628
       dvaadameve.dll   DVA Product   5.0.0  
       dvacore.dll   DVA Product   5.0.0  
       dvaui.dll   DVA Product   5.0.0  
       ExtendScript.dll   ExtendScript 2010/10/19-10:22:12   61.445301   61.445301
       FileInfo.dll   Adobe XMP FileInfo   5.0   61.134777
       icucnv36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       icudt36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       icudt42.dll   International Components for Unicode   4, 2, 0, 0  
       icuin42.dll   International Components for Unicode   4, 2, 0, 0  
       icuuc42.dll   International Components for Unicode   4, 2, 0, 0  
       image_flow.dll   AIF   2.0   53.422628
       image_runtime.dll   AIF   2.0   53.422628
       JP2KLib.dll   JP2KLib 2010/12/13-23:37:10   64.181312   64.181312
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2, 0, 1, 11  
       MPS.dll   MPS 2010/12/13-23:37:10   64.450375   64.450375
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
       onOneActivationToolbox.dll   onOneActivationToolbox   1.0.1  
       onOneToolbox2.dll   onOne Toolbox2 Dynamic Link Library   2.2.0  
       onOneWelcomeDialog.dll   Essentials   1.0.0.1  
       OnOneWidgets.dll    OnOneWidgets dll   2.5  
       ONProxySupport.dll   TODO: <Product name>   1.0.0.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS5   CS5  
       Plugin.dll   Adobe Photoshop CS5   CS5  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   2.0.0.746  
       PSArt.dll   Adobe Photoshop CS5   CS5  
       PSViews.dll   Adobe Photoshop CS5   CS5  
       SCCore.dll   ScCore 2010/10/19-10:22:12   61.445301   61.445301
       tbb.dll   Threading Building Blocks   2, 1, 2009, 0201  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   1.0.0.68 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   1.0.0.68
       WRServices.dll   WRServices Thursday January 21 2010 12:13:3   Build 0.11423   0.11423
       wu3d.dll   U3D Writer   9.3.0.113  
       zlib.dll   zlib   1.2.5  
    Installed plug-ins:
       Accented Edges 12.0
       ADM 3.11x01
       Alias PIX 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Angled Strokes 12.0
       Average 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Bas Relief 12.0
       BMP 12.0.2
       Camera Raw 6.6
       Chalk & Charcoal 12.0
       Charcoal 12.0
       Chrome 12.0
       Cineon 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Clouds 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Color Halftone 12.0.2
       Colored Pencil 12.0
       CompuServe GIF 12.0.2
       Contact Sheet II 12.0 (12.0x001)
       Conté Crayon 12.0
       Craquelure 12.0
       Crop and Straighten Photos 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Crop and Straighten Photos Filter 12.0.2
       Crosshatch 12.0
       Crystallize 12.0.2
       Cutout 12.0
       Dark Strokes 12.0
       De-Interlace 12.0.2
       Difference Clouds 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Diffuse Glow 12.0
       Displace 12.0.2
       Dry Brush 12.0
       DxO FilmPack 3 NO VERSION
       Eazel Acquire 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       ElectricImage 12.0
       Embed Watermark 4.0
       Extract 12.0 (12.0x001)
       Extrude 12.0.2
       FastCore Routines 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Fibers 12.0.2
       Film Grain 12.0
       Filter Gallery 12.0
       FocalPoint 2 2.0.9 (Suite 6)
       FocalPoint 2 Filter 2.0.9 (Suite 6)
       FocalPoint 2 Hidden NO VERSION
       FocalPoint 2 Hidden NO VERSION
       Fresco 12.0
       Glass 12.0
       Glowing Edges 12.0
       Grain 12.0
       Graphic Pen 12.0
       Halftone Pattern 12.0
       HDRMergeUI 12.0
       HSB/HSL 12.0
       IFF Format 12.0.2
       Ink Outlines 12.0
       JPEG 2000 2.0
       Lens Blur 12.0
       Lens Correction 12.0.2
       Lens Flare 12.0.2
       Lighting Effects 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Liquify 12.0.1
       Matlab Operation 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Measurement Core 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Mezzotint 12.0.2
       MMXCore Routines 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Mosaic Tiles 12.0
       Multiprocessor Support 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Mystical 2 10.0
       Neon Glow 12.0
       Nik Selective Tool 2.1.3.17318
       Noise Ninja NO VERSION
       Noise Ninja NO VERSION
       Noiseware Professional 4.2.0.5
       Note Paper 12.0
       NTSC Colors 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Ocean Ripple 12.0
       OpenEXR 12.0.2
       Paint Daubs 12.0
       Palette Knife 12.0
       Patchwork 12.0
       Paths to Illustrator 12.0.2
       Pattern Maker 12.0 (12.0x001)
       PCX 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Perfect Effects 6.0.0
       Perfect Effects Filter 6.0.0
       Perfect Effects Smart Filter 6.0.0
       Perfect Mask 6.0.0
       Perfect Mask Filter 6.0.0
       Perfect Mask Smart Filter 6.0.0
       Perfect Portrait 6.0.0
       Perfect Portrait Filter 6.0.0
       Perfect Portrait Smart Filter 6.0.0
       Perfect Resize 7.0 Professional Edition 7.0.5 (Suite 6)
       Perfect Resize 7.0 Professional Edition Batch 7.0.5 (Suite 6)
       Perfect Resize 7.0 Professional Edition Filter 6.0
       Perfect Resize 7.0 Professional Edition Format 7.0.5 (Suite 6)
       PG-Processor 2.0.0
       Photocopy 12.0
       PhotoFrame 4.6 Professional Edition 4.6.5 (Suite 6)
       PhotoFrame 4.6 Professional Edition Batch 4.6.5 (Suite 6)
       PhotoFrame 4.6 Professional Edition Hidden 4.6.5 (Suite 6)
       PhotoKit Capture Sharpener 1, 2, 11, 0
       PhotoKit Capture Sharpener 2 2.0.4
       PhotoKit Capture Sharpener Expert 1, 2, 11, 0
       PhotoKit Creative Sharpener 1, 2, 11, 0
       PhotoKit Creative Sharpener 2 2.0.4
       PhotoKit Output Sharpener 1, 2, 11, 0
       PhotoKit Output Sharpener 2 2.0.4
       PhotoKit Preview Helper 2.2.2
       PhotomergeUI 12.0 (12.0x001)
       PhotoTools 2.6 Hidden NO VERSION
       PhotoTools 2.6 Hidden NO VERSION
       PhotoTools 2.6 Professional Edition 2.6.3 (Suite 5.5.3)
       PhotoTools 2.6 Professional Edition Batch 2.6.3 (Suite 5.5.3)
       PhotoTune 3 3.0.8 (Suite 5.5.3)
       PhotoTune 3 Batch 3.0.8 (Suite 5.5.3)
       PhotoTune 3 Filter 3.0.8 (Suite 5.5.3)
       Picture Package 12.0 (12.0x001)
       Picture Package Filter 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Pinch 12.0.2
       Pixar 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       PixelGenius Toolbox 2.2.6
       Plaster 12.0
       Plastic Wrap 12.0
       PNG 12.0.2
       Pointillize 12.0.2
       Polar Coordinates 12.0.2
       Portable Bit Map 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Portrait Professional 1, 4, 1, 0
       Poster Edges 12.0
       Radial Blur 12.0.2
       Radiance 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Read Watermark 4.0
       Reticulation 12.0
       Ripple 12.0.2
       Rough Pastels 12.0
       Save for Web & Devices 12.0
       ScriptingSupport 12.0.4
       SGI RGB 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Shear 12.0.2
       Smart Blur 12.0.2
       Smudge Stick 12.0
       SoftImage 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Solarize 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Spatter 12.0
       Spherize 12.0.2
       Sponge 12.0
       Sprayed Strokes 12.0
       Stained Glass 12.0
       Stamp 12.0
       Sumi-e 12.0
       Targa 12.0.2
       Texturizer 12.0
       Tiles 12.0.2
       Topaz Adjust 5 10.0
       Topaz BW Effects 10.0
       Topaz Clean 3 10.0
       Topaz DeNoise 5 10.0
       Topaz InFocus 10.0
       Topaz ReMask 3 10.0
       Topaz Star Effects 10.0
       TopazRemaskAutomate NO VERSION
       Torn Edges 12.0
       Twirl 12.0.2
       Underpainting 12.0
       Vanishing Point 12.0
       Variations 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Viveza 2 2.0.2.10710
       VueScan 1.0.00
       Water Paper 12.0
       Watercolor 12.0
       Wave 12.0.2
       Web Photo Gallery 12.0 (12.0x001)
       WIA Support 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Wind 12.0.2
       Wireless Bitmap 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       ZigZag 12.0.2
    Plug-ins that failed to load: NONE
    Flash:
       onOne
       Flash
       Mini Bridge
       Access CS Live
       CS News and Resources
       Flash
       Kuler
       CS Review
    Installed TWAIN devices: NONE

Maybe you are looking for