I used to be able to attach a document to an iCal entry.   After the latest update, it appears this option has been removed.  How can I add an attachment now?  Thanks!

I used to be able to attach a document to an iCal entry.   After the latest update, it appears this option has been removed.  How can I add an attachment now?  Thanks!

Hi Dan,
Yes, iCal 4.0.4 (1395.7). In edit mode, the 'attachments' option is between 'Invitees' and 'URL' (see below). As I said this is for calendars under On My Mac, I suspect you are not seeing this as your event is on MobileMe.
Best wishes
John M

Similar Messages

  • My mini iPad is disabled due to kid trying passcode too many times; laptop used for setting the iPad has been rebooted; how can I enabled my iPad now?

    Please help, and forward the answer to [email protected] as well.
    Thanks.

    Recovery Mode
    1. Disconnect the USB cable from the device, but leave the other end of the cable connected to your computer's USB port.
    2. Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to turn off.
    3.While pressing and holding the Home button, reconnect the USB cable to the device. The device should turn on.
    4. Continue holding the Home button until you see the "Connect to iTunes" screen. When this screen appears, release the Home button. iTunes should alert you that it has detected a device in recovery mode. Click OK, and then click Restore to restore the device.
    Note: Data will be lost. You may have to repeat the above many times.

  • How can I add an attachment to an email without showing it in the body of the email?

    How can I add an attachment to an email without showing it in the body of the email?

    1. You must open attachment first
    2. Tap the square with arrow on top right and select mail
    3. Compose your email

  • How can I add an attachment to an aol email?

    How can I add an attachment to an aol email?  The compose window has no toolbar, thus no paperclip icon to add an attachment.

    1. You must open attachment first
    2. Tap the square with arrow on top right and select mail
    3. Compose your email

  • HT3387 When I use pages the languages that I mainly use are English and Hebrew. The spellchecker works for English but not with Hebrew. How can I add another language to the spellcheck?

    When I use pages the languages that I mainly use are English and Hebrew. The spellchecker works for English but not with Hebrew. How can I add another language to the spellcheck?

    http://m10lmac.blogspot.com/2011/06/extra-spell-checking-dictionaries-for.html

  • After the last update on iTunes I have not been able to get into the program. I have uninstalled all components and reinstalled and now it is telling me I am missing .dll files. I am so frustrated. I probably lost my entire library except what I purchased

    After the lastest update on iTunes I have not been able to get into the program. I have uninstalled all components and reinstalled and now it is telling me I am missing .dll files. I am so frustrated. I probably lost my entire library except what I purchased

    Your library should be safe.
    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • The latest update of my IPhone 3GS has failed, now i can't use the phone. Please help.

    The latest update of my IPhone 3GS has failed, now i can't use the phone. I have tried to restore but i get a message saying 'Iphone could not be restored. An unknown error occured(6). I am running the latest version of itunes (10.4) Please help.

    Place your iPhone in manual recovery mode or DFU mode.
    1. Connect your iPhone
    2. Open iTunes
    3. Hold down the home and power button for 8 seconds. After 8 sec, let go of the power but still hold down the home button until iTunes recognize your phone in recovery mode

  • I am using the iPad 3 64 and am an avid photographer . I have been using iPhoto as my editor when I download my pic to my iPad . I have upgraded to IOS 6.  Please tell me why has the delete option has been removed iPhoto?

    I am using the iPad 3 64 and am an avid photographer . I have been using iPhoto as my editor when I download my pic to my iPad . I have upgraded to IOS 6.  Please tell me why has the delete option has been removed iPhoto?

    That was the first thing I check, my X no longer exist, the app still works fine and does everything it did in the past, the the x (delete) option is no longer there.  I have deleted and redownloaded the app and did a complete reset, X still not there as an option.  Is anyone else experiencing this problem? 

  • My Mac book air has been lost, how can i track? I have been already using Icloud id to track...but the system is still offline...what other ways can i track this?

    My Mac book air has been lost, how can i track? I have been already using Icloud id to track...but the system is still offline...what other ways can i track this?

    You cannot. Your best course of action is to immediately change all your internet passwords, notify the police and your insurance company. Send the remote wipe command to the MBA through iCloud.com and buy a new one from the insurance reimbursement.

  • How can I add file attachment to my form and get the attachment by email?

    I'm using this code and it works fine, but I don't get the attachment file in the email. How can I add this to my code?
    HTML
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script>
    <script src="http://dev.jquery.com/view/trunk/plugins/validate/jquery.validate.js" type="text/javascript"></script>
    <script type="text/javascript">// <![CDATA[
                  $(document).ready(function() {
                    $("#form1").validate({
                      rules: {
                        first: "required",// simple rule, converted to {required:true}
                        email: {// compound rule
                        required: true,
                        email: true
                      last: {
                        last: true
                      comment: {
                        required: true
                      messages: {
                        comment: "Please enter a comment."
    // ]]></script>
    <script type="text/javascript">// <![CDATA[
    function validate ()
              if (document.form1.first.value == "")
              alert("Please enter your First Name");
              document.form1.first.focus();
              document.form1.first.style.border="1px solid red";
              return false;
              else if (document.form1.last.value == "")
              alert("Please enter your Last Name");
              document.form1.last.focus();
              document.form1.last.style.border="1px solid red";
              return false;
              else if (document.form1.emailaddress.value == "")
              alert("Please enter your Email Address");
              document.form1.emailaddress.focus();
              document.form1.emailaddress.style.border="1px solid red";
              return false;
    function has_focus() {
        if(document.form1.first.value == "")
                                  document.form1.first.focus();
                                  document.form1.style.first.border="1px solid green";
    function set_focus(x)
              document.getElementById(x).style.border="1px solid #80CA75";
    function clear_focus(x)
              document.getElementById(x).style.border="1px solid #DBDFE6";
    // ]]></script>
    </head>
    <body>
    <p><span style="color: #666666; text-align: center; font-size: 13px;">Please complete this form if you have any technical issue.</span></p>
    <form id="form1" action="http://www.southsun.com/php/tech_issue.php" enctype="multipart/form-data" method="post">
    <table style="width: 850px; font-size: 15px; padding-left: 20px; text-align: center;" border="0">
    <tbody>
    <tr>
    <td style="text-align: left; padding-bottom: 20px;" colspan="2">
    <h2><span style="color: #666666;">Please complete this form if you have any technical issue.</span></h2>
    </td>
    </tr>
    <tr style="padding-top: 40px;">
    <td style="text-align: left;"><span style="color: #abaf6f;"><strong>First Name</strong>:*</span><input id="first1" name="first" type="text" />  <br /><br /> <span style="color: #abaf6f;"><strong>Last Name</strong>:*</span><input id="last1" name="last" type="text" /><br /><br /> <span style="color: #abaf6f; padding-right: 33px;"><strong>Email</strong>:</span><span style="color: #abaf6f;">*</span><input id="email1" name="email" type="text" /><br /><br /> <span style="color: #abaf6f;"><strong>Shipping Method:</strong><br /></span> <input name="shippingmethod" type="radio" value="prioritymail" /> Priority Mail                                                                 <input name="shippingmethod" type="radio" value="store" /> In Store Pick up <br /> <input name="shippingmethod" type="radio" value="ground" />  Ground                                                                       <input name="shippingmethod" type="radio" value="3day" /> 3 Day Select<br /><br /> <span style="color: #abaf6f;"><strong>Payment Method:</strong><br /></span> <input name="paymentmethod" type="radio" value="paypal" /> Paypal Method                                                       <input name="paymentmethod" type="radio" value="creditcard" /> Credit Card<br /> <strong><br /> <span style="color: #abaf6f;">If getting an error message, please explain the error:</span></strong><span style="color: #abaf6f;"> <br /></span> <textarea id="errormessage" cols="20" rows="2" name="errormessage"></textarea><br /><br /></td>
    <td style="border-left: 1px solid grey; padding-left: 40px; text-align: left;"><span style="color: #abaf6f;"><strong>If using Paypal, Were you redirected successfully?</strong><br /></span> <input name="paypalredirect" type="radio" value="yes" /> Yes                                                                 <input name="paypalredirect" type="radio" value="no" /> No<br /><br /> <span style="color: #abaf6f;"><strong>If using Credit Card, Did you get an error?</strong><br /></span> <input name="carderror" type="radio" value="yes" /> Yes                                                                  <input name="carderror" type="radio" value="no" /> No<br /><br /> <span style="color: #abaf6f;"><strong>What happened after clicking place order? </strong><br /></span> <textarea id="placeorder1" cols="20" rows="2" name="placeorder"></textarea><br /><br /> <span style="color: #abaf6f;"><strong>Comments</strong>: <br /></span> <textarea id="comments1" cols="20" rows="2" name="strcomments"></textarea><br /><br /> <span style="color: #abaf6f;"><strong>Attach PrintScreen</strong>: <br /></span> <input name="strresume" type="file" />
    <div style="height: 50px;"> </div>
    </td>
    </tr>
    <tr>
    <td style="padding-top: 20px;" colspan="2">( * ) indicates required fields</td>
    </tr>
    <tr>
    <td style="text-align: center; padding-top: 20px;" colspan="2"><input class="button" name="submit" type="submit" value="Submit" />                        <input class="button" name="reset" type="reset" value="Reset" /></td>
    </tr>
    </tbody>
    </table>
    </form>
    </body></html>
    PHP
    <?php
    echo $savestring;
    //--------------------------paramaters--------------------------
    // Subject of email sent to you.
    $subject = 'prueba con uploads';
    // Your email address. This is where the form information will be sent.
    $emailadd = '[email protected]';
    // Where to redirect after form is processed.
    $url = 'http://www.pch-graphicdesign.com';
    // Makes all fields required. If set to '1' no field can not be empty. If set to '0' any or all fields can be empty.
    $req = '0';
    $target_path = "http://www.pch-graphicdesign.com/php/uploads/";
    $target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
    $text = "Results from form:\n\n";
    $space = ' ';
    $line = '
    foreach ($_POST as $key => $value)
    if ($req == '1')
    if ($value == '')
    {echo "$key is empty";die;}
    $j = strlen($key);
    if ($j >= 20)
    {echo "Name of form element $key cannot be longer than 20 characters";die;}
    $j = 20 - $j;
    for ($i = 1; $i <= $j; $i++)
    {$space .= ' ';}
    $value = str_replace('\n', "$line", $value);
    $conc = "{$key}:$space{$value}$line";
    $text .= $conc;
    $space = ' ';
    mail($emailadd, $subject, $text, 'From: '.$emailadd.'');
    echo '<META HTTP-EQUIV=Refresh CONTENT="0; URL='.$url.'">';
    ?>

    Sending a file as an attachment to an email involves setting the correct MIME type and headers. There's a brief tutorial here: http://webcheatsheet.com/php/send_email_text_html_attachment.php.
    Also, you need to use the same name as in your form. In the script you have shown here, the name of the file field is strresume, but your processing script uses this: $_FILES['uploadedfile']['name']. It should be this: $_FILES['strresume']['name']

  • How can I add a attachment field to my new form list

    I have the setting checked yes for attachments. Then I click on the edit tab above then attach file, once I attach the file, it disappears and I cant see it after the record is saved. So how would I add a attachment to a record?

    Hi Soupi,
    From your description, my understanding is that you want to show attachments in list view.
    By default, the list view only contain the Title column. If you want to show whether there is an attechment in an item, you can modify the view and show the Attachments column as Clicking List->Modify View, check "Attachments" in Columns section.
    After the above, the result is like:
    In the above image, test1 has an attachment, test1 doesn't have attachments.
    Thanks,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Your site is recommended by a site and after the latest update of firefox, I cannot use your site like I use to do.

    the site farmtowngifts.com worked very well prior to the latest update of firefox and firefox is even recommended by this site. Now it is not working properly.

    uninstalled firefox ....deleted all files still remaining under mozilla firefox directory in program files ... to avoid having to reprogram all my settings, reisntall all addons as well .. I did not remove anything from mozilla firefox that is stored in either appdata or under the windows users directory (if any)
    ... the as suggested reinstalled the latest version of the firefox browser using the link you provided in the email ..; tested and several issues still remain present and unresolved ....
    so please this is urgent or I will have to jump browsers and start using chrome .. because we work 14 hours a day 6 (sometimes 7) days a week, to get ready for the launch of our newest venture and we cannot lose that much days on browser related issues ... so please instead of putting me through week long step process .. of do this .. do that .. can you please actually look into the issue from your end .. I use firefox for so many, many years thta I deserve this kind of support .. thnx Robert

  • Have the problem to export media use the queue after the latest update of Premiere and Media encoder?

    After update the Premiere CC 2014 and Encoder CC 2014, I couldn't export the movie use the Queue function?
    There always had a unknown error stop the process. (Compile error?)

    You need to fix that first.
    Export and preview in the Media Encoder and watch when it stops.
    There you need to fix the timeline.
    Start a new project to see if you can use AME.

  • After the latest update to the iphone I cannot use vine or snapchat

    can't use snapchat or vine after latest update, anyone else?

    pitbullmutt wrote:
    can't use snapchat or vine after latest update, anyone else?
    Why not? What happens when you try? Have you tried deleting the apps and reinstalling? Have you tried resetting your device by pressing and holding the Home button and power button until the silver apple appears? Have you tried contacting the app developers?

  • How can i add a buy now button using any pmt. gateway provider. I cannot use Paypal. I will lose too much business. Old dogs don't like new tricks.......

    i am creating a site for a carnival. I need people of wealth to buy tickets to the event. they don't even know what paypal is and will not go through the trouble of setting up an account. I just want to be able to uses an outside payment gateway. I am so new to site building please speak is simple terms. I'man old dog trying to learn a new trick...Any help would be almost worshiped at this point...LOL

    Provide the name of the program you are using so a Moderator may move this message to the correct program forum
    This Cloud forum is not about help with program problems... a program would be Photoshop or Lighroom or Muse or ???

Maybe you are looking for

  • IDOC Posting with new fields in VA01

    Hi, Previously i asked for creating New fields in VA01 screen. i got that now i need to create a sales order based on the Inbound IDOC  which i get and i will be getting new fields which are created . And this Fields data is coming from an Extension

  • Redaction error Acrobat XI Pro Windows

    When I mark for redaction on a page and apply the redaction, it is adding the same black marks on every second page from that original redaction, on the same spot on the page, in the rest of the document. However it doesn't actually redact the area i

  • Lock a tcode for particular user

    Hi Experts i need to lock few transaction for particular users only. we have n number of roles and the transactions have been assigned to some tcodes to be reasticted  for a list of users. is there any method or program to built to restrict the users

  • Network Drive Reconnect after Network reconnects?

    I use hamachi to mount a network drive on my home server (which I back up files to, etc.) on my OSX 10.8.1 MBP. The problem is that I'm constantly having to connect / reconnect to the wireless network at work (just because of how much I move around b

  • 8.3.1. adobe pdf on macbook pro

    since downloading Maverick error msg appears in apple mail striking through adobepdfde800