I want to make elements 13 my default to open images on my mac air

I have just purchased a mac air and installed elements 13 .When I upload photos from the sd card they go straight to the Iphoto but I would like them to open with elements as a default

How to copy previously-burned DVD-R video discs
http://support.apple.com/kb/HT2059
To create an image file, launch Disk Utility and select File: New: Disk Image From Folder. In the window that appears, navigate to the desired folder and then click on Image. Give the image file a name, and click on Save when prompted. That’s it.

Similar Messages

  • How do I make Photoshop the default for opening images?

    Hi,
    Right now it's set to Preview. How do I change it to Photoshop? Oh, I have an iMac with 10.6.8 now.
    Thank you.

    Right click on the file and choose Get info.  In the Get info field will be Open with where you can select the app to open that file.  You can also select to open all similar files with the chosen app.

  • Make preview the default for opening .pdf

    I can't open a document in Preview (when I try an iCloud screen shows up).  So I want to make Preview my default .pdf reader and open the doc by clicking on it's title.  But I don't know how to do that.

    Hi jackoett,
    Go into your Documents or Downloads in your Finder and find a PDF file and click on it to select it (not to open it). Then click on "File" in the top menu and select "Get Info". You will see a dropdown like this:
    As you can see, it currently says "Open With" Adobe Reader. Click on the little arrows to the right to see your other options:
    Select "Preview"
    Right below the dropdown, you will see an option to "Change All" - click on this, and you will get the following warning:
    If you do want to open all future PDF docs with Preview, click Continue. If you ever want to change it back, (or just change one of them to Adobe Reader), just follow the same steps.
    Cheers,
    GB

  • How can I make CS4 the default for opening?

    Help! I have most versions of PS but I prefer CS4. I am a photographer. Forever CS4 was the default when opening photos. Something happened yesterday and now when I double click on a photo to open it it opens but not in CS4. Not sure what version it's opening in. But I want it to open in 4. I can right click each and every time to open in 4 but I open tons of photos all day long and that takes too long. How can I again make it so that CS4 is the default?
    Thank you.

    Thanks. I couldn't figure out what you meant.
    What does CMD I stand for?
    If I right click on a file I can open in CS4 but there's no 'change all' there, just option of opening in CS4 or something else.
    I open RAW files. Then later I open jpg files. I think they are opening in CS4 as RAW (not sure) but the jpgs are not. If I right click it says CS6 is the default -- first one listed and has (default) next to it.

  • Do not want launchpad to be the default import on images

    I have the new mac pro (late 2013) and lightrrom 5 on os 10.10.2 .  i import a lot of raw image files but when i do this on the new mac the launchpad wants to improt the files.  I want LR to be the default software to import the files ( Like my old mac did!) can anybody help to turn off  the launchpad prefreance and add Lr?
    tahnsk
    john

    I HATE that every time I try to open a “FOLDER” Bridge opens.
    It seems the Adobe Forums are unreachable due to an update but using email I do respond nevertheless.
    To be Honest, I don't understand how you are able at all to start Bridge when opening a folder?? Can you report back with details of System and version info of Bridge and maybe explain your workflow?
    And Bridge is only slow for the first time, it needs to cache files first. Which brings me to the point that Bridge is a file browser and not so much as a folder browser. You can use the folder panel for an overview of the system content and folder structure and for fast and easy navigating.

  • Elements 9 shows up as the Default when opening images from CC Bridge.

    I haveElements 9 and CC on the same computer. When I click to open images from Bridge, 9 is shown as the Default and CC is not shown. How do I eliminate Elements 9 as the Default? Thanks!

    Bridge preferences>File Type Associations. You'll need to change it for each file extension.

  • Want to make a paint bucket and open feature

    I am making this drawing application that so far contains a pencil tool, eraser, text tool, clear tool, and even save image feature. There are a few more features that I would like to add, including a paint bucket tool and a open image feature, but I am not sure exactly how to code them. Here is my code for the whole program:
    package
    import PNGEncoder;
    import flash.display.MovieClip;
    import flash.display.Shape;
    import flash.display.DisplayObject;
    import flash.text.TextField;
    import flash.text.TextFormat;
    import flash.text.TextFieldType;
    import flash.text.TextFieldAutoSize;
    import flash.display.BitmapData;
    import flash.geom.ColorTransform;
    import flash.events.MouseEvent;
    import flash.events.Event;
    import flash.utils.ByteArray;
    import flash.net.FileReference;
    public class Main extends MovieClip
    /* Variables */
    /* Pencil Tool shape, everything drawed with this tool and eraser is stored inside board.pencilDraw */
    var pencilDraw:Shape = new Shape();
    /* Text format */
    var textformat:TextFormat = new TextFormat();
    /* Colors */
    var colorsBmd:BitmapData;
    var pixelValue:uint;
    var activeColor:uint = 0x000000;
    /* Save dialog instance */
    var saveDialog:SaveDialog;
    /* Active var, to check wich tool is active */
    var active:String;
    /* Shape size color */
    var ct:ColorTransform = new ColorTransform();
    public function Main():void
    textformat.font = "Arial";
    textformat.bold = true;
    textformat.size = 24;
    convertToBMD();
    addListeners();
    /* Hide tools highlights */
    pencil.visible = false;
    hideTools(eraser, txt);
    /* Pencil Tool */
    private function PencilTool(e:MouseEvent):void
    /* Quit active tool */
    quitActiveTool();
    /* Set to Active */
    active = "Pencil";
    /* Listeners */
    board.addEventListener(MouseEvent.MOUSE_DOWN, startPencilTool);
    board.addEventListener(MouseEvent.MOUSE_UP, stopPencilTool);
    /* Highlight */
    highlightTool(pencil);
    hideTools(eraser, txt);
    ct.color = activeColor;
    shapeSize.transform.colorTransform = ct;
    private function startPencilTool(e:MouseEvent):void
    pencilDraw = new Shape();
    board.addChild(pencilDraw);
    pencilDraw.graphics.moveTo(mouseX, mouseY);
    pencilDraw.graphics.lineStyle(shapeSize.width, activeColor);
    board.addEventListener(MouseEvent.MOUSE_MOVE, drawPencilTool);
    private function drawPencilTool(e:MouseEvent):void
    pencilDraw.graphics.lineTo(mouseX, mouseY);
    private function stopPencilTool(e:MouseEvent):void
    board.removeEventListener(MouseEvent.MOUSE_MOVE, drawPencilTool);
    /* Eraser Tool */
    private function EraserTool(e:MouseEvent):void
    /* Quit active tool */
    quitActiveTool();
    /* Set to Active */
    active = "Eraser";
    /* Listeners */
    board.addEventListener(MouseEvent.MOUSE_DOWN, startEraserTool);
    board.addEventListener(MouseEvent.MOUSE_UP, stopEraserTool);
    /* Highlight */
    highlightTool(eraser);
    hideTools(pencil, txt);
    ct.color = 0x000000;
    shapeSize.transform.colorTransform = ct;
    private function startEraserTool(e:MouseEvent):void
    pencilDraw = new Shape();
    board.addChild(pencilDraw);
    pencilDraw.graphics.moveTo(mouseX, mouseY);
    pencilDraw.graphics.lineStyle(shapeSize.width, 0xFFFFFF);
    board.addEventListener(MouseEvent.MOUSE_MOVE, drawEraserTool);
    private function drawEraserTool(e:MouseEvent):void
    pencilDraw.graphics.lineTo(mouseX, mouseY);
    function stopEraserTool(e:MouseEvent):void
    board.removeEventListener(MouseEvent.MOUSE_MOVE, drawEraserTool);
    /* Text Tool */
    private function TextTool(e:MouseEvent):void
    /* Quit active tool */
    quitActiveTool();
    /* Set to Active */
    active = "Text";
    /* Listener */
    board.addEventListener(MouseEvent.MOUSE_UP, writeText);
    /* Highlight */
    highlightTool(txt);
    hideTools(pencil, eraser);
    private function writeText(e:MouseEvent):void
    var textfield = new TextField();
    textfield.type = TextFieldType.INPUT;
    textfield.autoSize = TextFieldAutoSize.LEFT;
    textfield.selectable = false;
    textfield.defaultTextFormat = textformat;
    textfield.textColor = activeColor;
    textfield.x = mouseX;
    textfield.y = mouseY;
    stage.focus = textfield;
    board.addChild(textfield);
    /* Save */
    private function export():void
    var bmd:BitmapData = new BitmapData(600, 290);
    bmd.draw(board);
    var ba:ByteArray = PNGEncoder.encode(bmd);
    var file:FileReference = new FileReference();
    file.addEventListener(Event.COMPLETE, saveSuccessful);
    file.save(ba, "ballin.png");
    private function saveSuccessful(e:Event):void
    saveDialog = new SaveDialog();
    addChild(saveDialog);
    saveDialog.closeBtn.addEventListener(MouseEvent.MOUSE_UP, closeSaveDialog);
    private function closeSaveDialog(e:MouseEvent):void
    removeChild(saveDialog);
    private function save(e:MouseEvent):void
    export();
    /* Clear Tool */
    private function clearBoard(e:MouseEvent):void
    /* Create a blank rectangle on top of everything but board */
    var blank:Shape = new Shape();
    blank.graphics.beginFill(0xFFFFFF);
    blank.graphics.drawRect(0, 0, board.width, board.height);
    blank.graphics.endFill();
    board.addChild(blank);
    /* Default colors function */
    private function convertToBMD():void
    colorsBmd = new BitmapData(colors.width,colors.height);
    colorsBmd.draw(colors);
    private function chooseColor(e:MouseEvent):void
    pixelValue = colorsBmd.getPixel(colors.mouseX,colors.mouseY);
    activeColor = pixelValue;//uint can be RGB!
    ct.color = activeColor;
    shapeSize.transform.colorTransform = ct;
    /* Quit active function */
    private function quitActiveTool():void
    switch (active)
    case "Pencil" :
    board.removeEventListener(MouseEvent.MOUSE_DOWN, startPencilTool);
    board.removeEventListener(MouseEvent.MOUSE_UP, stopPencilTool);
    case "Eraser" :
    board.removeEventListener(MouseEvent.MOUSE_DOWN, startEraserTool);
    board.removeEventListener(MouseEvent.MOUSE_UP, stopEraserTool);
    case "Text" :
    board.removeEventListener(MouseEvent.MOUSE_UP, writeText);
    default :
    /* Highlight active Tool */
    private function highlightTool(tool:DisplayObject):void
    tool.visible=true;
    private function hideTools(tool1:DisplayObject, tool2:DisplayObject):void
    tool1.visible=false;
    tool2.visible=false;
    /* Change shape size */
    private function changeShapeSize(e:MouseEvent):void
    if (shapeSize.width >= 50)
    shapeSize.width = 1;
    shapeSize.height = 1;
    /* TextFormat */
    textformat.size = 16;
    else
    shapeSize.width += 5;
    shapeSize.height=shapeSize.width;
    /* TextFormat */
    textformat.size+=5;
    private function addListeners():void
    pencilTool.addEventListener(MouseEvent.MOUSE_UP, PencilTool);
    eraserTool.addEventListener(MouseEvent.MOUSE_UP, EraserTool);
    textTool.addEventListener(MouseEvent.MOUSE_UP, TextTool);
    saveButton.addEventListener(MouseEvent.MOUSE_UP, save);
    clearTool.addEventListener(MouseEvent.MOUSE_UP, clearBoard);
    colors.addEventListener(MouseEvent.MOUSE_UP, chooseColor);
    sizePanel.addEventListener(MouseEvent.MOUSE_UP, changeShapeSize);
    shapeSize.addEventListener(MouseEvent.MOUSE_UP, changeShapeSize);
    Any ideas on how to code these features?

    any1?

  • I want to make iTunes my default music player + P.S.

    RE: music &/or video playing on my iMac
    What is the path that I must take to find out where to set iTunes as the default music/video player? I believe that I have QuickTime at this point, but have learned that for the music player, iTunes is the preferred application. One can import, organize, browse, plan, and burn all in the same application. So.... I am going to change over but need to know where it is. I know it is in System Preferences but can anyone steer me in the right direction? Thank you.
    P.S.: I now have music automatically starting and looping on a page in my website. I am going to add more music to my pages, too.
    Lorna in Southern California

    Hi Lorna...
    Still up, huh? Me too.
    .......... Lorna says ................................................
    I was up late last night, though not as late as the time I went to bed at 6 AM. And then woke up at 9 AM.
    I don't think you need to do anything really to have
    iTunes handle your audio files. Keep in mind that in
    general, iTunes=audio, and QuickTime player=video.
    I believe that OS X is already set up along these
    lines and the appropriate application will open up
    according to file types and file extensions....
    .......... Lorna says ................................................
    But James every now and again I deal with some sort of programlet or another, and it asks me whether or not I want to have THAT program as my default handler of (whatever). In the past (but probably prior to Tiger) I have accepted the idea because it seemed sane and probably appropriate. I know that in the past, it was a matter of choice between iTunes and QuickTime.
    This
    is not to say, though, that the occasional podcast
    or ITMS video file can't be played in iTunes and
    that QuickTime player can't also open up audio
    files.
    .......... Lorna says ................................................
    Aha. My podcasts come in thru iTunes. That is how I accidentally discovered (the other night) that I had probably clicked onto someone's podcast icon. It had lovely music on it.
    Ultimately, everything is part of the same
    thing. That's what is so easy about using
    Macs...things just work.
    So no worries, Lorna.... I have added some audio to
    my website, too....dedicated to you, Lorna... It's
    just baby sounds, but hey...it's SOUND!
    .......... Lorna says ................................................
    Those sounds are very sweet. Baby squeals are always heart tuggers. Innocent, vulnerable creatures always have a straight path to the heart, and thus so do the little creature sounds that they make.
    I am soon going to work on my second song for another page. As you know, I began it last night.
    (The only semi-nightmare scenario I see is me not being too acquainted with the html page, and maybe sneezing and my mouse erases data on the page and everything on that page gets wiped out. I am a little bit (a lot) afraid of messing up changing the html on the new page. 8-( 8-( 8-( And Apnewbie is somewhere in the mountains with his son. HahahahahahaHAHAHA!
    OK. Back to serious controlled business here.
    Lorna in Southern California

  • I want to make Preview the default instead of the Adobe Acrobat

    ...because I think Preview is faster.
    so how do u make it default?

    Hello shroudlupe,
    First, locate the file type or types you wish to have open with Preview in Finder. Then control->click on the file and choose *Open with*, which should open a small submenu, and then choose "Preview" from the list or choose Other to browse for the Preview application or application of your choice.
    You can also do this by choosing "Get Info" from that same shortcut menu from control->clicking the file. Towards the middle/bottom of the window should be an option that says "*Open with*:." Here you can select the Application you wish to have open the file by default. You can also choose the "*Change All*" button as well to be sure that any file of that type is opened by the same application.
    Hope this helps.
    B-rock

  • Want to make firefox my default brouser but get error message "can"t initialize plug ins directory" try again later?

    That's the basic problem. I've tried a number of trouble shooting corrections; but nothing works.

    Hello,
    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    Please report back to see if this helped you!
    Thank you.

  • Want to make google my default search engine in safari

    When doing a search today on my ipad, I inadvertently checked a box asking to have yahoo become default search engine. I didn't realize until it was too late. I want to go back to using google for search when I have safari open. Don't seem to see a way to change back to google. Any help you can give me would be most appreciated.

    Thank you so much. Somehow I got on yahoo search, no one else was able to give me an answer!  This was so simple!

  • I can't find the mailto application in the tools menu. I want to make Gmail my default mail program

    I'm trying to set Gmail as my default mail program in Firefox. When I go to Applications, there is no "mailto" application and I'm unable to select Gmail for emails.
    Thanks

    Try to rename (or delete) the mimeTypes.rdf file in the Firefox profile folder to reset all file actions.
    *http://kb.mozillazine.org/mimeTypes.rdf
    *http://kb.mozillazine.org/File_types_and_download_actions#Resetting_download_actions
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    You can check the network.protocol-handler.external.mailto prefs on the about:config page.
    If network.protocol-handler.external.mailto prefs are user set (bold) then right-click and Reset them to the default value.

  • How can I REMOVE the Yahoo! tab from the menu bar? Each time I open Firefox, I get the gialogue box asking if I want to make yahoo the default and each time I respond no and check the do not ask this question again.

    I am tempted to remove Ff4 and revert to 3.X if I cannot fix this problem. The question (statement) has all pertinent details already included

    '''Hello peacefultrev,'''
    I believe from your question you wish to remove the window title-bar, while keeping the menu bar available.
    I have two solutions for you to try. One requires no plugin and the other requires the installation of a plugin.
    '''No plugin option:'''
    This option hides the the window title while also removing the menu bar. The menu bar can then be reactivated and viewed simply by pressing "Alt" which shows the menu bar until you click away from it. To do this:
    # Right click on the tab bar and disable "Menu Bar".
    # Whenever you which to use the menu bar, tap "Alt" on your keyboard.
    # When you click away from the menu bar the windows title will disappear until you tap "Alt" again.
    '''Plugin Option:'''
    You can download this plugin called [https://addons.mozilla.org/en-US/firefox/addon/hide-caption-titlebar-plus-sma/ Hide Caption Titlebar Plus] which can be customized to suit your needs. I cannot provide support on this plugin as I have not used it myself.
    I hope one of these solutions will suit your needs.
    Mattlem

  • Firefox page ask me if I want to make Mcafee my default page then it shows a big red and white warning sign. How do I get ride of it or stop it?

    I am allowed to go on line but the warning says that there are viruses if I continue.

    What screen is this you are getting? It somewhat sounds like you might have a virus infection already (fake antivirus).
    Download and Install MalwareBytes Anti-Malware, run a full Scan. [http://www.malwarebytes.org/ http://www.malwarebytes.org/]
    Download and Run TDSSKiller [http://support.kaspersky.com/faq/?qid=208283363 http://support.kaspersky.com/faq/?qid=208283363]
    Download and Install Microsoft Security Essentials [http://windows.microsoft.com/en-US/windows/products/security-essentials http://windows.microsoft.com/en-US/windows/products/security-essentials] (not an official endorsement, but I personally recommend MSE as an awesome permanent anti-virus)
    Double check for all Windows Updates.
    Is McAffee your anti-virus?

  • Want update photoshop elements 9 to 9.03/ use new iMac Mac OS X Yosemite / Have Installation CD since 2010 and most probably missed update 9.02 because seldom used Elements 9

    Have Pse since 2010 and seldom used application. Now with new iMac with iOS X Yosemite want reinstall pse 9 and update to current 9.03 version.

    Hi Atul Saini
    still unable to update to newest version 9.03.
    following message is showing up
    Adobe Photoshop Elements 9.0.3-Update
      Beim Herunterladen dieses Updates ist ein Fehler aufgetreten. Schließen Sie den Vorgang und versuchen Sie es später erneut.
      Photoshop Camera Raw 6.5-Update
      Beim Herunterladen dieses Updates ist ein Fehler aufgetreten. Schließen Sie den Vorgang und versuchen Sie es später erneut.
    regards Beat

Maybe you are looking for

  • How do you identify who is currently using a procedure?

    Hello Im trying to update a procedure that is on our server but i get his message ORA-04021: timeout occurred while waiting to lock object TPJ.SP_ACC_POP_CV_SUM 04021. 00000 - "timeout occurred while waiting to lock object %s%s%s%s%s" *Cause: While w

  • Substitute an apostrophe in a String class

    I've spent two days on this problem so I figure it's time to drop the "trial and error" and get an answer. I am building an employee directory on which a tooltip will display the employee's name and 3 phone numbers. The data will be formatted in the

  • Adobe Updater Not Updating

    I am having INSANE problems with my tablet pen and tried to manually update Photoshop Cloud product and the updater says (both from the Updater Programa and from within Photoshop) that the update has failed. It's driving me nuts.

  • HELP!!!! MY IDEAPAD U350 JUST STOPPED WORKING

    Hi there, my husband bought me an IdeaPad U350 for Christmas and a couple of days ago while I was entering some data it froze and nothing could fix it.  We tried the old faithful Ctrl+Alt+ delete - still nothing.  Eventually we could switch it off bu

  • Rdb ODBC 3.3.2.4 Driver

    Hi, I've found the release notes for the Rdb ODBC 3.3.2.4 driver, but I can't find the download link. The only Rdb ODBC driver I can find is 3.3.2.0 which was last updated in June of 2010. Can anyone point me towards the 3.3.2.4 driver? Thanks, Sean