EXC_BAD_ACCESS in Numbers & iCal

Hi there,
Can some one give a hint how to troubleshoot this "unexpected crash", here is the error report:
https://gist.github.com/eb4bc66c03affb14b3f1
Thanks in advance,
Lyubomir

Here is a screenshot in case that no crash is shown (but still - totally unusable):
http://screencast.com/t/JIFV2EOY
ideas?

Similar Messages

  • Numbers -iCal. Wan t to set up Roman Calen dar

    I'd like to set up the roman Kalends on my ical. As the Latin names for the days are pretty much repetitive, the best way to set up a year's worth is to create the entries in Numbers (or excel) and port them in to iCal.
    For example:
    Column 1 column 2 column 3 column 4 column 5
    3/19/09 ante diem quartus decimus Kalendas Apriles
    3/20/09 ante diem tertius decimus Kalendas Apriles
    3/21/09 ante diem duodecimus Kalendas Apriles
    Etc...
    I want to create an all day entry of a contacted columns 2 - 5.
    I'm running 10.4.11, iCal 2.0.5 and iWork '08.
    Thank you very much.
    p.s. I have never written and Apple Script.

    This has nothing to do with Paragraph Style(s).
    I have placed an auto page number (at 500pt) on the master to represent your page numbers...study this screen shot.
    You might want a new Master Page dependent on your document, but it is not necessary, as per my example.

  • How do I export Dates from Numbers to iCal?

    I'm building a spread sheet in *Numbers '08* with +expiration dates+ for many of the line items. I would like to export those dates to iCal so that iCal can _show/send me a reminder on those dates_. I've read that some people may be using a program called Bento to interface between Numbers & iCal. Seems like one should not have to buy an entire software program to export a simple date from Numbers to ICal -- both being native Apple programs.
    Perhaps there is a way to get Numbers to send date reminders without exporting to iCal?
    Any feedback is much appreciated.

    Here is the script doing the trick with Numbers '09.
    --[SCRIPT createical_events_fromNumbers'09]
    Enregistrer le script en tant que Script : createical_events_fromNumbers'09.scpt
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Numbers:
    Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
    Sélectionner les cellules d'une table de Numbers qui décrivent des 'events'
    La table est censée contenir:
    une colonne avec la description des événements
    une colonne avec les date_heures de début
    une colonne avec les date_heures de fin
    Éditer la property 'theCalendar' en fonction du nom du calendrier à alimenter.
    menu Scripts > Numbers > createical_events_fromNumbers'09
    Le script crée les évènements dans iCal
    --=====
    L'aide du Finder explique:
    L'Utilitaire AppleScript permet d'activer le Menu des scripts :
    Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case "Afficher le menu des scripts dans la barre de menus".
    --=====
    Save the script as a Script: createical_events_fromNumbers'09.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
    Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
    In a table from Numbers '09,
    select cells describing 'events'.
    This table is supposed to embed :
    a column storing events descriptions
    a column storind start datetime
    a column storing end datetime.
    Edit the instruction defining the calendar name to fit your needs.
    menu Scripts > Numbers > createical_events_fromNumbers'09
    The script will create new events in iCal.
    --=====
    The Finder's Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the "Show Script Menu in menu bar" checkbox.
    This script creates new events from the content of selected cells from a Numbers '09 table.
    --=====
    example:
    event #1 18 avr. 2010 05:35 19 avr. 2010 15:35
    event #2 19 avr. 2010 05:35 20 avr. 2010 15:35
    event #3 20 avr. 2010 05:35 21 avr. 2010 15:35
    event #4 21 avr. 2010 05:35 22 avr. 2010 15:35
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2010/03/25
    --=====
    property theCalendar : "Personnel"
    property nbItemsPerEvent : 3
    --=====
    on run
    set {dName, sName, tName, rname, rowNum1, colNum1, rowNum2, colNum2} to my getSelParams()
    set colNum2 to colNum1 + nbItemsPerEvent - 1
    tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
    repeat with r from rowNum1 to rowNum2
    set eProps to {}
    repeat with c from colNum1 to colNum2
    copy (value of cell r of column c) to end of eProps
    end repeat -- with column
    Now, eProps contains
    - the event description
    - the start date_time
    - the end date_time
    my makeEvent(eProps)
    end repeat
    end tell -- Numbers
    end run
    --=====
    on makeEvent({descr, sDate, eDate})
    tell application "iCal"
    make new event at the end of events of (every calendar whose name is theCalendar) with properties {description:descr, start date:sDate as text, end date:eDate as text, allday event:true}
    end tell
    end makeEvent
    --=====
    on getSelParams()
    local r_Name, t_Name, s_Name, d_Name, col_Num1, row_Num1, col_Num2, row_Num2
    set {d_Name, s_Name, t_Name, r_Name} to my getSelection()
    if r_Name is missing value then
    if my parleAnglais() then
    error "No selected cells"
    else
    error "Il n'y a pas de cellule sélectionnée !"
    end if
    end if
    set two_Names to my decoupe(r_Name, ":")
    set {row_Num1, col_Num1} to my decipher(item 1 of two_Names, d_Name, s_Name, t_Name)
    if item 2 of two_Names = item 1 of two_Names then
    set {row_Num2, col_Num2} to {row_Num1, col_Num1}
    else
    set {row_Num2, col_Num2} to my decipher(item 2 of two_Names, d_Name, s_Name, t_Name)
    end if
    return {d_Name, s_Name, t_Name, r_Name, row_Num1, col_Num1, row_Num2, col_Num2}
    end getSelParams
    --=====
    set {rowNumber, columnNumber} to my decipher(cellRef,docName,sheetName,tableName)
    apply to named row or named column !
    on decipher(n, d, s, t)
    tell application "Numbers" to tell document d to tell sheet s to tell table t to return {address of row of cell n, address of column of cell n}
    end decipher
    --=====
    set { d_Name, s_Name, t_Name, r_Name} to my getSelection()
    on getSelection()
    local _, theRange, theTable, theSheet, theDoc, errMsg, errNum
    tell application "Numbers" to tell document 1
    repeat with i from 1 to the count of sheets
    tell sheet i
    set x to the count of tables
    if x > 0 then
    repeat with y from 1 to x
    try
    (selection range of table y) as text
    on error errMsg number errNum
    set {_, theRange, _, theTable, _, theSheet, _, theDoc} to my decoupe(errMsg, quote)
    return {theDoc, theSheet, theTable, theRange}
    end try
    end repeat -- y
    end if -- x>0
    end tell -- sheet
    end repeat -- i
    end tell -- document
    return {missing value, missing value, missing value, missing value}
    end getSelection
    --=====
    on decoupe(t, d)
    local l
    set AppleScript's text item delimiters to d
    set l to text items of t
    set AppleScript's text item delimiters to ""
    return l
    end decoupe
    --=====
    on parleAnglais()
    local z
    try
    tell application "Numbers" to set z to localized string "Cancel"
    on error
    set z to "Cancel"
    end try
    return (z is not "Annuler")
    end parleAnglais
    --=====
    --[/SCRIPT]
    Yvan KOENIG (VALLAURIS, France) jeudi 25 mars 2010 22:50:17

  • Pages won"t open after upgrade to Snow

    Should"ve known there were going to be problems...now after installing snow leopard, my pages will not open, my mail will not open, keynote, numbers. ical...a huge number of issues, and now with schol starting I cannot use my computer to do any work.......Any helpful thoughts would be greatly appreciated
    Tom

    Hi Thomas
    The issues most people seem to be having are
    1. Duplication of fonts and some wonky fonts. Check these and fix them in *Font Book.*
    2. That they did not correctly transfer iWork. You can't just simply drag the software over, nor will it work if you had changed the names of the folders they were in. You should have done a full migration or possibly reinstall if you can't get out of the problems.
    3. You need to have upgraded the software to the latest versions.
    Peter

  • Is there a way to darken the dates (numbers) on ical. After installing Lion I can barely read the dates of the month in ICal

    Is there a way to darken the dates (numbers) on the ICal calender. I can barely read mine after installing Lion.

    I should note that the time stays on the left of the event name when I re-enter the text (which I had to do all the time before I found the "show event times" button) so I feel like there's a way.

  • Ical week numbers and heat map missing in preferences

    Hi,
    This page describes that you can turn on/off the heat map and week numbers:
    http://www.controlyourmac.com/2012/02/10-amazing-features-of-ical-5-on-os-x.html
    I migrated from 10.6 to 10.7.4 and wonder where these checkboxes are.
    So, the configuration looks different. There is no Alerts part and no heat map and no week view. May this be due to the fact that I migrated from 10.6. and some configuration files got screwed up?
    Thank you very much for any help!

    Have you told Apple that you would like to see this feature included in iCal? You can do so at OS X Feedback, but there is no point in saying it in the discussions because Apple very carefully does not read postings on this user-to-user site.

  • ICal does not print phone numbers

    See if you can print your contact's phone numbers when you print just 1 day of your iCal calendar
    To replicate:
    1) create a meeting for any day with any contact from the address book that contains at least 1 phone number.
    2) Go to File-> Print. Select 'Day' in view and tick the Options 'Details' and Phone Numbers'
    3) See if in the preview you can see the phone number of the contact being displayed
    4) See if the phone number of the contact has been printed
    For whatever reason I cannot see the phone numbers in the preview nor in paper.
    If anyone has any suggestions please let me know.
    iCal Version 2.0.5 (1069
    OS X 10.4.9
    Thanks in advance.
    Mariano
    iMAC 24   Mac OS X (10.4.9)  

    Sorry, it always seems to work for me on any phone numbers sent to me.

  • Publish dates into iCal from Numbers

    I am trying to publish dates from a chart in Numbers to iCal or Outlook calendar. Is this something that can be done?

    Solved, I think! What you need to do is log on to your icloud account at www.icloud.com, go to the calendar screen, click the gearwheel and choose New Calendar. Create a calendar here (ie up on the iCloud) with the name you want for your imported calendar data. Then switch to iCal - you may have to quit and relaunch for the new iCloud calendar to appear (or it will probably do so automatically if you wait long enough) then import the data using File->Import->Import... When you get to the step where it asks which calendar you want to import the data into, choose the new iCloud calendar you've just created. Job done!
    To be complete in my answer, I don't think you can exactly do what you want to do, at least not at present. There doesn't seem to be any way to publish a calendar to iCloud after the first time you set up iCloud on your Mac when it exports any calendar data that is on the Mac at that time. I suppose that Apple feel that the way I have described works by exporting from one calendar and importing into another, so no need to provide a way of doing it directly.

  • Is there a way to import iCal data into a numbers spreadsheet?

    Is there a way to import iCal data into a numbers spreadsheet?

    If you want to import lots of calendar events into Numbers, the general way to proceed would be to:
    export in CSV (character-separated values) from iCal (Calendar)
    import the CSV into Numbers.
    1. can be accomplished via AppleScript (perhaps in an Automator workflow) or, perhaps more convenient, a dedicated exporter app such as Export Calendars Pro or competitors.
    2. Importing into Numbers is usually as easy as File > Open and choose the CSV file.
    SG

  • How can I create the numbering of the week in ICal

    I want to know how I can adjust ICal with the numbering of the week. I really need the number of the week often.
    Can somebody give my an answer, I looked for it and I can't find the option?
    Regards,

    Teduister,
    Welcome to Apple Discussions.
    According to Hawk Wings, you may want to consider: NumSemaine...NumSemaine is a little app which adds the week of the year to “All Day Event” Section of your iCal window.
    Not least, this drives home how soon Christmas will be upon us.
    It can also generate a ics file containing all the weeks of the year and their date ranges.
    ;~)

  • Using numbers as accounting application and combine with ical

    I am facing a slight challenge. I love using quickbooks, but there is no version for Mac in SA. I need to be able to set up numbers in such a way that when I save an ivoice as a pdf, the information on the invoice is saved on a spreadsheet in date order. I also need to have a reminder come up in ical so I can follow up on the invoice. Is it also possible for each invoice to be assigned a number automatically?
    Any feedback would be appreciated.

    I am facing a slight challenge. I love using quickbooks, but there is no version for Mac in SA. I need to be able to set up numbers in such a way that when I save an ivoice as a pdf, the information on the invoice is saved on a spreadsheet in date order. I also need to have a reminder come up in ical so I can follow up on the invoice. Is it also possible for each invoice to be assigned a number automatically?
    Any feedback would be appreciated.

  • Use iCal to alert on dates calculated in iWork Numbers

    As a followup to this https://discussions.apple.com/thread/2635173?threadID=2635173 archived discussion, I'd like to know if it is possible to have Numbers calculate dates (e.g. A workout schedule for runners) and have iCal do reminders (entries on the calendar for those days that an exercise is scheduled).
    Example entry in Numbers column:
    2013/05/03 18:00 0:20 5x(2 low, 2 rest)
    Where the time is depending on the day of week (i've got all that working) and the string "5x(2 low, 2 rest)" should go in the appointment text of ical on may 3 at 6 at night for an appointment of 20 minutes.

    As a followup to this https://discussions.apple.com/thread/2635173?threadID=2635173 archived discussion, I'd like to know if it is possible to have Numbers calculate dates (e.g. A workout schedule for runners) and have iCal do reminders (entries on the calendar for those days that an exercise is scheduled).
    Example entry in Numbers column:
    2013/05/03 18:00 0:20 5x(2 low, 2 rest)
    Where the time is depending on the day of week (i've got all that working) and the string "5x(2 low, 2 rest)" should go in the appointment text of ical on may 3 at 6 at night for an appointment of 20 minutes.

  • How can I book services in ical and have that booking generate an editable invoice in numbers

    I would like to book an appointment with billable services in ical and have that booking generate an invoice which I can edit in numbers. Possible? working on an ipad 4th generation.

    I would think with an Applescript  you could create duplicate of an invoice template which is saved in a specific file (and location) and a calendar entry with a shortcut to that new file.
    This would be something you, or someone else, would have to write, test and deploy.  It is not built into Numbers.
    You could do this manually by creating a template for your document.
    Each time you book an event you open the tamplate and save as the invoice number, then create a calendar event where you include the new invoice document as an attachment:
    Since you have posted in the forum for Numbers on Mac OS X you are getting people who mostly work in Numbers on a Mac (I am one of them).
    I will request your post be moved to the Numbers for iOS forum

  • Numbers to iCal? Export to ICS

    I'm trying to simplify my calendar situation and use numbers to import a csv, make my changes and save. I can then get that to my phone and a work calendar.
    Imprting to iCal souldn't be any more difficult. Has anyone come up with a template for iCal data? Basically the column headers.
    And now how to export?

    Actually, this IS completely possible using FileMaker and not very complicated!
    After exporting a calendar from iCal and dragging the file onto the FileMaker icon, the events will import as thousands of individual records. From here it simply becomes an exercise in parsing the data from multiple records into individual event records using a FileMaker script
    In a nutshell, your script should:
    Start at the first record
    Capture desired data from raw ICS data records into variables for temporary storage between the start and end of each event (between BEGIN:VEVENT and END:VEVENT) while deleting records with data that you don't need
    Once you reach the end of your event, create a new record in a separate table and set the event title, event date, start and end times (which can be used to calculate the total hours), and any other fields you need from the temporary variables.
    Clear the variables
    Return to the original table and loop through this same process until you reach (and delete) the last record in the raw ICS import
    I exported one of my calendars and, when imported into FileMaker there were over 47,000 records. I ran one parsing routine that took just a minute or two.
    To properly pull your data so that you could report to the tax office would take a few hours (2-3?) to program and test so you could get the raw data. To format it for reporting to the tax office would take a bit longer.
    Unfortunately, this FileMaker development my business and cannot do this for for free, though I hope to have helped you along at least a bit. Contact me separately if you'd like to discuss this more offline. You contact me via the surefootdata website.
    All the best,
    Jim

  • Can a Numbers worksheet link with iCal?

    I need a weekly update worksheet that has my iCal schedule linked to it. Does anyone know of a way to subscribe to it so that it will post onto a worksheet?

    Hello
    The response to both questions is: you can't.
    It's perfectly normal.
    Numbers is not opening XL files, it import (then export) them.
    To get this feature you must use Excel or perhaps (I didn't check) one of the free clones of Office:
    openOffice
    neoOffice.
    Yvan KOENIG (from FRANCE mercredi 16 janvier 2008 18:17:41)

Maybe you are looking for