How do I get .jpg's to automatically be read and write for everyone

When I save a photo in Photoshop CS6 v13, as a .jpg file, it automatically gives me read and write permission, but not others.  This is a pain as I have to change it each time I want to send someone a photo. Anywhere I can make it happen automatically?

Thanks for responding JJMack. Im using OSX 10.8.4 Mac.
Ill just save it on my laptop in any old folder.

Similar Messages

  • (MHDDK) How to realize the synchronization of read and write for long time by cart PCI6025E

       I've finished the programming of the process read and write for the PCI6025E, I can read and write the data now, I wanna synchronize both of the processes, writing the data into the card just after the reading from the card, and check the wave in the oscilloscope. when I use the SEC , it works, but when I changed to MSEC, the wave only come out for a few seconds, even if I bloc 60sec, and also the wave is not steady. why?
         so now the problem is how could I write the data immediately which just read and it's for a long time I asked?
    Thanks in advance!

    Hi Jack,
    aiex4.cpp doesn't exist, as far as I can tell. I believe that while the examples were being named, the developer mis-numbered them and just skipped 4 :-S
    At any rate, if you already have AI and AO working separately, and you have the I/O performance you application requires, then you may not need to add DMA to your driver. However, if you want to add DMA, it won't be very difficult. In essence, you would need mix code from the S and M Series examples. The S Series example aiex2.cpp shows two things: the few lines of code you need to add DMA objects (lines 70-78), and how to program the STC to use DMA (line 114). And aiex3.cpp from the M Series examples gives a clearer picture of how to control and read the DMA channel.
    Thanks, Rolf, for your time and help :-) I'm grateful for your contributions, and I'm glad to see active developers in the DDK forum.
    Joe Friedchicken
    NI VirtualBench Application Software
    Get with your fellow hardware users :: [ NI's VirtualBench User Group ]
    Get with your fellow OS users :: [ NI's Linux User Group ] [ NI's OS X User Group ]
    Get with your fellow developers :: [ NI's DAQmx Base User Group ] [ NI's DDK User Group ]
    Senior Software Engineer :: Multifunction Instruments Applications Group
    Software Engineer :: Measurements RLP Group (until Mar 2014)
    Applications Engineer :: High Speed Product Group (until Sep 2008)

  • How do I repair permissions when I removed the read and write priveleges to everyone?

    I won't beat around the bush.
    I accidentally disabled read and write priveleges to everyone onto the entire startup drive. It didn't occur to me that would also include admin. I saw a red no-sign on the folder, and now starting up leaves me with the white screen and the gray apple indefinately.
    I'm not sure how to use terminal, but I have been using the time machine - it won't help me any if I can't start up my computer, though.
    Thanks for helping.

    You are very welcome, and if you have not done a Mountain Lion install before, read/print for reference: http://support.apple.com/kb/PH10763  It is easy and straight forward but having the steps in front of you always helps.

  • How do I set an external HD permission to read AND write?

    I received an iMac for Christmas and need a little help.  I have a 2TB external HD that contains .shn and .flac files of GD concerts (and other music).  I managed to find Cog that will play them...but what I want to do is download them and move them upon completion to the external HD.  I can not do this because the HD is read only.  I can move stuff to a SD card because it is read and write.  I assume when I change the permission I will be able to move the folder of a show to the HD as well.  Surely this is simple...  Thank You and sorry for the dumb question!

    Your external hard drive is likely NTFS formatted for use with a PC.
    OSX can read but cannot write to NTFS formatted volumes. You can install software that allows writing to a NTFS drive, as Niel has suggested, or you can reformat your external drive using Disk Utility for use with your Mac.
    If you decide to reformat your drive for Mac use, copy your data off to another drive before you proceed.

  • How do you get ITunes to STOP automatically scanning my hard drives?

    How do you get ITunes to STOP automatically scanning my hard drives for files? I have a number of audio and video files located all over my computer. However, my music folder is located in one place. I only want ITunes to look there to ad music to my IPod? I don't want to add any videos to my IPod however, it automatically scans for this as well. Infact... I don't want ITunes to automatically scan for anything. Why is this doing this?

    You can configure iTunes to sync only a subset of your music. Create a playlist in iTunes of the music you want on the iPod, and change the iPod sync settings. More info is here.

  • How to burn read and write files on DVD

    I would like to know how to burn DVDs (image files) with the Read and Write setting. I have changed the settings in Get Info for the image files to Read and Write for Owner, Group and Others and yet when I burn the DVD and try and copy the files back onto the hard drive (to test if it works or not) it won't allow me. When I check the Get Info it says Read and Write for owner (greyed out) and Read Only for Group and Others (greyed out too).
    I have also tried to change the status of the blank DVD before adding files and after adding the files (but b4 the burn) to Read and Write, this works but then during the burn process the DVD or burner changes my settings to Read Only.
    I am burning with Finder and have tried with Toast 10 Titanium. What am I doing wrong, or not doing at all?! I'm going loopy with frustration!

    Kiraly, I agree that the actual problem here might be something else, but as a side issue there seems to be a difference in the way permissions are handled when a file copy is made using Finder compared to when the copy is made using the cp copy in Terminal. At least in my Tiger system, Finder preserved the permission structure, though not the ownership, when it copied a file, whereas cp used the OS defaults.
    I tried the following experiment:
    From my test user account "t", I created a textfile named ReadWrite.txt, and gave it Read+Write permissions for Owner, Group, and Others. I then burned it using Finder to a DVD which I named PermissionTest, and then unchecked the "Ignore Ownership" box on PermissionTest.
    The original ownership and permissions were preserved on the DVD, though of course you couldn't actually write to anything there:
    xxG5-Computer:~ t$ ls -l /Volumes/PermissionTest/ReadWrite.txt
    -rw-rw-rw- 1 t t 15 Sep 13 18:25 /Volumes/PermissionTest/ReadWrite.txt
    I then copied the file from the DVD to the Desktop using Finder, and the permissions were preserved!
    Finder copy:
    xxG5-Computer:~ t$ ls -l /Users/t/Desktop/ReadWrite.txt
    -rw-rw-rw- 1 t t 15 Sep 13 18:25 /Users/t/Desktop/ReadWrite.txt
    I then trashed the Finder copy of ReadWrite,txt on the desktop, and made a second copy from the DVD, but this time I used the cp command from Terminal instead of using Finder. This time the permissions were not preserved, but reverted to the OS default:
    cp copy:
    xxG5-Computer:~ t$ cp /Volumes/PermissionTest/ReadWrite.txt Desktop
    xxG5-Computer:~ t$ ls -l /Users/t/Desktop/ReadWrite.txt
    -rw-r--r-- 1 t t 15 Sep 13 19:43 /Users/t/Desktop/ReadWrite.txt
    I then switched to a different user account "t1", and repeated the above with the same DVD, first copying the ReadWrite.txt file to the desktop using Finder, and then using cp. The ownership of the copied file changed from t to t1 in both cases, but the permission structure again was preserved in the Finder copy but not in the cp copy:
    DVD file:
    xxG5-Computer:~ t1$ ls -l /Volumes/PermissionTest/ReadWrite.txt
    -rw-rw-rw- 1 t t 15 Sep 13 18:25 /Volumes/PermissionTest/ReadWrite.txt
    Finder copy:
    xxG5-Computer:~ t1$ ls -l /Users/t1/Desktop/ReadWrite.txt
    -rw-rw-rw- 1 t1 t1 15 Sep 13 18:25 /Users/t1/Desktop/ReadWrite.txt
    cp copy:
    xxG5-Computer:~ t1$ cp /Volumes/PermissionTest/ReadWrite.txt Desktop
    xxG5-Computer:~ t1$ ls -l /Users/t1/Desktop/ReadWrite.txt
    -rw-r--r-- 1 t1 t1 15 Sep 13 19:51 /Users/t1/Desktop/ReadWrite.txt
    I got similar results when I tried copying a file with Read+Write permissions for all from a USB flash drive to the Desktop, again with the "Ignore Ownership" box unchecked.

  • How do i get my iPhone to automatically delete and email that has been deleted on my macbook

    How do I get my iPhone to automatically delete an email that was deleted on my macbook pro?

    Set up your email account as IMAP on both devices.
    ~Lyssa

  • I downloaded the new Pages and Numbers through my app store but when I open my old documents, it still tells me my 30 day trial is over. How do I get the computer to automatically recognize the new applications?

    More information: I have a 3 year old MacBook and had been using "Microsoft for Mac" until last week when I took my MacBook in for some upgrades- including the operating system Lion. I have been unable to use the Word, Excel, etc. programs because they are not supported on the new operating system... and I already used my 30 day trial of iWork when we first purchased the computer. I decided to buy Pages and Numbers through the App Store icon. When I open the Pages and Numbers under my Applications, I can get them to work. However, when I open old documents saved on my computer, they go into the 'old' iWork messages of that my trial has expired. How do I get the computer to automatically recognize that I've purchased Pages and Numbers?

    You need to delete the trial & then reinstall from the boxed DVD or the Mac App Store. The files to delete are the iWork ’09 folder from the main HD > Applications; the iWork ’09 folder in HD > Library > Application Support & the individual iWork application plist files found in HD > Users > (your account) > Library > Preferences for each user.
    Yvan Koenig has written an AppleScript that removes the files. You can find it on his box.com account in for_iWork'09 > other_iWork'09 items > uninstall iWork '09.zip.

  • How do I get .jpg extension to show in the name of my imported photos?

    How do I get .jpg extension to show in the name of my imported photos?

    Need to have Mail running. When you receive new mail, it will show up in Notifications Center UNLESS the Mail window has focus.
    The Notifications Center preferences are in System Preferences / Notifications.

  • How do I get itunes to open automatically when my iphone is plugged in?

    When I plug my iphone into my laptop, how do I get itunes to open automatically? 

    In iTunes click on your phone under "Devices" on the left of the screen > "Summary" tab > Options: "Open iTunes when this iPhone is connected".

  • How can I get Mail to stop automatically opening on startup of my MacBook?

    How can I get Mail to stop automatically opening on startup of my MacBook Pro? It's not in my startup items folder. But it auto-opens every time I boot up

    In System Preferences / General make sure the Restore Windows ...... is unchecked.
    Also uncheck in the shutdown dialog box

  • HT1473 When importing CDs into i-tunes should the artwork be there automatically.  If not how do I get artwork to show in i-tunes and on my ipod.  I had artwork with a PC but now I have a mac artwork does not appear.

    When importing CDs into i-tunes should the artwork be there automatically.  If not how do I get artwork to show in i-tunes and on my ipod.  I had artwork with a PC but now I have a mac artwork does not appear.

    I don't use iTunes's "fetch artwork", so I'm not 100% sure, but unless you are signed in to your iTunes account, artwork is not automatic. Even then, iTunes doesn't always find it.
    You can copy-and-paste artwork from the inernet, either Amazon or Google. I use 300x300 pixel images.
    For the future, if you have iTunes questions, you might be better off posting them in the iTunes for Mac forum, this is iTunes for Windows. In this situation, it doesn't make any difference, but next time maybe it will.

  • In Pages, when I hit the return button, the first letter on the new line is not capitalises. How do I get it to capitalise automatically?

    In Pages, when I hit the return button, the first letter on the new line is not capitalises. How do I get it to capitalise automatically?

    Right click the Back button and choose the page you want to go to from the list.
    '''N.B.''' I noticed that your Flash installation is out of date which exposes your system to attack. See: http://www.adobe.com/support/security/bulletins/apsb11-18.html<br><br>
    Update via http://get.adobe.com/flashplayer/

  • How do I get Lightroom 4 to automatically create an xmp file?*

    How do I get Lightroom 4 to automatically create an xmp file?*

    Assuming you have RAW photos
    Edit->Catalog Settings > Metadata then check “Automatically Write Changes to XMP”
    Not RAW photos ... the same setting causes the metadata to be written into the files, but does not create an xmp file

  • When I connected my iPhone 6 to my iMac to download new photographs they were downloaded in .aae format. How can I change them back to jpg? And how can I get jpg in future?

    When I connected my iPhone 6 to my iMac to download new photographs they were downloaded in .aae format. How can I change them back to jpg? And how can I get jpg in future?

    Sync the apps to the iPod via iTunes. Make sure that the apps are chaec to syc and the proler boxes checked in the Apps pane for the iPod in iTunes.

Maybe you are looking for

  • How do I move multiple files from download?

    Hi, After I download a group of files, I should like to move them all en masse to one folder on my MacBook.  However, it I select all the files (via shift-click) and try to drag them to their new home, the files instead all open up inside their nativ

  • How to delete the entries in CDCLS table

    Hi All, There is a potential issue with the size of table CDCLS on production system. We need to reduce or manage the amount of data in this table. CDCLS is a cluster table and cannot be reduced directly, So first we were reduced the entries in CDHDR

  • HP Photosmart 7550 driver for Windows 8.Where can I find a driver for this printer?

    I have attempted all the available features on the HP site for this printer but nothing works. It seem HP don't support this printer any more. Does this mean i have to dispose of it?

  • Is $10 off on second purchase possible with no manual work needed?

    Is this possible in BC - New customer makes a purchase (or spends over a certain amount on first order) and they receive an email (or redirected to a page) that says you have just been rewarded with $10 off on your next purchase. This expires on ... 

  • JCheckBox used in a JTree Displaying Wrong

    I have a class that creates a JTree and sets the node to a JCheckBox. The checkboxes appear fine except for the fact that instead of the JCheckBoX name appearing next to the actual checkbox the JCheckBox values appear instead. I found a topic in the