My iPhoto "share" drop down menu no longer has the burn dvd option.  What do I do?

My iPhoto "share" drop down menu no longer has the burn dvd option.  What do I do?

That feature was dropped with iPhoto 9.  Select the photos you want to burn to disk, export to a folder on the Desktop via the File ➙ Export ➙ File Export  menu, insert a blank disk in the optical dirive, drag the folder onto the disk icon and drag it to the Trash bin to burm.
OT

Similar Messages

  • My application tells me that Flash Player is out of date but, my my drop down menu says I have the latest version. What do I do?

    I have 3 Flash Player installers in my download folder. Not one of them will load properly, or install the update I'm told I need. Any suggestions folks?  Thanks.

    https://forums.adobe.com/thread/1195540

  • My Bookmarks menu no longer has the "manage bookmarks" option. Where has this functionality gone?

    The top of the Bookmarks menu now only contains "Bookmark this page" and "Show all bookmarks". I'm running Firefox 4.0.1 on Windows XP.

    "Show All Bookmarks" is the same as "Organize Bookmarks". It has all the same feature, just changed the name.

  • Multiple drop down menu items to populate the a separate text box...more help please

    Thanks to Gilad D67 for showing me how to have multiple drop down menu items appear in a separate text box. This stuff blows my mind. Is there any script I can use to make a new drop down menu item appear in the same text box, but on a new line below a previous entry. For example. I select 'cat' from my drop down menu and it appears in my text box. Now I choose 'dog' from my menu and it appears in my text box like so  'cat dog.' Is there any way I can make 'dog' go straight to a new line automatically without having to manually go into the text box and change it?
    cat
    dog (new selection goes straight to a new line)
    Now, I don't have a clue if this is also possible, but imagine, I don't like my drop down menu selection of 'dog' and I go back into the menu and I change to 'rat' but in the text box, 'dog' still appears and 'rat' is added. Do I have to manually delete 'dog' from the text box or is there script that can do this for me.
    Any assistance would be incredible. It amazes me how people know this stuff.
    This is the script I have so far
    (function () {
        // Do nothing if not committed
        if (event.willCommit) return;
        // Set up an array to hold the individual paragraphs of text
        var aQuotes = [3];
        // Populate the array with the paragraph text
        aQuotes[0] = "Use common singular nouns, plural nouns [plural ‘s’] and proper names to say what things are"
        aQuotes[1] = "Use numbers 1–10 to count"
        aQuotes[2] = "Use basic adjectives and colours to say what someone/something is or has"
        // Get the selected item, which is the export value of the selected combo box item
        var item = event.changeEx
        // Display the text corresponding to the selected item in the text field
        getField("Text30").value += " " + aQuotes[item];

    You have to set the option for the text field to be multiline and then change the last line of the script to:
    getField("Text30").value += "\r" + aQuotes[item];
    To reset the field you can use a separate button with a Clear Form command, and then you just select this one field from the list.

  • CSS Drop down menu; how to align the right edge of drop down and parent menu?

    Hello everyone,
    I have a drop-down menu that is currently working well.
    The only change I need to make is to have the right edge of the  drop-down menu to align with the right edge of the parent menu. When you  hover over the menu, it currently "drops" down and to the right, with  the left edges aligned.
    I want the menu to "drop" down and to the left, so the right edges are aligned.
    I have tried fiddling with floats and absolute/relative positioning. I'm not sure what needs to be changed.
    Any help you can provide is greatly appreciated! I'm learning via "cut and paste", so please go easy on any terminology you may use.
    Thank you!
    Here is my code:
    .chromestyle{
         width: 100%;
         font-weight: bold;
         float: left;
         height: 29px;
    .chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    .chromestyle ul{
    border: 0px solid #BBB;
    width: 100%;
    background: url(chromebg.gif) center center repeat-x; /*THEME CHANGE HERE*/
    padding: 4px 0;
    margin: 0;
    text-align: right; /*set value to "left", "center", or "right"*/
    .chromestyle ul li{
    display: inline;
    .chromestyle ul li a{
    color: #000000;
    padding: 4px 7px;
    margin: 0;
    text-decoration: none;
    border-left: 1px solid #DADADA;
    .chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
    background: url(chromebg-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
    /* ######### Style for Drop Down Menu ######### */
    .dropmenudiv{
    position:absolute;
    top: 0;
    border: 1px solid #BBB; /*THEME CHANGE HERE*/
    border-bottom-width: 0;
    font:normal 12px Verdana;
    line-height:18px;
    z-index:100;
    background-color: white;
    width: 200px;
    visibility: hidden;
    .dropmenudiv a{
    width: auto;
    display: block;
    text-indent: 3px;
    border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
    padding: 2px 5px;
    text-decoration: none;
    font-weight: bold;
    color: black;
    * html .dropmenudiv a{ /*IE only hack*/
    width: 100%;
    .dropmenudiv a:hover{ /*THEME CHANGE HERE*/
    background-color: #0000ff;
    color: #fff200;

    Try this:
    .chromestyle{
         font-weight: bold;
         height: 29px;
    .chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    .chromestyle ul{
    border: 0px solid #BBB;
    width:100%;
    background: url(chromebg.gif) center center repeat-x; /*THEME CHANGE HERE*/
    padding: 4px 0;
    margin: 0;
    text-align: left; /*set value to "left", "center", or "right"*/
    .chromestyle ul li{
    display: inline;
    .chromestyle ul li a{
    color: #000000;
    padding: 4px 7px;
    margin: 0;
    text-decoration: none;
    border-left: 1px solid #DADADA;
    .chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
    background: url(chromebg-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
    /* ######### Style for Drop Down Menu ######### */
    .dropmenudiv{
    position:absolute;
    top: 0;
    border: 1px solid #BBB; /*THEME CHANGE HERE*/
    border-bottom-width: 0;
    font:normal 12px Verdana;
    line-height:18px;
    z-index:100;
    background-color: white;
    visibility: hidden;
    text-align:left;
    .dropmenudiv a{
    width: auto;
    display: block;
    border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
    padding: 3px;
    text-decoration: none;
    font-weight: bold;
    color: black;
    * html .dropmenudiv a{ /*IE only hack*/
    width: 100%;
    .dropmenudiv a:hover{ /*THEME CHANGE HERE*/
    background-color: #0000ff;
    color: #fff200;
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • In firefox 4, bookmarks drop down menu dissapeared next to the home buttom, but appears to be there when customizing, when clicking done, is dissapears

    My bookmark drop down menu disappeared next to the home button on firefox 4. When I right click customize, the bookmark drop down appears on menu bar, but when clicking done, it's gone again. I went into customize and removed it then put it back. When clicking done, it is gone again and will not appear. It happened when I click tools, options, tabs, and uncheck open new windows in a new tab, then clicked ok

    I had this same problem, using Ubuntu 11.04, here is the solution, pretty simple after trying 800 things to find the solution. Go to your addons, disable the addon called "global menu bar integration", then if your menubar is still viewable, disable it, and then you can see the drop down menu for your bookmarks. If you don't have Ubuntu then you just need to disable your menubar directly (the one with File, Edit, View, etc).

  • The "Clear Search History" feature in the upper right drop-down menu no longer works in Firefox 4.

    The "Clear Search History" feature in the upper right drop-down menu that shows search terms no longer seems to work in Firefox 4.

    It is possible that there is a problem with the file that stores the "Saved Form" data.<br />
    Rename or delete formhistory.sqlite (plus formhistory.sqlite-journal and formhistory.sqlite.corrupt and formhistory.dat, if they exist) in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder] in case there is a problem with the file that stores the "Saved Form" data.<br />
    This will remove all saved form data, so you may want to rename formhistory.sqlite to formhistory.sqlite.sav or move the file to another folder in case you need to recover some saved data.
    You may also need to delete search.sqlite and search.json in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder]

  • Drop down menu (sorry long post)

    Hi, im at university and for a piece of coursework I have to
    make a professional looking website. I have decided to load
    external SWFs, rather that have long loading times, because of this
    I have a container, which the SWFs are loaded into. I also have a
    drop down menu, which is in its own Movieclip, the structure of the
    menu is below:
    Whole Menu (intstance name: 'entire')
    V
    V
    First Header (gtaiv_menu)
    V
    V
    First drop down (box1)
    The container is on Scene 1, at the moment I can load the SWF
    by clicking on 'box1' but it loads in its own window, not the
    container, my question is how do I load the SWF into the container
    on scene 1 by clicking box1?
    Thanks, again sorry for the long post.

    Can anyone help me? I am starting to think of putting all the
    information into one SWF, which means long loading times.
    Also I apologize for posting three topics, I did not realise
    I had done this until it was too late, the computer I was on at the
    time was particularly slow.

  • How do i create a drop down menu for selecting from the drop down arrow

    how can i create a drop down menu so that when i click on the arrow in the cell i can select from the menu that appears

    katiesandell wrote:
    how can i create a drop down menu so that when i click on the arrow in the cell i can select from the menu that appears
    Hi Katie,
    Welcome to Apple Discussions and the Numbers '09 forum.
    Numbers vocabulary for this feature is a "Pop-up Menu". It's available as a Cell Format, and is set and edited in the Cell Format Inspector.
    See "Using a Checkbox, Slider, Stepper, or Pop-Up Menu in Table Cells" starting on page 96 of the Numbers '09 User Guide.
    This guide, and the equally useful iWork Formulas and Functions User Guide are available for download through the Help menu in Numbers.
    Regards,
    Barry

  • On the Firefox drop down menu for Firefox 4, the tab for cut, copy and paste is not highlighted. Is there another way for me to include this on the Firefox start page?

    I have Firefox 4. In the Firefox drop down menu, there is an option to cut, copy and paste but it is not highlighted. Please tell me how to highlight this link. Or is there a way to have a cut copy and paste tab?

    Those links in the Edit menu are only highlighted if there is something to do:<br />
    Paste should be enabled if the clipboard has data placed on it by a previous Copy or Cut and you have set focus on a text area or field that allows to paste that data.
    Copy works if some text is selected.

  • Multiple drop down menu items to populate the same separate text box. How can I do it?

    In Acrobat Pro X, I've figured out how to create a drop down menu with items that will populate a separate text box, but how can I get multiple menu items to populate the same text box. For example. My drop down menu has three items  cat, dog, mouse. I choose cat and it appears in my separate text box (hooray). Next, I choose 'dog' from the same menu. I would like it to appear in the same text box along with my previous selection 'cat.' Is this possible? I'm very new to Java Script, any assistance would be greatly appreciated! Thank you

    She is the script I'm using
    (function () {
        // Do nothing if not committed
        if (event.willCommit) return;
        // Set up an array to hold the individual paragraphs of text
        var aQuotes = [3];
        // Populate the array with the paragraph text
        aQuotes[0] = "cat"
        aQuotes[1] = "dog"
        aQuotes[2] = "mouse"
        // Get the selected item, which is the export value of the selected combo box item
        var item = event.changeEx
        // Display the text corresponding to the selected item in the text field
        getField("Text field 1").value = aQuotes[item];

  • The tools drop down menu does not have the options "button?" or whatever it is called. So, how do I get it back or better yet... where is it? 14.1.0 mac

    I am on a Mac. I am running Firefox 14.0.1 In the tools drop down menu, there is no options button. where is it or how do i restore it to the tools menu?

    Thanks for the reply, but I didn't understand it. As you can tell, I am not very good with computer jargon. So, I have to be walked through every step.
    Still, I think you were not trying to answer my Tools/option question so much as tell me how to do something else. On this, I could be incorrect.

  • I am trying to import bookmarks from google account. Your drop down menu does not have the "import" option. How can I do this?

    Your instructions for importing bookmarks/favorites are to click the top left Firefox button and select "import" to start the process. I don't have that option, there is not "import" in the drop down menu. How can I import bookmarks into Firefox?

    You will still find it in the File menu in the Firefox 5 version that you are using.<br />
    If Firefox 7 is has been moved to the Bookmarks Manager.
    Press F10 or tap the Alt key to bring up the "Menu Bar" temporarily if the Menu Bar is hidden.
    If you managed the bookmarks via the Google toolbar on the Google server then see:
    * http://www.google.com/bookmarks

  • How do I remove the autocomplete drop-down menu from textboxs, not the awesome bar?

    I like having the drop-down menu from the url, but the autocomplete option for textboxs within like when I type my username and it pops up with all of the ones that has been used on that site are really annoying. How do I get rid for the latter? I didn't have this before I upgraded to Firefox, and now I can't get rid of it. Fyi, I'm rather tech inept, don't use complicated comp sci words please!

    You can use History > 'Clear Recent History" to clear already saved form data.
    *https://support.mozilla.org/kb/Clear+Recent+History
    Use these steps to remove saved (form) data from a drop down list:
    #Click the (empty) input field on the web page to open the drop down list
    #Highlight an entry in the drop down list
    #Press the Delete key (on Mac: Shift+Delete) to remove it.
    *http://kb.mozillazine.org/Deleting_autocomplete_entries
    See also "Prevent Firefox from automatically completing URLs":
    *https://support.mozilla.org/kb/search-your-bookmarks-history-and-tabs-awesome-bar

  • My context menu no longer has the options to delete, remove etc.

    My context menu no longer has some of the options it used to have. I have disabled a number of add-ons to solve the problem, but it didn't work. I don't find options like opening the link in a different window or tab useful. Could you please tell me how I can change my context menu that has options of deleting, renaming, removing, editing a tab or a folder in my email account (Yahoo)?
    Thank you.
    Shafiq Islam

    Web pages can replace the context menu to their own version and suppress the regular context menu.
    You can set the <b>dom.event.contextmenu.enabled</b> pref to false on the <b>about:config</b> page to prevent web pages from modifying the right-click context menu.

Maybe you are looking for