Mac recognises installer (binary file) as picture - can it be changed?

My friend sent me an installer for an app via email (surprised it came through at all at 21mb). When i download it i get a dialog in firefox saying it is a binary file do i want to save it. Then I go to open it in the finder and i get the warning that it is an application downloaded from the interenet + am i sure I want to download it. When I try to open it (clicking on it) photoshop attempts to run it but fails, with a dialog saying it doesn't recognize the file type. When I do a apple I on the file its says it is plain text. Is there a way i can change it so it will run as supposed to - if i have to get the file again it will be very inonvenient. many thanks in advance.

If your friend is compressing the file before sending it to you... you can either have him not compress it, or you need to be sure that you have/use the correct decompression utility.
Try contacting your friend and ask him what the correct extension for the file is. When you know for sure... Then ensure that the correct one is on the file you downloaded. If it is not change it. The mac will remind you that if you don't put the correct extension on the file it will not work properly... say OK. Now try to open it.

Similar Messages

  • HT4796 Can you transfer files from a window based back up hard Drive to a mac ?, example word files , iTunes, picture files thanks

    Can you transfer files from a window based back up hard Drive to a mac ?, example word files , iTunes, picture files thanks

    Shermanbva,
    Here's an article that details the various ways you can get Windows files onto a Mac:
    Switch Basics: Migrate your Windows files or system to your Mac
    http://support.apple.com/kb/HT2518
    Have a good one,
    - Ari

  • I have a Canon 6d and would like to convert my raw ( CR2) photo's into dng files. Adobe DNG converter 8.4 doesn't recognise the CR2 files. How can i solve this?

    i have a Canon 6d and would like to convert my raw ( CR2) photo's into dng files. Adobe DNG converter 8.4 doesn't recognise the CR2 files. How can i solve this?

    It is possible that you are not following instructions correctly in the DNG converter. The DNG converter interface asks for the FOLDER that contains your raw images. Choose the folder, but don't open it. After you have chosen the folder, click on the Convert button. The DNG conversion process should start.  Does that help you?

  • Exported my video from Elements 12 but Powerpoint does not recognise the video file. How can we do it?

    Exported my video from Elements 12 - format mp4 but Powerpoint does NOT recognise the video file. Why?

    .wpl appears to be a Windows Media Player playlist. I can find no conversion software for that, and Windows Media Player is not available for Mac anymore.
    If you can persuade him to download iTunes and create the playlist as mp3 in a iTunes playlist, or even just burn the base mp3 files to CD as a data disc, that's about the only solutions I can suggest.

  • I write binary file (express) but can't read it (express)

    Hello,
    I have an application where I will acquire data from several sensors. For most of them (16) a relatively low sampling rate (10000Hz) will be fine, but, for one AE sensor I need a high sampling rate (50k - 100kHz). So, I've decided to store the data in binary format so as no to have way too big files.
    I try writing the files with the express module, and afterwards, in a new .vi, reading and graphing it to check it, but signals don't match.
    By now I'm working with simulated channels, so data stored in the file and read and graphed afterwards should be sine, but I don't see so.
    Any suggestions?

    Hello,
    I have tried my best cleaning up the wiring, but it's still pretty messy. I attach the complete program.
    My problem (still not solved) is that since EA needs to be measured at very high rate, I want to write it as binary data. But I cannot make it show me the correct data afterwards, with a different program, that doesn't matter.
    I would also like to know how to convert this saved data to MatLab... any suggestions? (should I post this in a new thread?)
    Regards,
    Usuario
    Attachments:
    program_00.vi ‏297 KB

  • Binary files

    Hi,
    I have a set of binary files (. bin .raw .dat) that contain samples of ECG signals togheter with other
    information. I would like to read the samples and other fields of binary files. so
    Can i selectively choose one or more fields od binary file?
    I have attached a very small .dat file, instead .bin and .raw files are too big.
    In my application i use much larger files.
    Any suggestions on how to do it?
    Sorry but I'm not very familiar with binary files.
    Thanks in advance
    I have a set of binary files (. bin .raw .dat) that contain samples of ECG signals togheter other information. I would like to read the samples and other fields of binary files. so Can i selectively choose one or more fields od binary file?
    I can't attach a .dat .bin or .raw file because forum don't accept these file format.
    Any suggestions on how to do it?
    I haven't familiarity with binary files.
    Thanks in advance
    Wasabi

    ok! I have a bit of code that explains the file format.
    it is something like this:
    #define NUM_CH_IN_SAMPLE 8
    struct ChSample
     long _sample_data[NUM_CH_IN_SAMPLE];  /* 500 Hz, 2.5 uV/LSB        */
     DWORD _status;
     ChSample() : _status(0) {};
    so I would like to read items of structure.
    Any suggestions?
    Thanks

  • How to read binary file in Matlab

    "Hello all!
    Labview 7.0 has an example "Cont Acq to File (binary).vi" log the PCI 6014 card and writes the data to a binary file. How can I read that
    file in Matlab(6.5.0... R13)? Does anyone have a solution for this?

    Hello,
    Basically you can do it by saving the data in a file in MATLAB and reading it directly from LabVIEW, or vice versa. In MATLAB , the command "save" allows you to save the data in binary format (*.mat) or ASCII format. You also have an option of saving it in ASCII format using a tab delimiter between data points.
    There is a knowledge base which talks in detail about how to share data in between labview and matlab Import data from labview to Matlab and vice versa.
    Hope this helps. If not, please feel free to ask more questions.
    Good luck and have a great day!
    Koninika
    National Instruments

  • When it comes to binary files ...

    I can't say I have a good grasp of the real differences between files written in text mode and files written in binary mode.
    For (C) example:
    struct data
    int a, b;
    } d;
    d.a = 432;
    d.b = 581924;
    char s[14] = "hello world!\n";
    FILE *fd = fopen("test.txt", "wt");
    fwrite(&d, sizeof(data), 1, fd);
    fwrite(s, sizeof(char), 14, fd);
    fclose(fd);
    fd = fopen ("test.bin", "wb");
    fwrite(&d, sizeof(data), 1, fd);
    fwrite(s, sizeof(char), 14, fd);
    fclose(fd);
    test.txt hexdump:
    B0 01 00 00 24 E1 08 00 68 65 6C 6C 6F 20 77 6F 72 6C 64 21 0D 0A 00
    test.bin hexdump:
    B0 01 00 00 24 E1 08 00 68 65 6C 6C 6F 20 77 6F 72 6C 64 21 0A 00
    What I know (and see):
    strings containing '\n', when are written in text mode to a file, have the '\n' replaced by CR+LF / LF / CR depending on the platform; in binary mode it is left unchanged
    binary files are used to represent the image of the memory used by a program; so if a chain of structures are wrritten in a known order in a binary file, that chain can be restored on the next startup of the program, if the reading takes place in the order specified so no parsing and type casting is needed
    Am I right? Other than these things what else should I know?
    The reason I want to clear these things out is because I have a file which contains the data collected and interpreted by a counter device from some sensors.
    I believe this file is the binary footprint of the memory used to hold the recordings because I can't decipher the hexdump.
    Now, I have a program to read this type of file and see the recordings and export them to a file in a human readable format (and no, it doesn't have a command line argument for this so that I can make a script). The thing is, I want to put all the recordings in a database and manipulate them further for all kinds of statistics and I don't want to waste time exporting whenever there is a data to be inserted.
    I have no clue if what I'm saying has a bit of truth so I would be grateful if someone can correct or enlighten me on how I should approach this  ... is there a way to "parse" the binary file directly not knowing the types of the placeholders for the recordings?
    Last edited by knob (2011-03-03 22:41:04)

    You're right about what happens when a "text" file is written to disk. However, files ("text" or "binary") can contain anything, not necessarily a "memory footprint". (Edit: well, technically, anything you write to disk comes from memory... but it doesn't have to come from a struct or an array. It doesn't matter anyway...)
    That said, as far as I understand it, your problem is that your "counter device" uses an undocumented file format and closed-source software. First step would be to ask the developer for documentation and source code.
    If the developer doesn't want to give the required information or update the software as needed, you'll have to reverse-engineer the file format, either as previously suggested by "guessing" the contents, or by decompiling the executables that access the files.
    Last edited by stqn (2011-03-04 17:36:59)

  • Search binary files?

    How can I search through a folder full of binary files for a specific string (either hex or ascii) ?
    i.e. I have a folder of 2,000 binary files and need to find one that has a specific string in it. Spotlight doesn't seem to be the ticket. I can't seem to find a sample file using grep.

    The UNIX strings command can search for strings inside binary files. You can then use grep to find the string that you want.
    strings files | grep desired_string
    Mihalis.

  • How can I copy installation/setup files of an App downloaded from Mac App Store?

    I just purchased and downloaded Xcode on my Macbook Pro and now want to install the same on my MacBook Air and iMac but I don't want download them again and again. Isin't their anyway by which I can copy the installation/setup files of that App and paste it on another Mac and use my iTunes account credentials to verify the App with Apple servers, so that they know it's legit install. And also keep the copy as backup so that, I can install that App again after I format my computer or use it for future use.
    I live in a third world country and aren't blessed with high speed and unlimited bandwidth connection.

    Issue solved:
    Answer found in Apple FAQ's site: http://support.apple.com/kb/HT4482
    The Mac App Store remembers all apps you purchase with your account. Apps you purchase and install from Mac App Store can also be copied to an external hard drive, USB Flash Drive, CD/DVD, or backed up via Time Machine.
    If you save a copy of an app to removable media (such as an external hard drive) or file share, simply drag the app back from its storage location to your Applications folder. When you open the restored app for the first time, you may be required to sign in with the Apple ID account that was used to purchase the app.

  • I put in my memory card to the left side of the computer, but I cannot find the file of pictures anywhere. Its not even on my desktop. What should I do and how can I get it to show up on my desktop?

    I put in my memory card to the left side of the computer, but I cannot find the file of pictures anywhere. Its not even on my desktop. What should I do and how can I get it to show up on my desktop?

    If your Mac is new-ish and has one of the Lions as its OS, the drives, cards, USB sticks no longer show up, even though they're there. Go to Finder's Preferences and tick the corresponding items in the General and Sidebar tabs.

  • How can I open different binary files from BLOB column ?

    If we store some type of binary file (XLS, DOC, PDF, EML and so on, not only pictures) in BLOB column how can I show the different contents? We use designer and forms 9i with PL/SQL.
    How can I copy the files from BLOB to file in a directory or how can I pass BLOB's content to the proper application directly to open it?

    The mime type is just a string as explained above (e.g. application/pdf...). There are lot of samples here and on metalink.
    E.g. add a column mime_type varchar(30) to your blob table. Create a procedure similar to the following:
    PROCEDURE getblob
    (P_FILE IN VARCHAR2
    IS
    vblob blob;
    vmime_type myblobs.mime_type%type;
    length number;
    begin
         select document, mime_type into vblob,vmime_type from myblobs where docname = p_file;
         length := dbms_lob.getlength(vblob);
         if length = 0 or vblob is null then
         htp.p('Document not available yet.');
         else
         owa_util.mime_header(vmime_type);
         htp.p('Content-Length: ' || dbms_lob.getlength(vblob));
         owa_util.http_header_close;
         wpg_docload.download_file(vblob);                
         end if;
    exception
         when others then
         htp.p(sqlerrm);
    END;
    Create a DAD on your application server (refer to documentation on how to create a DAD).
    Display the blob from forms (e.g. on a when-button-pressed trigger):
    web.show_document('http://myserver:port/DAD/getblob?p_file=myfilename','_blank');
    For storing blobs in a directory on your db server take a look at the dbms_lob package.
    For storing blobs in a directory on your app server take a look at WebUtil available on OTN.
    HTH
    Gerald Krieger

  • Can I get a list of all binary files and what they do?

    I'm a newbie to Oracle. Needless to say I'm blindly muddling my way through the experiance of installations/setup and managing my first database. I realize that there is a three tier system and for my system all three of the tiers are on the same pc! In short I need help with what executables do what. I've tried going through Linux howto's, online docs, and even bought a book on the subject but the book seems to stroke the benifits of using Oracle instead of actually telling me how to use Oracle. I'm using Oracle8i 8.1.7 EE (enterprise edition) on Linux RH 7.0. I would like a link to a list or the actuall list of all the binary files in $OracleHOME/bin/ and what each of them do. Also important log files I should consult regularly would be most helpfull. Thanks.

    While you're at it, see if you can get a complete description of all the X$ tables.

  • How can I read a binary file stream with many data type, as with AcqKnowledge physio binary data file?

    I would like to read in and write physiological data files which were saved by BioPac�s AcqKnowledge 3.8.1 software, in conjunction with their MP150 acquisition system. To start with, I�d like to write a converter from different physiodata file format into the AcqKnowledge binary file format for version 3.5 � 3.7 (including 3.7.3). It will allow us to read different file format into an analysis package which can only read in file written by AcqKnowledge version 3.5 � 3.7 (including 3.7.3).
    I attempted to write a reader following the Application Note AS156 entitled �AcqKnowledge File Format for PC with Windows� (see http://biopac.com/AppNotes/ app156Fi
    leFormat/FileFormat.htm ). Note the link for the Mac File format is very instructive too - it is presented in a different style and might make sense to some people with C library like look (http://biopac.com/AppNotes/ app155macffmt/macff.htm).
    I guess the problem I had was that I could not manage to read all the different byte data stream with File.vi. This is easy in C but I did not get very far in LabView 7.0. Also, I was a little unsure which LabView data types correspond to int, char , short, long, double, byte, RGB and Rect. And, since it is for PC I am also assuming the data to be written as �little endian� integer, and thus I also used byte swap vi.
    Two samples *.acq binary files are attach to this post to the list. Demo.acq is for version 3.7-3.7.2, while SCR_EKGtest1b.acq was recorded and saved with AcqKnowledge 3.8.1, which version number is 41.
    I would be grateful if you someone could explain how to handle such binary file stream with LabView and send an example to i
    llustrate it.
    Many thanks in advance for your help.
    Donat-Pierre
    Attachments:
    Demo.acq ‏248 KB
    SCR_EKG_test1b.acq ‏97 KB

    The reading of double is also straight forward : just use a dble float wired to the type cast node, after inverting the string (indian conversion).
    See the attached example.
    The measure of skin thickness is based on OCT (optical coherent tomography = interferometry) : an optical fiber system send and received light emitted to/back from the skin at a few centimeter distance. A profile of skin structure is then computed from the optical signal.
    CC
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        
    Attachments:
    Read_AK_time_info.vi.zip ‏9 KB

  • How can I read a binary file stream with many data type, as with AcqKnowled​ge physio binary data file?

    I would like to read in and write physiological data which was saved by Biopac�s AcqKnowledge 3.8.1 software, in conjunction with their MP150 acquisition system. To start with, I�d like to write a converter from different physiodata file format into the AcqKnowledge binary file format for version 3.5 � 3.7 (including 3.7.3). It will allow us to read different file format into an analysis package which can only read in file written by AcqKnowledge version 3.5 � 3.7 (including 3.7.3).
    I attempted to write a reader following the Application Note AS156 entitled �AcqKnowledge File Format for PC with Windows� (see http://biopac.com/AppNotes/app156FileFormat/FileFo​rmat.h
    tm ). Note the link for the Mac File format is very instructive too - it is presented in a different style and might make sense to some people with C library like look (http://biopac.com/AppNotes/app155macffmt/macff.ht​m) .
    I guess the problem I had was that I could not manage to read all the different byte data stream with File.vi. This is easy in C but I did not get very far in LabView 7.0. Also, because it is for PC I am assuming the data to be written as �little endian� integer, and thus I also used byte swap vi.
    I would be grateful if you someone could explain how to handle such binary file stream with LabView and send an example to illustrate it.
    Many thanks in advance for your help.
    Donat-Pierre

    One more step...
    short are U16 integer
    double are double precision float
    bool seem to be 2 bytes (= U16)
    char are string (variable length)
    rgb are U16 integer, with high order byte = 0
    rect should be 4 x U16 (top, left, bottom, right)
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        

Maybe you are looking for

  • How can I customize Keynote elements in iOS?

    Friends, I use Keynote quite a bit and my presentations almost always are synchronized to music and other elements. i'd been told that my OS X presentations could be transferred to iOS, but this loses all of those customized builds and transitions. D

  • Primavera 8.3 API

    Hi, I have installed Primavera API on the local machine. I have an Oracle database up and running. The Demo for Primavera API works, but I cannot find the project in the database. I try to make a class(the example for this link(Primavera Integration

  • Installing SCCM client 2012 R2 CU4

    Hi there. Recently updated with SCCM 2012 SP 1 to SCCM 2012 R2 CU 4. Now configure common clients through Client Push Installation. I want to further kerf Software Update-Dased Client Installation. But when you turn in the Available version costs onl

  • Where is the code for the collapse button in the default SAP iview layout?

    I need to eliminate the collapse/restore button displayed on each iView tray. I was looking at the default layout component (com.sap.portal.layouts.default) but I could not find the code for the tray.  The code for "FullWidth.jsp" (this file that imp

  • TS1702 Apps will not update

    Having problems with updating apps, how do I resolve this issue?