Counting files in a Flder

Hi all,
I have to count the number of files in a folder and their
respectives name in it using flash.Is it possible to do it by JSFL.
can anyone give me samples regarding this.thanks in advance.
Regards,
S.Hidayath

If you are using JSFL (authoring environment),,,,
var folder = fl.browseForFolderURL('SELECT FOLDER');
if (folder!=null) {
var list = FLfile.listFolder(folder, 'files');
fl.outputPanel.trace("There are "+list.length+" files in the
specified folder");
fl.outputPanel.trace("The names of these files are: "+list);
If you only wanted it to find .fla's for example, you would
use:
var list = FLfile.listFolder(folder+'/*.fla', 'files');
I haven't tested this as I am not on a computer with
Flash.

Similar Messages

  • Count files in Directory and the number of files in each sub directory

    Hello,
    I trying write a method which will start at a root of a file and count all the files in that directory. Then count all the files in each sub directory.
    import java.io.File;
    import java.io.FilenameFilter;
    import java.io.IOException;
    public class RunScan {
         * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              File file = new File("/home/robert/count");
              File[] files = file.listFiles();
              traverse(files);
              printfiles();
         private static int totalNumFiles = 0;
         private static int totalNumDir = 0;
         private static int filePerDir = 0;
         private static int subDir = 0;
         private static void traverse(File[] files) {
    for(int i = 0; i < files.length; i++) {
    if(files.isDirectory()) {
         totalNumDir++;
         printDir(files[i].toString());
         traverse(files[i].listFiles());
    totalNumFiles++;
    filePerDir++;
         private static void printfiles(){
              System.out.println("total files "+ (totalNumFiles));
         System.out.println("totls sub dir "+ totalNumDir);
         private static void printDir(String dirName){
              System.out.println("Total Files in "+dirName+" "+filePerDir);
              filePerDir = 0;

    Hint: Google "visitor pattern." This gives clues how to build a re-usable solution that can you use for future traversals that do things other than just file counts. Here's a teaser of an simple interface:
    public interface TreeVisitor {
    * Processes a single file or directory. <em>Tip:</em> If you want to track the number of
    * items processed, this function is the best place to update a counter.
    * Implementors of this method should not throw checked exceptions.
    * @param item The file or directory process.
    * @param depth Number of levels below top of traversal tree (0 = top of tree).
    public void visit(File item, int depth);
    }

  • Count files in JDeveloper

    I need to count files in all workspace. For example. I need to know how many jsp files are. Or how many .js files are.
    Do you know how can I do this easier?

    Hi,
    there is no such functionality in JDeveloper
    Frank

  • Copy, count files, test path, process indicator and System.IO.FileInfo

    I found this, sctipt, that I try to re-write.
    As it is, it creates sub folders in the targetfolder, which I found out how to stop it from, by deleting the "\" backslash sign in line 9.
    But what I also want is that subfolders if such should exist, also gets copied from $source to $target folder, as of now this doesn't happen. Reason why I chose to try to re-write the script is basically, I can read what it does and I like all the flashy
    Things like counting and that it shows the percentage of the processbar AND the processbar :).
    I just don't now how to re-write it proberly. By the way nothing should be re-named in the targetfolder every thing from sourcefolder should be "as is" in the sourcefolder.
    $SourceFolder = "C:\Color1\TRID"
    $targetFolder = “C:\Color2\TRID”
    $numFiles = (Get-ChildItem -Path $SourceFolder -Filter *.*).Count
    $i=0
    clear-host;
    Write-Host ‘This script will copy ‘ $numFiles ‘ files from ‘ $SourceFolder ‘ to ‘ $targetFolder
    Read-host -prompt ‘Press enter to start copying the files’
    Get-ChildItem -Path $SourceFolder -Filter *.* | %{
    [System.IO.FileInfo]$destination = (Join-Path -Path $targetFolder -ChildPath $_.Name.replace(“_”,“\”))
    if(!(Test-Path -Path $destination.Directory ))
    New-item -Path $destination.Directory.FullName -ItemType Directory
    [int]$percent = $i / $numFiles * 100
    copy-item -Path $_.FullName -Destination $Destination.FullName
    write-Progress -Activity “Copying … ($percent %)” -status $_ -PercentComplete $percent -verbose
    $i++
    Write-Host ‘Total number of files read from directory ‘$SourceFolder ‘ is ‘ $numFiles
    Write-Host ‘Total number of files that was copied to ‘$targetFolder ‘ is ‘ $i
    Read-host -prompt “Press enter to complete…”
    clear-host;

    @Jaap
    Yes I want to overwrite existing files, since backup is taken care of by another script.
    Now I encounter this error when trying to use your write-progress example:
    Get-ChildItem : A parameter cannot be found that matches parameter name 'Files'.
    At line:3 char:51
    + $Files = Get-ChildItem -LiteralPath $SourceFolder -Files
    +                                                  
    ~~~~~~
        + CategoryInfo          : InvalidArgument: (:) [Get-ChildItem], ParameterBindingException
        + FullyQualifiedErrorId : NamedParameterNotFound,Microsoft.PowerShell.Commands.GetChildItemCommand
    cmdlet ForEach-Object at command pipeline position 1
    Supply values for the following parameters:
    Process[0]:
    Here is the script as I thought it should look like:
    $SourceFolder = "C:\Color1\TRID"
    $targetFolder = “C:\Color2”
    $Files = Get-ChildItem -LiteralPath $SourceFolder -Files
    $NumberofFiles = $Files.Count
    $Files | ForEach-Object -Begin {
    $FilesCopied = 0
    -progress{
    Write-Progress -Activity "Copying Files..." -PercentComplete [int](($FilesCopied/$NumberofFiles)*100) -CurrentOperation "$FilesCopied files copied out of total of $NumberofFiles files" -Status "Please wait."
    "$((Get-ChildItem -Recurse -File -LiteralPath $SourceFolder).Count) files will be copied to $targetfolder"
    Read-Host -Prompt 'Press Enter to Start Copying...'
    Copy-Item $SourceFolder -Recurse -Destination $targetFolder -Force -verbose
    $FilesCopied++
    # What is wrong now?

  • Query Count files under Specific folder in Sccm?

    Hello!
    I try to create a Query in sccm. There I want to count files under a specific folder. If folder on the client have less than 35 files, show the name of that computer. How should I begin to create that Query? Should I use criteria Software files Count?
    Greetings
    Emil

    I think for this task you will find it easier to create a report instead. Queries are based on WQL which has some limitations.
    Kent Agerlund | My blogs: blog.coretech.dk/kea and
    SCUG.dk/ | Twitter:
    @Agerlund | Linkedin: Kent Agerlund |
    Mastering ConfigMgr 2012 The Fundamentals

  • Default counts file is corrupt

    When I restarted my MacBook my mail asked me to create a new account ( as if first time opening ), however I had used it for a few months. On looking at the logs I found it was a problem with the default counts file, when I opened it it was corrupt (see below). Does anyone know of a way of sorting this out, all other mail files appear to be fine.
    Cheers
    DefaultCounts
    Â|zÈ·ˇæ≥,+e~e∞Ây”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz —¨kûœE.ly”ùz

    PList edit pro can not open this file giving the following error
    There was an error reading the property list file (The file /Users/ben/Desktop/DefaultCounts could not be opened because an error occurred parsing the file.
    Conversion of data failed. The file is not UTF-8, or in the encoding specified in XML header if XML.).
    Would you like to open the raw text of the file instead?
    And the raw data is as above???????????????

  • Count files in a dirctory using plsql

    Hi ,
    Currently i am using a shell script that counts the number of files in unix level directory that had xml files and load to the table as CLOB using the sql loader.
    Now i want to use plsql l to count files and then load using insert the script.I am able to use insert statement but not have any idea to count files at unix level using plsql.
    Please give me some ideas.
    Thanks in Advance.
    Rede

    Neither does anyone else... <<LOL
    I've found this one quite some time ago...
    -- How to get a listing of files in a directory using PL/SQL has got to be one of the most
    -- popular questions asked by Oracle developers. Prior to 10g, DIY solutions included the
    -- sophisticated, using either Java (8i onwards) or External Procedures (8 onwards),
    -- or the clunky (pipe servers and shell scripts from 7 onwards)
    -- However in 10g there is a new procedure hidden away in the undocumented
    -- DBMS_BACKUP_RESTORE package. It's called searchfiles, which is a bit of a giveaway
    -- and appears to have been introduced for the new backup features in 10g, as RMAN
    -- now needs to know about files in the recovery destination.
    -- Calling this procedure populates an in memory table called X$KRBMSFT, which
    -- is one of those magic X$ tables, the only column which is of relevance to us
    -- is FNAME_KRBMSFT which is the fully qualified path and file name.
    -- This X$ table acts in a similar fashion to a global temporary table in that it's contents
    -- can only be seen from the calling session. So two sessions can call searchfiles and each
    -- can only see the results of their call (which is extremely useful).
    -- The code sample below will only really run as SYS, due to the select from X$KRBMSFT, it's
    -- just intended as a demo. The first two parameters in the call to searchfiles are
    -- IN OUT so must be defined as variables, even though the second parameter is of no consequence
    -- to us and should be left as NULL. Even though they are IN OUT, testing shows they don't
    -- appear to change.
    -- Updated 29/05/2007
    -- The first parameter is the string to search for, in much the same format as you would pass
    -- in a call to dir (Windows) or ls (Unix). However, on some platforms and versions
    -- passing in a wildcard or anything other than a directory name will result in an empty X$KRBMSFT.
    -- The trick here is to simply pass a valid OS directory name - the entire listing of that directories
    -- contents will now appear in X$KRBMSFT, which can then be filtered using LIKE.
    -- This procedure appears to raise no exceptions, passing an invalid search string, such
    -- as a non-existant path or one with no permissions, simply results in an empty X$KRBMSFT.
    -- However, if the database parameter db_recovery_file_dest is not set, you will get ORA-19801.
    -- Interestingly, this procedure recursively searches sub directories found in the search string.
    -- So passing a string of 'C:\windows' (for example) populates X$KRBMSFT with not only the files found
    -- in that directory but all the files found in all directories beneath, such as C:\windows\system32.
    -- As X$KRBMSFT is an in memory table, you have been warned! Calling this procedure on a directory
    -- with thousands of sub directories and files has the potential to blow out memory
    -- The way forward is to wrap this functionality in a package, perhaps using
    -- directory objects instead and checking access priviliges, creating a view based on X$KRBMSFT,
    -- maybe even allowing/disallowing subdirectory traversal and limiting memory usage search size.
    -- I see another project coming, stay tuned for XUTL_FINDFILES!
    -- This code has been tested and works as intended on Oracle 10104 EE.
    -- Get this tip and others, along with useful PL/SQL utilities at
    -- www.chrispoole.co.uk
    DECLARE
    pattern VARCHAR2(1024) := '/u01/oracle/admin/SID/udump';
    ns VARCHAR2(1024);
    BEGIN
    SYS.DBMS_BACKUP_RESTORE.searchFiles(pattern, ns);
    FOR each_file IN (SELECT FNAME_KRBMSFT AS name FROM X$KRBMSFT WHERE FNAME_KRBMSFT LIKE '%.trc') LOOP
    DBMS_OUTPUT.PUT_LINE(each_file.name);
    END LOOP;
    END;
    DECLARE
    pattern VARCHAR2(1024) := 'C:\temp\*';
    ns VARCHAR2(1024);
    BEGIN
    SYS.DBMS_BACKUP_RESTORE.searchFiles(pattern, ns);
    FOR each_file IN (SELECT FNAME_KRBMSFT AS name FROM X$KRBMSFT) LOOP
    DBMS_OUTPUT.PUT_LINE(each_file.name);
    END LOOP;
    END;
    /Thomas

  • Choose folder and count files : ALIAS returned causes problem

    Hello,
    I have a basic choose folder command and I want to count files contained in the returned folder, I also want to do other things within that folder afterwards.
    Alas, Applescript returns what it calls an ALIAS to the" choose folder" command, so that it can't count anything, it can't even give its REAL name ...
    How could I get the REAL folder as a result , count its items, get its path, instead of that poorly documented ALIAS I can't make anything with ?
    Thanks very much. I've been digging for a while now.

    Use a construct such as:
    set this_folder to choose folder
    tell application "Finder"
    count items of (folder this_folder)
    end tell
    (47355)

  • Counting files in a folder and showing results in an alert window.

    Hello all.
    I would like to get the script to count the number of files in a selected folder.
    I have a UI where there are browse, ok and cancel buttons.
    I wanted the OK button to show the number of jpeg files in the selected folder. If no folder is selected, and the OK button is pressed, it would prompt the user to select a folder before pressing the OK button.
    Thanks!

    all you need to learn scripting is in the "JavaScript Tools Guide", you're making some progress but reading that and following the samples will make things clear and speed the learning proccess up.
    if you look at your code there's only one function, it is called when the Browse button is clicked. See how it is constructed and write another similar function for the Ok button, in there read the contents of the label box and create a folder with that path, then call the function to read the files.
    dlg.Panel1.okBtn.onClick = function (){
       selectedFolder = new Folder(decodeURI(dlg.Panel1.Path.text));
       if (selectedFolder.exists)
            doSomething (selectedFolder);
       else
            alert("select a folder first...");
    dlg.center(); //center dialog box on screen
    dlg.show(); //show dialog box
    function doSomething(folder)
            files = folder.getFiles();
            alert(files.length + " Files in selected Folder");
            alert(files);

  • How to count files in a folder and subfolders of the folder.

    Hello everyone,
    I'm having a difficulty with countin files in a Regular folder and subfolders of the folder. I've tried to use SI_ANCESTOR  in a query; however, it gives me innacurate results.
    I used this hierarchy to create the code below, and it works to count all the files:
    Folder A ---> Folder B( subFolder of A)  -
    > Folder C(subFolder of B)  
    //get folder A
    IInfoObjects regFolders = infoStore.query ("SELECT * FROM CI_INFOOBJECTS WHERE SI_KIND='Folder' AND SI_PARENTID=0 AND SI_NAME!='User Folders' Order by SI_NAME");
    IFolder regFolder = (IFolder) regFolders.get(0);     
    //get files from Folder A     
    IInfoObjects rFiles = infoStore.query ("SELECT * FROM CI_INFOOBJECTS WHERE SI_PROGID !   = 'CrystalEnterprise.Folder'   AND SI_PARENTID=" + regFolder.getID() );
    ilesCount += rFiles.size();
    int subCntr=0;
    nt subCntr2=0;
      //get folder B      
    IInfoObjects rSubFolders = infoStore.query ("SELECT * FROM CI_INFOOBJECTS WHERE SI_PROGID = 'CrystalEnterprise.Folder' AND SI_PARENTID=" + regFolder.getID() );
    //get files from subFolders of Folder A
    while (subCntr < rSubFolders.size())
              IInfoObject subFolder=(IInfoObject)rSubFolders.get(subCntr);
              IInfoObjects subFiles = infoStore.query ("SELECT * FROM CI_INFOOBJECTS "
          + " WHERE SI_PROGID != 'CrystalEnterprise.Folder'" AND SI_PARENTID=" + subFolder.getID() );
             filesCount += subFiles.size();
             //get subFolders of Folder B                   
             IInfoObjects rSubFolders2 = infoStore.query ("SELECT * FROM CI_INFOOBJECTS WHERE SI_PROGID = 'CrystalEnterprise.Folder' AND SI_PARENTID=" + subFolder.getID() );
                         //get files from subFolders of Folder B
         while (subCntr2 < rSubFolders2.size())
              IInfoObject subFolder2=(IInfoObject)rSubFolders2.get(subCntr2);
              IInfoObjects subFiles2 = infoStore.query ("SELECT * FROM CI_INFOOBJECTS "
                   + " WHERE SI_PROGID != 'CrystalEnterprise.Folder'  AND SI_PARENTID=" + subFolder2.getID() );
                                               filesCount += subFiles2.size();
               subCntr2++;
              subCntr++;
    As you can see, the code is too complicated, and what if folder C has subFolder?
    I'm guessin maybe recursion would be one way to got, but I'm not really good with it, so I was wondering if anyone has any idea on how to go about doing it.
    Thank you,

    Hi,
    For detailed information, please refer to the BI 4.0 developers guide here.
    You can find the section "Setting up the development environment" in developers guide that have every single instruction to execute a java code specific to BI 4.0 environment.
    Also, here are the instructions for BO 3.1 environment:
    To configure a WAR file for a J2EE application that uses the BusinessObjects Enterprise XI 3.0 and 3.1 Java SDK, complete these steps:
    Create a lib folder in the WAR file's WEB-INF folder.
    Copy the Enterprise XI 3.0 or 3.1 Java SDK JAR files from the appropriate location below to the WAR file's WEB-INF\lib folder:
    Windows:
    ...\Program Files\Business Objects\common\4.0\java\lib
    UNIX:
    <businessobjects_root>/java/lib
    Copy the log4j.jar file from the appropriate location below to the WAR file's WEB-INF\lib folder:
    Windows:
    ...\Program Files\Business Objects\common\4.0\java\lib\external
    UNIX:
    <businessobjects_root>/java/lib/external
    Copy the entire crystalreportviewers12 folder from the appropriate location below to the WAR file's root folder.
    Windows:
    ...\Program Files\Business Objects\common\4.0
    UNIX:
    <businessobjects_root>/enterprise12/JavaSDK
    Open the web.xml file located in the WAR file's WEB-INF folder.
    Specify the location of the utility files used by the report viewers contained in the crystalreportviewers12 folder by inserting the following code below the <display-name> and <description> tags but within the <webapp> tag definition:
    <context-param>
    <param-name>crystal_image_uri</param-name>
    <param-value>/BOXIR3/crystalreportviewers12</param-value>
    </context-param>
    <servlet>
    <servlet-name>CrystalReportViewerServlet</servlet-name>
    <servlet-class>com.crystaldecisions.report.web.viewer.CrystalReportViewerServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>CrystalReportViewerServlet</servlet-name>
    <url-pattern>/CrystalReportViewerHandler</url-pattern>
    </servlet-mapping>
    Deploy the WAR file to the J2EE application server.
    You are now able to run an application using the BusinessObjects Enterprise XI 3.0 and 3.1 Java SDK on a J2EE web application server.
    Hope it helps.
    Regards,
    Anchal

  • How to count files in a folder

    Hello!
    I have a folder with .txt files. If the file name is STRING i need to count all .txt files whose file names contain "STRING".
    For example, if there are STRING.txt, STRING1.txt,STRING2.txt.... in the folder, i need to find out how many of .txt files are there, where substr(filename,0,6)='STRING'
    How can i do this?
    Cheers
    A.

    if it's windows, then this will count the files
    for /f "usebackq tokens=1,2" %i in ( `dir STRING` ) do if '%j'=='File(s)' set file_cnt=%i
    [pre]
    the variable "file_cnt" will have the answer. 
    or the "set" command above could just be an "echo". 
    and of course, in order to do this from pl/sql, you'll need java. 
    you could even change the "set" to an "exit", and the
    file count will be returned as the exit status.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Java Package count files

    Hi,
    I have a java package which contains several java classes.
    Package name Util
    Contains lets say 3 Classes but further classes could be added in the future. I need to know how many classes are in this package.
    So im wondering is it possible to a count of the number of classes/files in a package and save this to a variable.

    So im wondering is it possible to a count of the
    number of classes/files in a package and savethis
    to
    a variable.NoWell not easily anyway. You could count the number of
    class files in a given directory or something.
    @lunny,
    I can think of no reason why this would be something
    you would want to do. Could you please give more
    information on why you think this is something you
    want/need to do?Ofcourse.
    I am writing a program that has a different class file for every year so runs different for every year.
    At the start of the program there is a drop down box listing the different years. For every year there is a respective class File. At the moment there is 3 class files / 3 years. Lets say I decided to add another one. I would have to add my 4th class file to my java package but also change my form to display 4 years.
    What I would like to do is before i display the form is pick up the number of java files in package (which would tell me the number of years) and then I can use this to display X number of options in form.

  • Count files in a folder

    I want to count the files in a volume. This will tell me how many pictures that i have then as certain actions happen it will automatically add them up for me. First step is finding the corect syntax for the items.

    The problem with the above methods is that they could be counting folders/text/exe files etc.
    You can control what you want to count with something like this...
    app.document.deselectAll();
    alert(app.document.getSelection("jpg,pdf,tif").length);
    The above will only count jpg, pdf and tif files.

  • Count files that start with a certain letter

    I need a simple script to give me a count of the files in a certain folder that start with "A" or some other character that I might choose.
    I tried this but got an error
    count every file name starts with "A" of folder ProofsOutFolder
    Thanks for the help.

    You can also approach it this way...
    <pre style="width:630px;height:auto;overflow-x:auto;overflow-y:hidden;"
    title="Copy this code and paste it into your Script Editor application.">set theFolder to choose folder
    set theChar to text returned of ¬
    (display dialog "Enter Search Character:" default answer "A")
    do shell script "find " & quoted form of POSIX path of theFolder & ¬
    " -type f -name '" & theChar & "*'|awk 'END{print NR}'"</pre>
    Just another option to try out.

  • Finder counts files incorrectly

    In finder, when I get info on a folder of files it indicates one too many files. If I count them, in this case there are 26 files,
    finder info tells me there are 27 in the folder. This is a problem when I verify or manage photos for a client.
    How do I fix this?

    when I paste it in and run I get an apple script error.
    tell application "Finder" to quit
    if (do shell script "defaults read com.apple.finder AppleShowAllFiles") is "1" then
    do shell script "defaults write com.apple.finder AppleShowAllFiles 0"
    else
    do shell script "defaults write com.apple.finder AppleShowAllFiles 1"
    end if
    delay 2
    tell application "Finder" to run

Maybe you are looking for

  • Extremely simple photo gallery crashes after few tens of pics viewed... (ipad)

    Images are JPG, 300 - 350kb each, the thing crashes every time! not to mention that in future it was planned to pload few swf's instead of few jpgs there... package     import flash.display.*;     import flash.geom.Matrix;     import flash.utils.*;  

  • My iTunes ext/int drive question a little more clear:

    How do you fully restore a back up of itunes? i have one fully saved on an external drive called 'backup' and it was from february, but i have only added some cd's since then, so they can be re-added later. So how do i clear what is in my internal ha

  • Business package for leave approval in BlackBerry

    Hello We just want to know is there any Business Package available for Leave Approval using BlackBerry Handsets.We are using SAP Netweaver 2004s having EP 7.0 and R/3 system is ECC-6. Regards Debasish

  • Weblogic managed service not starting up after Windows restart

    Hi All I have an issue with start up of Managed instances configured as windows service. When we reboot the machine the services which are configured to be automatically start are not starting up. When I manually start them they would just run fine.

  • Remove Gender "Unknown" in ESS ERP 2004

    Hi , We try to remove the Gender "Unknown" in the ESS WebDynpro screen, it seems to be dynamical been generate from some value list . We did try to remove from the back-office in the domain GESCH "Gender key" , that changed the back-office, but still