IChat Open Network for Downloads?  AKA "Get Files" Option

On AIM There is an option called "get files" where users basically can download anything from your selected folder.
Does ichat have this option?

No.
You have to Send the file by dropping it in the Text chat or On the Buddy's name in the Buddy list.
You get the Dialogue window to Send they get one to Accept.
With a Text chat open the files are always downloaded to the Desktop even if you have Stated different in the IChat preference.
If there is no Text chat open (to that Buddy) the file will go to the place detailed in the Preferences.
Ralph

Similar Messages

  • Hi, I am getting an 'Error 4810 occurred at Sound File Read Open.vi' for the attached wav file (plus many other wav files). Any ideas?

    Hi,
    I am getting an 'Error 4810 occurred at Sound File Read Open.vi' for the attached wav file (plus many other wav files).
    Any ideas?

    No attachment exists.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Is it possible to set an opening date for a password protected file

    Is it possible to set an opening date for a password protected file!
    I want to lock a folder and then have it open on a perticular date not just open with a password so that i am not tempted to open it. Is it possible?

    Yes. Go to the Settings app, and select safari. There will be a section called "Autofill", and you can enable it to save your passwords and auto-fill your personal information taken from the address book. Also, iOS automatically saves all Wi-Fi passwords, so there is no need to save it manually yourself.

  • I have Adobe Design and Web Premium CS6. If I buy adobe CC, can I easily open my for example indesign CS6 files with no complications?

    I have Adobe Design and Web Premium CS6. If I buy adobe CC, can I easily open my for example indesign CS6 files with no complications?

    I cannot imagine any problems in doing so, but you can keep your cs6 installation anyway.

  • How to make the Open/Save dialogue download the text file instead of JSP

    I am currently coding on a JSP program, which searches the database and writes the resultset into a file on the server, and then allows the client to download this tab delimited text file onto their local machine. But I met a problem, when the default Open or Save dialogue appears, it shows that it's trying to download the running JSP file from my local host instead of the newly-created text file. Despite this, when I click OK to either Open or Save the file, a warning dialogue will appear saying: The explorer cann't download this file, it's unable to find this internet site or something like that. I get no error message from the server but I was always told that Javax.servlet.ServletException: getWriter() was already called. What does this mean?
    I guess maybe this is caused by the mix use of outputStreams in my program. I don't know if there is a way to directly read the resultset from the database and then send it through outputStream to the client. My solution is: first create a file on the server to hold the resultset, and then output this file to the client. I did all these in one JSP program: Create file on the server, search database, and then read file and output the contents to client. Is this correct? I attached my code, please feel free to correct any of my mistake? Thanks!
    //global.class is a class dealing with database connection
    <%@ page language="java" import="java.sql.*,java.util.*,java.math.*,java.io.*,ises.*,frmselection.*" %>
    <jsp:useBean id="global" scope="session" class="ises.Global" />
    />
    <!--start to process data-->
    <%
    //get query statement from the session
    String sQuery = "";
    if (session.getAttribute("sQuery")!=null && !(session.getAttribute("sQuery").toString()).equals(""))
    sQuery = session.getAttribute("sQuery").toString();
    String path = "c:/temp";
    String fileName = "temp.TXT";
    File file= null;
    FileOutputStream fo = null;
    PrintStream ps = null;
    try {
         file = new File(path,fileName);
         if(file.exists()) {
         file.delete();
         file.createNewFile();
         fo = new FileOutputStream(file);
         ps = new PrintStream(fo);
    }catch(IOException exp){
         System.out.println("IO Exception: " +exp.toString() );
    java.sql.ResultSet recResults     = null;
    java.sql.Statement STrecResults = null;
    STrecResults = global.getConnection().createStatement();
    recResults = STrecResults.executeQuery(sQuery);
    ResultSetMetaData meta = recResults.getMetaData();
    int columns = meta.getColumnCount();
    String [] tempColumnName = new String[columns];
    String [] ColumnName =null;
    int DisColumns = 0;
    int unDisCol = 0;
    String sLine = "";
    if(recResults.next()) {     //if_1
    for(int n=0;n<columns;n++) {
    String temp = meta.getColumnName(n+1);
    if(!temp.equals("PROJECTID")&&!temp.equals("BUILDINGID")&&!temp.equals("HAZMATPROFILEID")) {
    sLine = sLine + "'" + temp + "'" + " ";
    tempColumnName[DisColumns] = temp;
    DisColumns ++;
    ColumnName = new String[DisColumns];
    }else {
    unDisCol ++;
    }//end for
    for(int i=0;i<(columns-unDisCol);i++) {
    ColumnName[i] = tempColumnName;
    ps.println(sLine);
    do{
    sLine = "";
    for(int n=0;n<(columns-unDisCol);n++) {
    String tempColName = recResults.getString(ColumnName[n]);
    if(tempColName==null) {
    sLine = sLine + "" + " ";
    } else {
         sLine = sLine + "'"+tempColName+"'" + " ";
    ps.println(sLine);
    }while(recResults.next());
    }     //end if_1
    recResults.close();
    recResults = null;
    STrecResults.close();
    STrecResults = null;
    %>
    <!--end of processing data-->
    <!--start of download.jsp-->
    <%
    //set the content type to text
    response.setContentType ("plain/text");
    //set the header and also the Name by which user will be prompted to save
    response.setHeader ("Content-Disposition", "attachment;filename=temp.TXT");
    //Open an input stream to the file and post the file contents thru the servlet output stream to the client
    InputStream in = new FileInputStream(file);
    ServletOutputStream outs = response.getOutputStream();
    int bit = 256;
    try {
         while ((bit) >= 0) {
         bit = in.read();
    outs.write(bit);
    } catch (IOException ioe) {
    ioe.printStackTrace(System.out);
    outs.flush();
    outs.close();
    in.close();     
    %>
    <!--end of download -->

    Thanks. I believe something wrong with this statement
    in my program:
    You are correct there is something wrong with this statement. Seeing how you are doing this in a jsp, not really what they're made for but thats another topic, the output stream has already been called. When a jsp gets compiled it creates a few implicit objects, one of them being the outputstream out, and it does this by calling the response.getWriter(). getWriter or getOutputStream can only be called once, other wise you will get the exception you are experiencing. This is for both methods as well, seeing how the jsp compiles and calls getWriter means that you cannot call getOutputStream. Calling one makes the other throw the exception if called as well. As far as the filename problem in the browser goes I'm guessing that it's in IE. I've had some problems before when I had to send files to the browser through a servlet and remember having to set an inline attribute of some sort in the content-dis header inorder to get IE to see the real filename. The best way to solve this is to get the orielly file package and use that. It is very easy to use and understand and does all of this for you already. Plus it's free. Cant beat that.
    ServletOutputStream outs =
    response.getOutputStream();
    because I put a lot of printout statement within my
    code, and the program stops to print out exactly
    before the above statement. And then I get the
    following message, which repeats several times:
    ServletExec: caught exception -
    javax.servlet.ServletException: getWriter() was
    already called.

  • How to approach for downloading a CSV file?

    I'm running the following query and  QoQ . Could you tell me how should I proceed for the "Download  CSV" file option?
        <!--- QoQ for FIRSTCONN --->
        <cfquery datasource = "XX.XX.X.XX" name="master1">
             SELECT STR_TO_DATE(date_format(Timedetail,'%m-%d-%Y'),'%m-%d-%Y') as FIRSTCONN
                    , COUNT(Timedetail) as FIRSTOccurances
                    , EVENTS
             FROM  MyDatabase
             WHERE EVENTS = "FIRST"
             GROUP BY FIRSTCONN ;
        </cfquery>
        <!--- Detail Query --->
        <cfquery dbtype="query" name="detail1">
            SELECT  *
            FROM master1
            WHERE FIRSTCONN  >= <cfqueryparam value="#form.startdate#" cfsqltype="cf_sql_varchar">
            AND   FIRSTCONN  <  <cfqueryparam value="#dateAdd('d', 1,form.enddate)#" cfsqltype="cf_sql_varchar">;
        </cfquery> 
        <!--- QoQ for SECONDCONN --->
        <cfquery datasource = "XX.XX.X.XX" name="master2">
            SELECT STR_TO_DATE(date_format(Timedetail,'%m-%d-%Y'),'%m-%d-%Y') as SECONDCONN
                   , COUNT(Timedetail) as SECONDOccurances
                   , EVENTS
            FROM  MyDatabase
            WHERE EVENTS = "SECOND"
            GROUP BY SECONDCONN ;
        </cfquery>
        <cfquery dbtype="query" name="detail2">
            SELECT  *
            FROM   master2
            WHERE  SECONDCONN  >= <cfqueryparam value="#form.startdate#" cfsqltype="cf_sql_varchar">
            AND    SECONDCONN  <  <cfqueryparam value="#dateAdd('d', 1,form.enddate)#" cfsqltype="cf_sql_varchar">;
        </cfquery> 
        <cfchart format="flash"  chartwidth="1000" chartheight="500" scalefrom="0" scaleto="50000" xAxisTitle="Dates" yaxistitle="Number of Connections">
             <cfchartseries  query="detail1" type="line" itemColumn="FIRSTCONN" valueColumn="FIRSTOccurances" >
             <cfchartseries  query="detail2" type="line" itemColumn="SECONDCONN" valueColumn="SECONDOccurances" >
             </cfchartseries>
        </cfchart>
    The cfform code I'm using is as follows:
    <cfform format="flash" preloader ="false">
    <cfformgroup type="horizontal">
      <cfinput type="dateField" name="startdate" label="Start Date" width="100" value="#form.startdate#">
      <cfinput type="dateField" name="enddate" label="End Date" width="100" value="#form.enddate#">
      <cfinput name="submitApply" type="submit" value = "Apply">
      <cfinput name="cancel" type="submit" value="Download CSV">
    </cfformgroup>
    Desired Output:
    I have attached the image for the output below. Please find it attached.
    Basically, if a date range is 21June to 21 July. The output must be as shown in the image. (I have omitted THIRDCONN etc for the sake of simplicity in my code).
    Please let me know how should I go about this problem and let me know if I can answer more questions.

    It's not built into the language. Your best bet is probably to put the CSV-Reading logic into its own class.
    Or find one of the thousands of classes that already implement such a thing.

  • How to create a help button for downloading a help file in OA Framework

    Hi all
    I want to create a help button for downloading a help document.Plz suggest me how to do it.
    Thanks
    Bhupendra

    Create a button of type "button",set the destination url property to the place u have kept the file.But ur file should be anywhere in Common_top.If this file is stored as blob u can use messagedownload bean.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Get files options - not very usefull

    I'm building a site which i work on from 2 different pc's, so
    befeore every work on the site, i do synchronize sitewide.
    Then sometimes i get the result - no sync is neccesry - which
    i know is not true, since i've just updated a few files from the
    other pc.
    But most of the time it shows the right files which have been
    updated so i press ok and the files are beeing downloaded to my
    pc(atleast thats what it shows).
    When the d\l proccess is over i compare the files to the
    those on the site, and they do not match - like it never really
    downloaded anything.
    Same error i get when i use the get files button, its shows
    the download proccess, but nothing acctually beeing download.
    Any suggestion?

    I always just select all the files and GET them.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "AirParker" <[email protected]> wrote in
    message
    news:e8l83h$5v3$[email protected]..
    > I'm building a site which i work on from 2 different
    pc's, so befeore
    > every
    > work on the site, i do synchronize sitewide.
    >
    > Then sometimes i get the result - no sync is neccesry -
    which i know is
    > not
    > true, since i've just updated a few files from the other
    pc.
    >
    > But most of the time it shows the right files which have
    been updated so i
    > press ok and the files are beeing downloaded to my
    pc(atleast thats what
    > it
    > shows).
    > When the d\l proccess is over i compare the files to the
    those on the
    > site,
    > and they do not match - like it never really downloaded
    anything.
    >
    > Same error i get when i use the get files button, its
    shows the download
    > proccess, but nothing acctually beeing download.
    >
    > Any suggestion?
    >

  • Which application will open Epson driver download (.sea.hqx file format)?

    I am transitioning from my PowerMac G4 (running OS X 3.9) to a new (to me) Powerbook running Tiger (10.4.8). I have been downloading the drivers for my scanners and printer. The .dmg files opened fine, automatically finding the appropriate application for opening the file. But my Epson scanner driver arrived with a .sea.hqx file format (one which I have been able to open with no problem previously on my PowerMac in Panther). When I click on the file on the desktop, I get a message that says, "There is no default application specified to open the document "epson11019.sea.hqx" Then it gives me the 'choose application' button, but when I click on it, I see nothing I recognize for this purpose. How do I get this task done?
    Powerbook G4   Mac OS X (10.4.8)   1 Gig SDRAM, 80GB HD

    Hello Matt,
    Thanks for your time & energy in helping me to solve this problem. A progress report follows:
    Just to follow up. It looks like it may be easier to
    live with the shortcomings of Expander 11 than try to
    downgrade. The procedure I had to use to downgrade
    was to remove the Stuffit Expander 11 folder from the
    /Applications folder.
    I had already done this, and now have version 10.01 installed.
    I'm not sure if Expander 11
    installs other files or whether I had files left over
    from Expander 10, but I also removed Stuffit related
    files from /Library/CFMSupport and
    /Library/Frameworks.
    I couldn't fine either of these files in my Library.
    I downloaded Stuffit Expander
    10 directly from the ftp site.
    ftp://ftp.stuffit.com/pub/archive/mac/Stuffit_Expander
    /stuffitexp_1000_xinstall.dmg It should be noted
    that this version is PPC only so it would have to run
    under Rosetta on Intel Macs.
    Finally, I had to use a cache cleaner before Stuffit
    Expander 10 would work properly and not assign either
    Script Editor or Automator as the application to open
    .sea files. I used Applejack from the single user
    mode. There are other, more user friendly cache
    cleaners available.
    This user is hardly a techie, so in all cases, I need the most user friendly, reliable application or utility that I am least likely to get myself into further trouble with. So I'd be happy to hear your thoughts on this matter.
    I also take it that there really isn't an alternative to Stuffit Expander for opening these files. Too bad! I see on their website that I am not the only one having problems!
    So for the moment, I am still up a creek without a paddle. Any further suggestions are appreciated!

  • Error using "LDF Database Open.vi" for LDF 2.1 file

    Hi there,
    I use the USB-LIN for a simulation for LIN bus. We had the LDF file of version 2.0 before but now we get a new LDF file which is in version 2.1.
    We used 
    LDF Starter Kit for LIN 1.0.1
    to read the LDF file but it seems that the kit doesn't work any more with the LDF version 2.1.
    It there a workaround for the LDF file with version 2.1.
    Thx,
    Wilbur

    Hi,
    The NI USB-LIN was created to work with the version 1.3 network standard. However, version 2.0 and 2.1 are backwards compatible, so the NI USB-LIN will work with these networks as well.
    there is currently not a plan to update it for LIN 2.1.
    Note: The new features introduced in version 2.0 and 2.1 network standards will not be natively supported with the NI USB-LIN.
    LIN Version 1.3, 2.0, and 2.1 Comparison
    Feature
    Supported by NI USB-LIN
     LIN 1.3
     Yes
     LIN 2.0
     Yes* 
     Enhanced checksum
     Yes
     Off the shelf slave node concept
     Yes*
     NCF format
     Yes*
     Diagnostics and slave node configuration
     Yes*
     Byte arrays
     Yes
    LIN 2.1
     Yes*
    New slave node configuration services
     Yes*
    Slave diagnostics class I-III
     Yes*
    Functional addressing
     Yes*
    Resolution table
     Yes*

  • Wht are the function modules for download upload excel files in bdc.

    hi all,
    this question seems to be silly but i had open office excel files i am getting problems to upload or down loading.  can you tell which function modules can upload or down load open office excel files.
    another dought this is not need full but i need to get some of graphics which are in se78  .
    how can we dowload them from sap.
    thanq,
    rajesh.k

    Hi,
      use  :   CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
       REPORT  YKC_XL_UPLOAD.
    TYPE-POOLS TRUXS.
    TABLES : ZMARA.
    * Selection screen
    PARAMETER P_FILE TYPE RLGRAP-FILENAME DEFAULT
    'C:\Kris\TEST_UPLOAD.xls'.
    TYPES:  BEGIN OF T_TAB,
            MATNR   LIKE ZMARA-MATNR,
            ERSDA  LIKE ZMARA-ERSDA,
            ERNAM  LIKE ZMARA-ERNAM,
            END OF T_TAB.
    DATA :  T_UPLOAD  TYPE STANDARD TABLE OF T_TAB WITH HEADER LINE ,
            WA_UPLOAD TYPE T_TAB,
            IT_RAW TYPE TRUXS_T_TEXT_DATA.  "work table internal table
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          PROGRAM_NAME  = SYST-CPROG
          DYNPRO_NUMBER = SYST-DYNNR
          FIELD_NAME    = 'P_FILE '
        IMPORTING
          FILE_NAME     = P_FILE.
    START-OF-SELECTION.
    * Uploading the data in the file into internal table
      CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
      EXPORTING
    *   I_FIELD_SEPERATOR =
    *   I_LINE_HEADER  = 'X'
        I_TAB_RAW_DATA = IT_RAW
        I_FILENAME     = P_FILE
      TABLES
        I_TAB_CONVERTED_DATA = T_UPLOAD[]
      EXCEPTIONS
        CONVERSION_FAILED = 1
        OTHERS            = 2.
      IF SY-SUBRC NE  0.
        MESSAGE ID SY-MSGID
                TYPE SY-MSGTY
                NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    END-OF-SELECTION.
    * Uploading the data into the database table
      LOOP AT T_UPLOAD INTO T_UPLOAD.
        ZMARA-MATNR = T_UPLOAD-MATNR.
        ZMARA-ERSDA = T_UPLOAD-ERSDA.
        ZMARA-ERNAM = T_UPLOAD-ERNAM.
        INSERT  ZMARA.
    Endloop.
    Tks,
    Krishna

  • File structure for downloads of music files

    I just purchased and downloaded "Enclosure 5" by Harry Partch. This is a 45 track download. Innova has done their best to number the tracks in such away that they stay organized, but Innova failed. I have communicated my dismay to Philip Blackburn at Innova. There are three section to this work, so the resultant AAC files are listed in my library as 1,1,1,2,2,2,3,3,3 and so forth.
    In order to get this music to play in the correct order, I need to re-tag all but the first 13 tracks.
    But the same material at Amazon has the samestructure in the .mp3 download as it does on the CD's. In fact, the downloads are listed as Disc 1, Disc 2, Disc 3. So, that is three folders each with its own files.
    I think that iTunes needs to look at how it does this, in order to make organization in the library better.
    RSM

    Hi camoracer-
    Yes to all. If you look at the "songs" structure for this album, Harry Partch "Enclosure 5", you will see that there are just 45 tracks, with no discrimination or tell-tale sign of organization. And, now, having had to re-tag them, I can tell you that as they sit in iTunes, they are nor in any porper order.
    But, if you look at the same album in Amazon, you will see it presented as three discs. It will download as three folders, and the tracks will be in the right order in the right folder.
    I know that I can re-tag the files, I have needed to do this sometimes even from CD's I rip.
    But I know that Philip Blackburn at Innova tried to get them done right, and they are not right. I took this to Apple's feedback.
    Thanks.
    RSM

  • How to create a hyperlink for download a word file

    Hi,
    In a html page, I would like to provide a hyperlink which points to the word document "myword.doc".
    However this does not work as the brother considers the file as a html text and does not open it with MS word.
    Any help?
    Thanks
    Py

    It doesn't think it's html, unless the server tells the browser the content type is text/html, and I highly doubt that, unless you are not linking to the file directly, but linking to a JSP page or servlet which is actually returning the file. In which case, set the content type for the response to the proper type for the file.

  • How do I install the newest version of itunes? It says that i need the latest version of mac osx but when i check for downloads i get nothing.

    My Mac will not let me download any new updates. I have Mac OS X Version 10.4.11, and I cannot download any new updates. This disables me to update Itunes which is the problem in the first place. How would I fix this?

    Welcome to Apple Support Communities
    iTunes in Mac OS X Tiger is outdated. Open  > Software Update to install the latest iTunes version for Tiger.
    If you need iTunes 10.7 or a newer version, you have to upgrade to Mac OS X Snow Leopard. First, check that your Mac is supported > http://support.apple.com/kb/sp575 If it is, buy Snow Leopard > http://store.apple.com/us/product/MC573Z/A/mac-os-x-106-snow-leopard
    After buying Snow Leopard, make a backup of your data, insert the DVD and upgrade to Snow Leopard. After upgrading, open  > Software Update, and install the latest Snow Leopard version. Finally, run Software Update again to install iTunes 11.0.4. If you want to install iTunes 10.7 instead, download it from the Apple website > http://support.apple.com/kb/dl1576

  • Slow connection for downloading dot-dmg file

    Have 20-inch iMac G5 with Tiger OS. I had wanted to download a 30-day free trial of Stuffit Deluxe so that I can compress several 5MB jpgs into a smaller file; something easy to transmit by email as attachment. The download time for less than 200 MB was more than ten days. My download bit rate was 0.5 kbits/second. Is this a typical sign of "old age" for the internal wireless?
    Using Safari, the icon to indicate downloading keeps moving for as long as 10 seconds. This download speed seems to be unrealistically slow. Is it time to take it in for an overhaul? XBW

    I had wanted to download a 30-day free trial of Stuffit Deluxe so that I can compress several 5MB jpgs into a smaller file;
    Don't waste your time.
    jpegs are already compressed. Stuffit won't compres them much if at all.
    Besides, you don't need stuffit to compress files.
    You can right click - Create Archive to compress it.
    If you are using iPhoto or Mail, you can automatically resize photos for email.

Maybe you are looking for