I need ONE file ONLY

After publishing a software simulation I get a folder created
with six files. One html file 2k. One Flash Movie file .swf 2867kb.
Three Fullmotion.swf files(537kb,2430kb and 244kb, respectively).
Finally, one .js 1kb.
When I publish the .swf without the Fullmotion.swf's then the
file doesn't display properly. How do I get just ONE FILE
ONLY!!!!!!! I am using Captivate 3.

Hi John
See if the thread linked below helps you achieve your goal.
Click
here to read the thread
Cheers... Rick

Similar Messages

  • In Linux, my firefox uses the /etc/firefox profile for all users, now I need ONE user only to start with their own profile, I'm struggling to achieve this, please help!

    In Linux, my firefox uses the /etc/firefox profile for all users, now I need ONE user only to start with their own profile, I'm struggling to achieve this, please help!

    .Jake. wrote:
    I forgot to say that the hard drive has not been used yet...
    So you have no backup of your data at all?
    Pete

  • Need one file regarding 11.5.10.2?

    Hi All,
    As 11.5.10.2 has been removed from edelivery , I need one file that is data_dat216.zip from disk6, oraAppsDb because it has been corrupted in my media and I am unable to install the software, can anybody help me and if share this file his/her PC so I can download this file or any other way where I can get this file.Thanks
    Edited by: EBSNewBie on Oct 19, 2008 9:15 PM

    Hi,
    Please send me you email to [email protected]
    Thx,
    Ronald

  • ADF Logging ,need one file per application

    Hi , I used the ADF logging api and I saw all log information on AdminServer.log   . I need to have one file per application , ho it is possible ?
    thanks

    Hey,
    You can follow the below link
    http://adfandjdeveloper.blogspot.in/2013/07/use-adf-logger-in-adf-application.html
    Thanks

  • Build one file only

    I need build only the file, in my case a servlet, that i test in this moment.
    Now i rebuild all the application files when i modified only one.

    Hi,
    Right now you cannot build only one servlet in a webapp. This is an known issue and there is an enhancement request already in place.
    Thanks a lot,
    Vimala

  • Export to PDF yields 95% reduction of one file, only 30% of another?

    I've got two separate projects.
    1. Coffee table book, 92 pages, 15 inch wide pages, large picture, even full page, on 70 % of the pages. Page document is 292 megs. PDF is 10.1 megs.
    2. Storyboard, 104 pages, 11.5 inch wide pages, 3 small pics on each page. Page document is 300 megs. PDF is 160 megs.
    Why might I be getting this odd discrepancy? There are perhaps twice the number of pics in the storyboard, but they are 1.7 inch across (as opposed to the 15 inch across pics in the coffee table book).
    A mystery to me..
    Ben

    Hi Dennis,
    Checked it twice .... to make SURE it was 'good' both times.
    I'm trying to think what might be different. The coffee table book had all 300 dpi pics (big ones). The storyboard had all 72 dpi pics (small ones). The text was about the same in both.
    Perhaps lunch and a cup of espresso will make this clearer to me.

  • How to make one file?

    I have basically 2 problems here
    a)When I do generate a signature using the enduser's privatekey,,I will be ending up with two files one signature file and other the original document,,I need one file which contains the signature as well as the original doc in readable format and also i can authenticate doc using the same signature presemt in that file.
    b)In PKI scenario shud i encrypt the doc(data) without signature or shud i encrypt the doc as well as the signature also?
    c)If i have the signature as separate entity how can i find out publickey attributes or any information of the public key using the signature that is there?
    Plz do repond asap with exaples if possible,
    thnx in advnce
    Subhash

    Yup...I need one more help i.e I was able to encrypt/decrypt using assymtric and symetric,,the flow was like this...I had a key pair...
    I generate a DES key then I create a cipher by the data string,,then i used to encrypt the des key and store it in the database...then again at the server i used to decrypt the symmetric key using the private key from the key pair and then descrypt the data...it was all well and fine..
    now instaed of string i tried MSword of MSEXCELL i wasnt able to do at ll..some suggested to do padding so i tried des/cbc/pkcs5padding...it was encryting well but again i was stuck while decrypting,,it was asking for IV parametr and all,,i tried a lot but wasnt out of it...
    now my question is shud i include the getIv byte even in the encrypted file also...???
    i wud like to paste the code,,plz help me...
    encryption part is
    import java.io.*;
    import java.security.*;
    import java.security.spec.*;
    import java.security.spec.X509EncodedKeySpec;
    import java.security.interfaces.RSAPrivateKey;
    import java.security.interfaces.RSAPrivateCrtKey;
    import java.security.interfaces.RSAKey;
    import java.io.*;
    import java.util.*;
    import java.io.BufferedInputStream;
    import java.io.DataInputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.sql.*;
    import java.math.BigInteger;
    import java.security.cert.CertificateFactory;
    import java.security.cert.X509Certificate;
    import java.security.interfaces.RSAPrivateKey;
    import java.security.interfaces.RSAPublicKey;
    import java.security.Key;
    import java.security.KeyFactory;
    import java.security.Security;
    import java.security.spec.KeySpec;
    import java.security.spec.PKCS8EncodedKeySpec;
    import javax.crypto.Cipher;
    import javax.crypto.KeyGenerator;
    import javax.crypto.SecretKey;
    import javax.crypto.SecretKeyFactory;
    import javax.crypto.spec.DESKeySpec;
    import org.bouncycastle.jce.provider.BouncyCastleProvider;
    public class FileEncrypt
    byte[] encryptedDESKey;
    // encryptPart variables
    KeyGenerator kg;
    Key key;
    Cipher cipher;
    RSAPublicKey rsaPublicKey;
    Cipher encryptCipher;
    // decryptedPart variables
    RSAPrivateKey priv;
    Cipher decryptCipher;
    byte[] decryptedDESKey;
    SecretKeyFactory skf;
    DESKeySpec desKeySpec;
    SecretKey sk;
    Cipher desCipher;
    public static void main(String args[]){
         String path = "C://USB//test.doc";
         String fileName = "C://USB//ENCtest.doc";
    FileEncrypt pk1 = new FileEncrypt();
    String encryptedPassword = pk1.encryptPart(path,fileName);
         Connection con = null;
    Statement stmt = null;
    ResultSet rs = null;
    //XlEncrypt tt = new XlEncrypt();
    TxtFile profile = new TxtFile();
    try{
    DriverManager.registerDriver (profile.getDriver());
    con =DriverManager.getConnection (profile.getURLName(), profile.getUserName(), profile.getPassword());
    stmt = con.createStatement();
    con =DriverManager.getConnection (profile.getURLName(), profile.getUserName(), profile.getPassword());
    stmt = con.createStatement();
    stmt.executeUpdate("insert into test (pki) values('"+encryptedPassword+"')");
    }catch (SQLException e) {
    System.out.println (e.getMessage() + "Problem in getting connections");
    private String encryptPart(String path,String fileName){   
    Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider());
    try{
    // create des key
    kg = KeyGenerator.getInstance("DES");
    key = kg.generateKey();
    // encrypt some data
    //cipher = Cipher.getInstance("DES/ECB/PKCS5Padding");
    cipher = Cipher.getInstance("DES");
    cipher.init(Cipher.ENCRYPT_MODE,key);
    //read in cert from file and get public key and decrypt des key
    rsaPublicKey = getRSAPublicKey("buyer");
    encryptCipher= Cipher.getInstance("RSA","BC");
    encryptCipher.init(Cipher.ENCRYPT_MODE,rsaPublicKey);
    encryptedDESKey = encryptCipher.doFinal(key.getEncoded());
         FileEncrypt tt = new FileEncrypt();
    String sd = tt.hexEncode(encryptedDESKey);
    int c;
    FileInputStream fis = new FileInputStream(path);
    StringBuffer fileBuffer = new StringBuffer();
    while((c=fis.read())!=-1){
    fileBuffer.append((char)c);
    String fileString = fileBuffer.toString();
    byte[] encword = cipher.doFinal(fileString.getBytes());
    String outFile = tt.hexEncode(encword);
    DataOutputStream out2 = new DataOutputStream(new BufferedOutputStream(new FileOutputStream(fileName)));
    out2.writeBytes(outFile);
    out2.close();
    return sd;
    }catch(Exception e)
    System.out.println("<ERROR>\nIn encryptPart\n"+e.toString()+"\n</ERROR>");
    return null;
    /** This array is used to convert from bytes to hexadecimal numbers */
    static final char[] digits = { '0', '1', '2', '3', '4', '5', '6', '7',
    '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
    * A convenience method to convert an array of bytes to a String. We do
    * this simply by converting each byte to two hexadecimal digits. Something
    * like Base 64 encoding is more compact, but harder to encode.
    public static String hexEncode(byte[] bytes) {
    StringBuffer s = new StringBuffer(bytes.length * 2);
    for(int i = 0; i < bytes.length; i++) {
    byte b = bytes;
    s.append(digits[(b & 0xf0) >> 4]);
    s.append(digits[b & 0x0f]);
    return s.toString();
    * A convenience method to convert in the other direction, from a string
    * of hexadecimal digits to an array of bytes.
    public static byte[] hexDecode(String s) throws IllegalArgumentException {
    try {
    int len = s.length();
    byte[] r = new byte[len/2];
    for(int i = 0; i < r.length; i++) {
    int digit1 = s.charAt(i*2), digit2 = s.charAt(i*2 + 1);
    if ((digit1 >= '0') && (digit1 <= '9')) digit1 -= '0';
    else if ((digit1 >= 'a') && (digit1 <= 'f')) digit1 -= 'a' - 10;
    if ((digit2 >= '0') && (digit2 <= '9')) digit2 -= '0';
    else if ((digit2 >= 'a') && (digit2 <= 'f')) digit2 -= 'a' - 10;
    r[i] = (byte)((digit1 << 4) + digit2);
    return r;
    catch (Exception e) {
    throw new IllegalArgumentException("hexDecode(): invalid input");
    // encryptPart private method
    private RSAPublicKey getRSAPublicKey(String userName){
    try{
    FileInputStream fis = new FileInputStream("C:/certificates/buyer/buyer.crt");
    BufferedInputStream bis = new BufferedInputStream(fis);
    CertificateFactory cf = CertificateFactory.getInstance("X.509");
    X509Certificate cert = null;
    while(bis.available() > 0){
    cert = (X509Certificate)cf.generateCertificate(bis);
    return (RSAPublicKey)cert.getPublicKey();
    catch(Exception e){
    System.out.println("<ERROR>\nTrying to get Public Key from cert\n"+e.toString()+"\n</ERROR>");
    return null;
    decryption part is
    import java.io.*;
    import java.security.*;
    import java.security.spec.*;
    import java.security.spec.X509EncodedKeySpec;
    import java.security.interfaces.RSAPrivateKey;
    import java.security.interfaces.RSAPrivateCrtKey;
    import java.security.interfaces.RSAKey;
    import java.io.*;
    import java.util.*;
    import java.io.BufferedInputStream;
    import java.io.DataInputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.sql.*;
    import java.math.BigInteger;
    import java.security.cert.CertificateFactory;
    import java.security.cert.X509Certificate;
    import java.security.interfaces.RSAPrivateKey;
    import java.security.interfaces.RSAPublicKey;
    import java.security.Key;
    import java.security.KeyFactory;
    import java.security.Security;
    import java.security.spec.KeySpec;
    import java.security.spec.PKCS8EncodedKeySpec;
    import javax.crypto.Cipher;
    import javax.crypto.KeyGenerator;
    import javax.crypto.SecretKey;
    import javax.crypto.SecretKeyFactory;
    import javax.crypto.spec.DESKeySpec;
    import java.io.*;
    import javax.crypto.*;
    import javax.crypto.spec.*;
    import java.security.*;
    import java.security.spec.*;
    import org.bouncycastle.jce.provider.BouncyCastleProvider;
    public class FileDecrypt
    byte[] encryptedDESKey;
    // encryptPart variables
    KeyGenerator kg;
    Key key;
    Cipher cipher;
    RSAPublicKey rsaPublicKey;
    Cipher encryptCipher;
    // decryptedPart variables
    RSAPrivateKey priv;
    Cipher decryptCipher;
    byte[] decryptedDESKey;
    SecretKeyFactory skf;
    DESKeySpec desKeySpec;
    SecretKey sk;
    Cipher desCipher;
    public static void main(String args[]){
         String inputFile = "C://Usb//ENCtest.doc";
         Connection con = null;
    Statement stmt = null;
    ResultSet rs = null;
         TxtFile profile = new TxtFile();
         String var="";
         try {
    DriverManager.registerDriver (profile.getDriver());
    con =DriverManager.getConnection (profile.getURLName(), profile.getUserName(), profile.getPassword());
    stmt = con.createStatement();
    con =DriverManager.getConnection (profile.getURLName(), profile.getUserName(), profile.getPassword());
    stmt = con.createStatement();
    rs = stmt.executeQuery("select pki from test");
    if(rs.next()){
    var = rs.getString("pki");
    }catch (SQLException e) {
    System.out.println (e.getMessage() + "Problem in getting connections");
         System.out.println(var);
         String encSymKey = var;
         FileDecrypt tpk = new FileDecrypt();
    String decryptedPassword = tpk.decryptPart(inputFile,encSymKey);
    //return decryptedPassword;     
    private String decryptPart(String inputFile,String encSymKey)
    try{   
    // get private key from file
    priv = getRSAPrivateKey();
    // decrypted des key
    int c;
    Security.addProvider(new BouncyCastleProvider());
    FileDecrypt t1 = new FileDecrypt();
    byte[] encryptedDESKey1 = t1.hexDecode(encSymKey);
    decryptCipher = Cipher.getInstance("RSA","BC");
    decryptCipher.init(Cipher.DECRYPT_MODE,priv);
    decryptedDESKey = decryptCipher.doFinal(encryptedDESKey1);
    // convert bytes back to des key
    skf = SecretKeyFactory.getInstance("DES");
    desKeySpec = new DESKeySpec(decryptedDESKey);
    sk = skf.generateSecret(desKeySpec);
    // decrypt the encrypted password
    //desCipher = desCipher.getInstance("DES/ECB/PKCS5Padding");
    desCipher = desCipher.getInstance("DES");
                   desCipher.init(Cipher.DECRYPT_MODE,sk);     
    //desCipher.init(Cipher.DECRYPT_MODE,sk);
    FileDecrypt obj1 = new FileDecrypt();
    FileInputStream fis = new FileInputStream(inputFile);
    StringBuffer encryptedFile = new StringBuffer();
    while((c=fis.read())!=-1){
    encryptedFile.append((char)c);
    String encFile = encryptedFile.toString();
    System.out.println(encFile);
    byte[] jk =obj1.hexDecode(encFile);
    String encVar = new String(desCipher.doFinal(jk));
    //String encVar = new String(desCipher.doFinal(jk));
    DataOutputStream out2 = new DataOutputStream(new BufferedOutputStream(new FileOutputStream("C:/usb/dectest.doc")));
    out2.writeBytes(encVar);
    out2.close();
    //System.out.println(new String(desCipher.doFinal(jk)));
    return new String("subhash");
    }catch(Exception e){
    System.out.println("<ERROR>\nIn decryptPart\n"+e.toString()+"\n</ERROR>");
    return null;
    // decryptPart private method
    private RSAPrivateKey getRSAPrivateKey()
    try{
    File keyFile = new File("C:/certificates/buyer/buyerkey.der");
    DataInputStream in = new DataInputStream(new FileInputStream(keyFile));
    byte [] fileBytes = new byte[(int) keyFile.length()];
    in.readFully(fileBytes);
    in.close();
    KeyFactory kf = KeyFactory.getInstance("RSA");
    KeySpec ks = new PKCS8EncodedKeySpec(fileBytes);
    return (RSAPrivateKey)kf.generatePrivate(ks);
    }catch(Exception e){
    System.out.println("<ERROR>\nTrying to get Private Key from file\n"+e.toString()+"\n</ERROR>");
    return null;
    /** This array is used to convert from bytes to hexadecimal numbers */
    static final char[] digits = { '0', '1', '2', '3', '4', '5', '6', '7',
    '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
    * A convenience method to convert an array of bytes to a String. We do
    * this simply by converting each byte to two hexadecimal digits. Something
    * like Base 64 encoding is more compact, but harder to encode.
    public static String hexEncode(byte[] bytes) {
    StringBuffer s = new StringBuffer(bytes.length * 2);
    for(int i = 0; i < bytes.length; i++) {
    byte b = bytes[i];
    s.append(digits[(b & 0xf0) >> 4]);
    s.append(digits[b & 0x0f]);
    return s.toString();
    * A convenience method to convert in the other direction, from a string
    * of hexadecimal digits to an array of bytes.
    public static byte[] hexDecode(String s) throws IllegalArgumentException {
    try {
    int len = s.length();
    byte[] r = new byte[len/2];
    for(int i = 0; i < r.length; i++) {
    int digit1 = s.charAt(i*2), digit2 = s.charAt(i*2 + 1);
    if ((digit1 >= '0') && (digit1 <= '9')) digit1 -= '0';
    else if ((digit1 >= 'a') && (digit1 <= 'f')) digit1 -= 'a' - 10;
    if ((digit2 >= '0') && (digit2 <= '9')) digit2 -= '0';
    else if ((digit2 >= 'a') && (digit2 <= 'f')) digit2 -= 'a' - 10;
    r[i] = (byte)((digit1 << 4) + digit2);
    return r;
    }catch (Exception e) {
    throw new IllegalArgumentException("hexDecode(): invalid input");
    plz do reply asap,,
    bye
    Subhash

  • Reconnect Media - Will only do one file at a time. (all files is checked)

    I found one Google search that said this may be a bug... http://forums.creativecow.net/thread/8/1047891 and it's really bothering me since I have about 500 more media files to connect.
    When I select multiple files in my Project File Browser, right click, hit Reconnect Media... It opens the Reconnect Files window. Then I hit "Locate", navigate to the folder holding the files (Reconnect All files in Relative Path is checked), select the file, confirm, then hit connect... Only one file (the first one selected) reconnects.
    It's worse than that for me, now the file is Connected in my Project File browser, but it still doesn't reconnect in my sequences. So now I have to go in the sequence and right click on the individual clips, and manually reconnect those as well.
    At this point it take 6 plus clicks per file missing, times two because I have to reconnect these clips in the sequences as well... times 500 because that's how many offline files I have.
    My lord, I've already done this to half of the project, I can't do it any more... where am I going wrong or is this a bug? If so, please tell me there is a workaround.
    The file I'm working in is a feature film, so it's huge... I can't start over at this point.
    Thanks for your time!
    -Monty

    The only multiple files it will reconnect are the ones that are already connected.
    I hope I figured it out but need more advice. It may be that the files that won't connect do not have a visible file extension ".mov". How can I get these files to shoe ".mov" at the end of their names without manually renaming them all?
    And the reason this is happening is I was using reference files to edit a movie, now I've been given new hard drives with the final uncompressed footage but same file names for each clip... plus the new hard drives I'm using have different names.
    Thanks for your time!
    -Monty

  • Back up drive only backed up one file?

    I am using a HDDR160E03X external hard drive.  My computer using XP was full of problems so I stripped the C drive thinking everything would be on the HDDR.  I reinstalled the same versions of Windows, Office, etc.  I am almost certain I set it up to back up all files continuously.  Out of hundreds of files a few dozen of which I change constantly only one file was up to date.  All the others were years old versions.  How could one Excel file be updated and all the rest be years old.  I naturally have lost much valuable personal data.  Help please!

    TechnOLIgy wrote:
    Resizing backup disk image from 321.0 GB to 1499.9 GB
    Could not resize backup disk image (DIHLResizeImage returned 35)
    You need to contact ReadyNAS, or check their setup instructions closely.
    The maximum size of the sparse bundle containing those backups got set to 321 GB, which is obviously not large enough.  Time Machine tried to resize it on this backup (to the total size of the volume it's on), but couldn't for some reason.  The NAS apparently won't accept the instruction.
    When you start backing-up to most network locations, Time Machine creates the sparse bundle automatically, and sets the maximum size equal to the size of the volume it's on.  Apparently this NAS doesn't allow that.

  • I am using ibook G4 PPC with mac os x10.4.11. A day before I delete one file from my hard disk by mistake and after that when I restarted my notebook, it's not starting the os. Only that blue screen is there. please, show me how to deal with it.

    I am using an old ibook G4 ppc with mac os x 10.4.11. A day before by default I delete one file and I think it was the startup file of os because after that when I restarted my notebook it's not running the OS only that blue screen is there. This notebook was a gift for me and still it is so close to my heart. I don't wana loose it. Please, help me out.

    Without the install CD, you are hosed.
    What happened to it?
    It is possible to call AppleCare and order a replacement. They will charge you a nominal fee for shipping and handling.
    Allan

  • HT204053 how do i delete a multiple apple id from my account?  I only need one

    how do i delete a multiple apple id from my account?  I only need one and i have two listed

    Hello javyocks,
    Thanks for using Apple Support Communities.
    Concerning the issue with multiple Apple ID's, please look at the following:
    Frequently asked questions about Apple ID
    http://support.apple.com/kb/HT5622
    I have multiple Apple IDs. Is there a way for me to merge them into a single Apple ID?
    Apple IDs cannot be merged. You should use your preferred Apple ID from now on, but you can still access your purchased items such as music, movies, or software using your other Apple IDs.
    If you are wondering how using multiple Apple IDs relate to iCloud, see Apple IDs and iCloud.
    Take care,
    Alex H.

  • How to open a pdf file only in one computer

    I would like to sell pdf publications by allowing  the user to open them only in one computer. I learnt that this has been done  the past when I bought  some publications but I don't know the way to do it. Could you help me?
    thank you
    Marco

    thank you for your support
    Best Regards
    Marco
    Da:     Mylenium <[email protected]>
    Per:    MARCO1 <[email protected]>,
    Data:   09/10/2013 11:09
    Oggetto:        How to open a pdf
    file only in one computer
    Re: How to open a pdf file only in one computer
    created by Mylenium in Downloading, Installing, Setting Up - View the full
    discussion
    You will havwe to sign up for some service that supports rights
    management, use protected PDFs via LiveCyle/ Acrobat Connect or learn how
    to create your own ePub stuff using Digital Publishing Suite. In any case,
    it will probably cost you money upfront before you make any revenue.
    Mylenium
    Please note that the Adobe Forums do not accept email attachments. If you
    want to embed a screen image in your message please visit the thread in
    the forum to embed the image at
    http://forums.adobe.com/message/5746873#5746873
    Replies to this message go to everyone subscribed to this thread, not
    directly to the person who posted the message. To post a reply, either
    reply to this email or visit the message page: [
    http://forums.adobe.com/message/5746873#5746873]
    To unsubscribe from this thread, please visit the message page at [
    http://forums.adobe.com/message/5746873#5746873]. In the Actions box on
    the right, click the Stop Email Notifications link.
    Start a new discussion in Downloading, Installing, Setting Up at Adobe
    Community
    For more information about maintaining your forum email notifications
    please go to http://forums.adobe.com/message/2936746#2936746.
    Il messaggio trasmesso può contenere informazioni di carattere
    confidenziale rivolte esclusivamente al destinatario. Ne è vietato l'uso,
    la diffusione, la distribuzione o la riproduzione da parte di altre
    persone e/o entità diverse da quelle specificate. Nel caso aveste ricevuto
    questo messaggio per errore, siete pregati di segnalarlo immediatamente al
    mittente e cancellare quanto ricevuto.
    This electronic mail transmission may contain confidential information
    addressed only to the person(s) named. Any use, distribution, copying or
    disclosure by any other person and/or entities other than the intended
    recipient is prohibited. If you received this transmission in error,
    please inform the sender immediately and delete the material

  • Only Able To Add One File At A Time From Mapped SharePoint (2013) Drive to Outlook (2010) E-mail

    I am using SharePoint 2013. I have mapped several network drives. When adding files off SharePoint to an Outlook email, I can only add one file at a time. I can add multiple files IF they are not on SharePoint (e.g., stored locally, or on Dropbox); Previously,
    when using SharePoint 2010, I was able to upload multiple files. 
    ANy advice?
    Thanks. 

    Hi,
    There are two methods to add multiple files from SharePoint library to outlook emails:
    Sync SharePoint library to outlook via “Connect to Outlook”, then you will find SharePoint Lists in outlook. Locate the library folder, you could select multiple items and drag them to an email.
    Open SharePoint library via “Open with Explorer”, then you could selected multiple files and drag them to an email.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • PI 7.11 how to pick up only one file at a time in file adapter

    Hi
    Is there a smart way of only picking up one file at a time (for every poll) in a sender file adapter?
    E.g. There are 100 files in the source folder but I only want to pick up 1 of the files every time I poll the source folder in my sender file adapter.
    BR
    Mikael

    Thanks
    I did something like this:
    FOR /F %%I IN ('DIR
    srv145.??????????\reload\files\*.* /B /O:-D') DO (
    echo %%I
    move
    srv145.????????????\reload\files\%%I
    srv145.??????????\DMI\out\nocontentconversion
    exit /B 0

  • IMovie 11 only imports one file at a time

    Recently, aside from the legendary stability issues (decent today, thank you very much) - I am working on a lenghty project with dozens of clips, but in the Import Movies dialog, no matter how many files I select, I only get ONE file. I have to go back and fetch them one at a time. Yes, they are .MOV file, even better, they were EXPORTED with iMovie... so I am reasonably sure it's NOT format issues.
    So with a complex composition, imagine how tedious it is to bring in clips one at a time...

    Recently, aside from the legendary stability issues (decent today, thank you very much) - I am working on a lenghty project with dozens of clips, but in the Import Movies dialog, no matter how many files I select, I only get ONE file. I have to go back and fetch them one at a time. Yes, they are .MOV file, even better, they were EXPORTED with iMovie... so I am reasonably sure it's NOT format issues.
    So with a complex composition, imagine how tedious it is to bring in clips one at a time...

Maybe you are looking for

  • A600 Won't Wake Up - Help!?

    I have an ideacentre a600 that I upgraded to Windows 7 Ultimate.  Randomly, the computer will just go into sleep/hibernate mode and it won't wake up.  I've tried all the usual methods to wake it up, like moving the mouse or hitting keys on the keyboa

  • ALV Grid - Subtotal & total to be shown at the top of the table

    Hi, I am using function module 'REUSE_ALV_GRID_DISPLAY' to display a table, and I count subtotals and total for some fields. The total is always shown at the bottom of the table, and subtotals are always shown after the rows that subtotals are calcul

  • Fat32 cf card - can't delete folders/files

    I have a fat32 formatted compact flash card I am using in my vehicle for mp3 playback. When I delete folders off of this through Finder, Finder shows as if they were deleted, but when you read the card on a Windows machine, or in my vehicle, the fold

  • Mac OS X 10.4 on PowerBook G4

    I have an PowerBook G4 1.33GHz 12.1inch and i have replaced the hardrive becuase the one inside stopped working. When i boot up the computer it has a file with a question mark in it and flashing with the mac logo. When I hold down Option it comes up

  • Mini Power Problem

    My mini (2009, Intel core2 duo, Snow Leopard, up to date) has a power problem. Perhaps it has overheated. It shut down unexpectedly, without warning. I try to start it by pressing the power button. The power light turns on briefly. there is no chime.