Applescript compile fails with "Expected end of line, etc. but found identifier"

Hi,
I've written my first applescript to move messages in Micorosoft Outlook to a specific folder.  It is based on existing scripts I found on the internet.  However my version keeps failing to compile with the error "Expected end of line, etc. but found identifier".  I tried the exact same script on another Mac and it works.  I created a very simple version of the script to show the error.  All I am trying to do is get the current selected messages so I can move them:
on run {}
    tell application "Microsoft Outlook"       
        set selectedMessages to current messages
    end tell
end run
and I still get the same errors on the word "messages" above.
MAC is running OSX 10.9.4
Microsoft Outlook for Mac 2011 - version 14.4.3 (140616)
Since the script works on other computers the only thing I can assume is something wrong with the setup.
Any help is greatly appreciated.
- Ben

Frank Caggiano wrote:
twtwtw
Any reason that the parens would be needed on some cases and not in others? As you can see the code the OP posted compiled fine on my system with no need of the parens. Also the OP mentioned that the code did work on one machine but not another so I would assume again the parens were not needed in that case.
JUst curious
regards
Parentheses have the same function here as they do in mathematical equations. They are cues to the compiler about the order in which different parts of the statement should be processed. The problem here, I think, is that the word current is part of a lot of applescript nouns: current date, current application, current messages, current user, current track, current location, etc. That's exacerbated by the fact that message is also a noun in its own right in Outlook, creating an ambiguous bit of grammar. Applescript has to interpret the presence of that word in context, and several factors - different versions of the OS or of the relevant applications, the presence of different osaxen, runtime issues that alter how the Applescript system reads in the scriptability information - could affect how that interpretation plays out.
Context is (apparently) everything, sometimes.

Similar Messages

  • How to fix Syntax Error: Expected end of line, etc. but found end of script. in applescript?

    I am making an applescript for my modding tool for Minecraft. It used to use multiple apps and I am now trying to make one app for all the tasks.
    Here is the code:
    say "You are running iCraft version one point one for minecraft version 1.2.5"
    display dialog "Which tool do you want to use?" buttons {"Mod Installer", "Backup", "Restore"} default button 3
    set the button_pressed to the button returned of the result
    if the button_pressed is "Mod Installer" then
    do shell script "~/desktop/iCraft/iCraft.app/contents/re…
    display dialog "Insert all mod files into the Mods folder."
    display dialog "Have you inserted all Mod files into the Mods folder?" buttons {"Yes", "No"} default button 2
    if the button_pressed is "Yes" then
    do shell script "~/desktop/iCraft/iCraft.app/contents/re…
    display dialog "Finished"
    else
    display dialog "Insert mod files into the Mods folder and restart iCraft.app."
    end if
    if the button_pressed is "Backup" then
    display dialog "Are you sure you want to backup your Minecraft.jar in it's current state?" buttons {"Yes", "No"} default button 2
    if the button_pressed is "Yes" then
    do shell script "~/desktop/iCraft/iCraft.app/contents/re…
    display dialog "Finished, find it in your Backups directory in the iCraft folder"
    else
    display dialog "Backup aborted"
    end if
    if the button_pressed is "Restore" then
    display dialog "Are you sure you want to restore your Minecraft.jar with your backup?" buttons {"Yes", "No"} default button 2
    if the button_pressed is "Yes" then
    do shell script "~/desktop/iCraft/iCraft.app/resources/s…
    else
    display dialog "Restore aborted"
    end if
    end
    When I try to compile/run it gives me Syntax Error: Expected end of line, etc. but found end of script.

    Your script got mangled when pasting it into your message, but the main problem looks like you are missing a bunch of end if statements.  Unless your if statements are contained on one line, you need to terminate them with a matching end if statement - for example, the following are equivalent:
    if someString is "whatever" then display dialog "foo"
    if someString is "whatever" then
      display dialog "foo"
    end if

  • "Expected end of line, etc. but found end of script." HELP!!

    When I try to run my script, it say "(null.)" When I try to compile it or save it as an application, it says "Expected end of line, etc. but found end of script." HELP!!!
    Here is my script:
    display dialog "WARNING! a virus has been detected and the system is crashing" buttons {"shut down computor to preserve contents", "burn virus file"} default button 2
    if the button returned of the result is "burn virus file" then
    say "warning the virus has reacted to its deletion and has activated itself"
    say "virus is now in control of the users computor"
    say "if you try to stop the virus it will delete all user data"
    tell application "Safari"
    activate
    open location "http://www.facebook.com"
    open location "http://www.yahoo.com"
    open location "http://www.gmail.com"
    open location "http://www.youtube.com"
    end tell
    tell application "iTunes"
    activate
    play
    end tell
    tell application "iCal"
    activate
    end tell
    tell application "Terminal"
    activate
    end tell
    tell application "Finder"
    quit
    end tell
    if the button returned of the result is "shut down computor to preserve contents" then
    say "your computor will shut to protect your files."
    say "shut down in t-3"
    say "2."
    say "1."
    say "goodbye"
    say "it appears that there is a problem"
    say "the virus is starting to take over your system"
    beep 17
    display dialog "how DARE you try to delete me. I am now going to take over your computer." buttons {"**** YOU GET OUTTA MY COMPUTER", "OK, have fun!!"} default button "OK, have fun!!"
    if the button returned of the result is "OK, have fun!!" then
    say "thank you!!"
    say "watch this!"
    Tell application "iChat"
    quit
    end tell
    Tell application "Finder"
    quit
    end tell
    if the button returned of the result is "**** YOU GET OUTTA MY COMPUTER" then
    say "That attitude will not be tollerated."
    say "Dum dum dum dum dum dum dum he he he ho ho ho fa lah lah lah lah lah lah fa lah full hoo hoo hoo" using "Cellos"
    display dialog "A virus has been detected going through your files. Would you like to try to stop this?" buttons {"OK"} default button "OK"
    if the button returned of the result is "OK" then
    beep 5
    display dialog "there has been an error. Do you want to try to force quit?" buttons "Yes" default button "Yes"
    if the button returned of the result is "Yes" then
    say "Well, thats just too bad!"
    beep 2
    say "Sorry about that."
    say "The virus has been purged from your system."
    say "Your computer will now restart to make sure that all traces of the virus have been removed."
    say "shut down in t-3"
    say "2"
    say "1"
    say "goodbye"
    tell application "Finder"
    restart
    end tell
    end if

    You need to complete compound if statements with an end if - see the AppleScript Language Guide for a description of the various kinds of if statements.
    Although I don't think it is going to do what you expect, your script would look something like:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 340px;
    color: #000000;
    background-color: #DAFFB6;
    overflow: auto;"
    title="this text can be pasted into the AppleScript Editor">
    display dialog "WARNING! a virus has been detected and the system is crashing" buttons {"shut down computor to preserve contents", "burn virus file"} default button 2
    if the button returned of the result is "burn virus file" then
    say "warning the virus has reacted to its deletion and has activated itself"
    say "virus is now in control of the users computor"
    say "if you try to stop the virus it will delete all user data"
    tell application "Safari"
    activate
    open location "http://www.facebook.com"
    open location "http://www.yahoo.com"
    open location "http://www.gmail.com"
    open location "http://www.youtube.com"
    end tell
    tell application "iTunes"
    activate
    play
    end tell
    tell application "iCal"
    activate
    end tell
    tell application "Terminal"
    activate
    end tell
    tell application "Finder"
    quit
    end tell
    else if the button returned of the result is "shut down computor to preserve contents" then
    say "your computor will shut to protect your files."
    say "shut down in t-3"
    say "2."
    say "1."
    say "goodbye"
    say "it appears that there is a problem"
    say "the virus is starting to take over your system"
    beep 17
    end if
    display dialog "how DARE you try to delete me. I am now going to take over your computer." buttons {"**** YOU GET OUTTA MY COMPUTER", "OK, have fun!!"} default button "OK, have fun!!"
    if the button returned of the result is "OK, have fun!!" then
    say "thank you!!"
    say "watch this!"
    tell application "iChat"
    quit
    end tell
    tell application "Finder"
    quit
    end tell
    else if the button returned of the result is "**** YOU GET OUTTA MY COMPUTER" then
    say "That attitude will not be tollerated."
    say "Dum dum dum dum dum dum dum he he he ho ho ho fa lah lah lah lah lah lah fa lah full hoo hoo hoo" using "Cellos"
    end if
    display dialog "A virus has been detected going through your files. Would you like to try to stop this?" buttons {"OK"} default button "OK"
    if the button returned of the result is "OK" then
    beep 5
    display dialog "there has been an error. Do you want to try to force quit?" buttons "Yes" default button "Yes"
    else if the button returned of the result is "Yes" then
    say "Well, thats just too bad!"
    beep 2
    say "Sorry about that."
    say "The virus has been purged from your system."
    say "Your computer will now restart to make sure that all traces of the virus have been removed."
    say "shut down in t-3"
    say "2"
    say "1"
    say "goodbye"
    tell application "Finder"
    restart
    end tell
    end if
    </pre>

  • Error "expected end of line but found identifier"?

    I downloaded the project files for Apple's iDVD Companion http://www.apple.com/applescript/idvd/companion.html because I wanted to make some changes to it and rebuild it using Xcode.
    However, even it its original state the build fails under 10.4.10 and the current version of Applescript. Error is "expected end of line but found identifier" in one of the scripts. See screenshot:
    I don't understand why this Applescript is not compiling - has there been syntax changes in Applescript which stop this compiling? What is the correct syntax?
    Appreciate any pointers... thanks...
    G5 Desktop PPC 1.6 GHz   Mac OS X (10.4.8)  

    Perform a 'Find, Find in Project...' menu item ('Command <shift> F') search for 'Abstract object', and replace such with 'item'.
    However, once this resolves the compiling problem, you will experience a slew of AppleScript errors, when utilizing the compiled application.
    Note: Even the downloadable (pre-complied) 'iDVD Companion' application file has its share of incompatibilities.
    A lot has changed (with MacOS X and AppleScript) since 27.11.2001 - the creation date of the 'iDVD Companion' project.
      Mac OS X (10.4.6)  

  • AppleScript -  Syntax Error: Expected end of line found """.

    The following AppleScript code works on Tiger and Snow Leopard but not on Leopard (10.5 > 10.5.8).
    tell application "FileMaker Pro"
    tell database "SomeDB.fp5"
    -- some code to execute
    end tell
    end tell
    In Leopard, the code won't compile and is complaining of a Syntax Error: Expected end of line found """. I click OK and then the quote symbol ( " ) to the left of SomeDB.fp5 is highlighted.
    Has anyone else experienced this and have resolved this in Leopard?
    Thanks

    If you copy/pasted the script from somewhere, the line endings in the source may not be translating. Try replacing the line endings (the return) on the lines around the one that is being highlighted.

  • Help with error message: Expected end of line but got identifier

    The following is a calculated applescript step in a Filemaker script. It tells iCal to go to the date of an iCal event that the script has previously created from Filemaker. The code below keeps generating an error message: "Expected end of line but got identifier." Note: "ACTIVITY::Date" below is Filemaker's way of indicating the file name (ACTIVITY) and the field in question (date). Help appreciated.
    "tell application \" iCal\" ¶
    activate ¶
    switch view to month view ¶
    set theDate to date \"" & ACTIVITY::Date & "\" ¶
    view calendar at theDate ¶
    end tell"

    It's not clear exactly what you're aiming for here, so it's not easy to tell you how to fix it.
    At first glance I'd say you're missing a quote symbol or two, but even then it doesn't make a lot of sense without more context - for example, 'ACTIVITY::Date' isn't valid as an AppleScript variable name (you can't have a : in a variable name), and your code isn't within a Filemaker block, so it doesn't appear to relate to Filemaker, either.
    In either case the only thing that looks remotely valid to me would be:
    set theDate to date "\"" & ACTIVITY::date & "\""
    but without knowing the context of ACTIVITY::Date it's impossible to tell if this is valid, or how it differs from:
    set theDate to date ACTIVITY::Date
    (i.e., why the quotes are needed at all)

  • AppleScript Error: "Expected end of line but found identifier."

    Hi everyone,
    I'm new to applescript and can't seem to figure out the error here.
    Info: Using Hazel and iFlicks 2 Applications for this process.
    tell application "iFlicks 2" to launch
    delay 7
    tell application "iFlicks 2"
    update theFile dbID without gui
    end tell
    I get the error "Expected end of line but found identifier." for the red text.
    theFile reffers to the file that the actions are to be preformed on. This is a Hazel thing.
    Thank you!

    You need to look in the "iFlicks 2" dictionary.  This line isn't matching the syntax found in the dictionary.  I find reading a dictionary nearly impossible.
    update theFile dbID without gui

  • Apple Script Editor, "Expected end of line but found identifier" Error

    Hello, I'm trying to automate an Application I have, called Self Control, since I have ADD and easily get distracted, and what I want to do is for my computer to automatically set the application up, but to do this, I need a script, which I have already done, but get this error, can someone help me fix this script?
    (the error happens once I click on "run", it tells me as follows: "Syntax Error", followed by, "Expected end of line but found identifier".
    on run argv
    set defaultTime to 1440
    try
      set myTime to item 1 of argv as number
    on error
      set myTime to defaultTime
    end try
    tell application "Usable Keychain Scripting"
      tell current keychain
       set myPass to (password of first generic item ¬
        whose name contains "SelfControl")
       -- eliminate invisible characters, or "gremlins," from password
       set x to quoted form of myPass
       set myPass to do shell script "echo " & x & " | perl -pe 's/[^[:print:]]//g'"
      end tell
    end tell
    tell application "SelfControl" to activate
    tell application "System Events"
      tell process "SelfControl"
       tell slider of window "SelfControl" to set value to myTime
       click button "Start" of window "SelfControl"
      end tell
      tell window 1 of process "SecurityAgent"
       with timeout of 15 seconds
        repeat
         set tryAgain to false
         try
          set value of text field 2 of scroll area 1 of group 1 to myPass
         on error
          delay 1
          set tryAgain to true
         end try
         if not tryAgain then exit repeat
        end repeat
        click button 2 of group 2
       end timeout
      end tell
    end tell
    end run
    I'm no coding expert, but your help would be greatly appreciated. I know that once the script is done I can automate it with Calendar, or even Quicksilver, I just need help with the script.
    Thanks in advance!

    This is a pain with Applescript.
    Could  be a missing " or ' .  I didn't notice this problem.
    Use (* and *) to comment out lines to find where the problem lays. Start big then go smaller and smaller until you find the problem line.  Search internet for examples of the line in question.

  • Syntax Error: Expected end of line but found end of script.

    display dialog "Are you awesome" buttons {"Yes", "No"} default button 1
    if the button returned of the result is "Yes" then
    tell application "Finder"
    display dialog "You Passed the Test" buttons {"YAY", "Poop nugets"} default button 1
    end tell
    display dialog "Cool" buttons {"Ok", "More Info"} default button 1
    if the button returned of the result is "More Info" then
    tell application "Finder"
    display dialog "You are obviously are awesome,
    100% Cool" buttons {"Ok"} default button 1
    end tell
    Then it says:
    Syntax error: Expected end of line but found end of script.

    can somebody fix this scrip becasue i am having the exact same problems
    tell application "SpeechRecognitionServer"
              set theResponse to listen for {"yes", "no"} with prompt "Hello Michael, Would you like the internet?"
              if theResponse is "yes" then
                        launch application "Google Chrome"
                        tell application "SpeechRecognitionServer"
                                  set theResponse to listen for {"yes", "no"} with prompt "What about a Calander?"
              if theResponse is "yes" then
                        launch application "ical"
                        tell application "SpeechRecognitionServer"
                                  set theResponse to listen for {"yes", "no"} with prompt "How about some iTunes Music?"
              if theResponse is "yes" then
                        launch application "itunes"
                        tell application "SpeechRecognitionServer"
                                  set theResponse to listen for {"yes","no"} with prompt "Would you like me to stop?"
              if theResponse is "no" then
                                  say "ok"
    else
              if theResponse is "no" then
                        exit repeat
    else
                                  exit repeat
    end
    end if
    end
    end if
    end
    end if
    end tell 

  • Expected "else", etc. but found "on".

    I'm trying to make an app in Applescript, and then this happened:
    display dialog "What version of Minecraft do you have?" buttons {"-1.5", "1.6+", "Cancel"} with icon note
    if the button returned of the result is "-1.5" then
    display dialog "Opening the game in 3" buttons {"Cancel"} default button 1 with icon note giving up after 1
    display dialog "Opening the game in 2" buttons {"Cancel"} default button 1 with icon note giving up after 1
    display dialog "Opening the game in 1" buttons {"Cancel"} default button 1 with icon note giving up after 1
              try
      -- Below is very scary, but actually is just debugging the code
                        set MineLog to do shell script "cd ~/Library/Application\\ Support/minecraft/bin; java -Xms512M -Xmx1024M -Xincgc -cp \"minecraft.jar:jinput.jar:lwjgl.jar:lwjgl_util.jar\" -Dorg.lwjgl.librarypath=\"$(pwd)/natives\" -Dnet.java.games.input.librarypath=\"$(pwd)/natives\" net.minecraft.client.Minecraft"
      -- Above is very scary, but actually is just debugging the code
                        my write_mine_log(the MineLog)
              end try
    error>      on write_mine_log(this_minelog)
              set the mining_log to ((path to desktop) as text) & "MineLog.txt"
              try
                        open for access file the mining_log with write permission
                        write (this_minelog & return) to file the mining_log starting at eof
                        close access file the mining_log
              on error
                        try
                                  close access file the mining_log
                        end try
              end try
    another error> end write_mine_log
    else if the button returned of the result is "1.6+" then
    -- action for 2nd button goes here
    else
    -- action for quit button goes here
    end if
    how to fix>

    Now I get another error:
                       error VV                                error VV
    set MineLog to (tell application "Terminal" to do script "cd ~/Library/Application\\ Support/minecraft/bin; java -Xms512M -Xmx1024M -Xincgc -cp \"minecraft.jar:jinput.jar:lwjgl.jar:lwjgl_util.jar\" -Dorg.lwjgl.librarypath=\"$(pwd)/natives\" -Dnet.java.games.input.librarypath=\"$(pwd)/natives\" net.minecraft.client.Minecraft")
    Expected expression, “)”, etc. but found “tell”.
    and
    A to:do can’t go after this application Terminal.
    fix?

  • "Expected "," or "j" but found identifier"  - What the **** does that mean?

    Hi good people hope this Monday finds you well and is more like a Thursday.
    I've recently been trying to convert this 164MB (imovie project which I exported to my desktop as a quicktime movie) movie to a iphone/ipod 37.9 MB file. It used to work a charm and the new converted (smaller file) would pop up in my itunes movie folder but now that doesn't happen and on top of that i get this -
    Expected "," or "j" but found identifier
    *? * is it? it's a scary and b very confusing.
    Please anyone, any thoughts at all?
    Thanks
    Iddo

    While ATT was the one who made the news this time, it has been long reported that most of the major providers (google, Facebook, AOL, etc.)  have been monitoring data trafic on their networks, and providing back door access to government agencies for years. (If one recalls, kinda the point Edward Snoden made with his secret government messages release.) At least, they seem to be backing off, as the public becomes more aware or their privacy invasions.

  • I purchased Microsoft Office for Mac through the Apple website.. I have downloaded all from the disk into my Mac, no problem with all the other Word etc, but Outlook is asking for the key number: I have put it in but its obviously not the right one...????

    I purchased Microsoft Office for Mac through the Apple website.. I have downloaded all from the disk into my Mac, no problem with all the other Word etc, but Outlook is asking for the key number: I have put it in but its obviously not the right one...???? In the box with the disk came the product key, have put it in and it doesnt work. Please help..x

    unfortunately - you can not.  you can't even buy outlook by itself at microsoft's own website.
    does it have to be outlook?  maybe you can get away with using something else that's outlook compatible.
    how about trying Thunderbird for Mac OS?
    or maybe you can call apple and let them know you purchase the wrong version - they might give you a break and just pay the difference for the home and business version.
    good luck

  • Package compile faile with error ORA-03113: end-of-file on communication..

    Hi There,
    We're trying to compile a package and we're getting this error that we're not sure how to debug and/or tackle. Your assistance is highly appreciated.
    create or replace
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    Process ID: 4252
    Session ID: 1149 Serial number: 5910
    The package use to compile without any issues; also we have it working in other environments. We can't see any differences at this stage.
    Oracle Version:11.2.0.1 x64
    OS: Windows 2008 Server R2
    Thanks in advance for your help.
    Thanks

    I have tried dropping the package and re-compiling it but to no avail. I can compile other packages/procedures/functions without any issues.
    Also, trying to run either EXEC UTL_RECOMP.recomp_parallel(4, 'SCHEMA_NAME'); or @?/rdbms/admin/UTLRP.SQL gives the following erros:
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    Process ID: 7040
    Session ID: 388 Serial number: 9039
    ERROR:
    ORA-03114: not connected to ORACLE
    DOC> The following query reports the number of objects that have compiled
    DOC> with errors (objects that compile with errors have status set to 3 in
    DOC> obj$). If the number is higher than expected, please examine the error
    DOC> messages reported with each object (using SHOW ERRORS) to see if they
    DOC> point to system misconfiguration or resource constraints that must be
    DOC> fixed before attempting to recompile these objects.
    DOC>#
    ERROR:
    ORA-03114: not connected to ORACLE
    DOC> The following query reports the number of errors caught during
    DOC> recompilation. If this number is non-zero, please query the error
    DOC> messages in the table UTL_RECOMP_ERRORS to see if any of these errors
    DOC> are due to misconfiguration or resource constraints that must be
    DOC> fixed before objects can compile successfully.
    DOC>#
    ERROR:
    ORA-03114: not connected to ORACLE
    ERROR:
    ORA-03114: not connected to ORACLE
    ERROR:
    ORA-03114: not connected to ORACLE
    ERROR:
    ORA-03114: not connected to ORACLE
    ERROR:
    ORA-03114: not connected to ORACLE

  • Expected end of line but found identifier.

    Hi
    I have a very basic understanding of applescript, but managed to get this working in Mountain Lion. It now does work in Mavericks. It fails with the above error in the compile when it gets to the underlined section (to tell sheet sName).
    Please can someone help me fix my code. Please don't ask me to go read Cocoa, as I hardly knew what I was doing here.
    Thanks.
    set dName to "Accounts"
    set sName to "Invoice"
    set tName to "Table 1"
    set theResult to display dialog "Would you like to attach some files to this message?" buttons {"Yes", "No"} default button 1
    set wantsAttachment to button returned of theResult
    if wantsAttachment is equal to "Yes" then
              set theAttachment to choose file
    end if
    tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
              set numRecords to value of cell 2 of column 3
    end tell
    tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
              set i to 1
              repeat while (i ≤ numRecords)
                        set value of cell 1 of column 3 to i
                        set studentName to value of cell 3 of column 2
                        set balanceBF to value of cell 4 of column 2
                        set fees to value of cell 5 of column 2
                        set paid to value of cell 6 of column 2
                        set balanceCF to value of cell 7 of column 2
                        set emailAddress to value of cell 8 of column 2
      --set emailAddress to value of cell 9 of column 2
                        set invoiceDate to value of cell 2 of column 2
                        set theSubject to "Invoice for " & invoiceDate
      --set theSubject to "Exam Results 2013"
                        set theBody to "Account for " & studentName & return & "Balance b/f = " & balanceBF & return & "Fees for " & invoiceDate & " = " & fees & return & "Paid in " & invoiceDate & " = " & paid & return & "Balance due = " & balanceCF & return
      --set theBody to ""
                        tell application "Mail"
      --set newMessage to make new outgoing message with properties {subject:theSubject, content:theBody, visible:true}
                                  set newMessage to make new outgoing message with properties {subject:theSubject, content:theBody}
                                  tell newMessage to make new to recipient with properties {address:emailAddress}
                                  tell application "Numbers" to activate
                                  tell application "System Events"
                                            tell application process "Numbers"
                                                      click menu item "Copy" of menu "Edit" of menu bar item "Edit" of menu bar 1
                                            end tell
                                  end tell
                                  tell application "Mail" to activate
                                  tell application "System Events"
                                            tell application process "Mail"
                                                      click menu item "Paste" of menu "Edit" of menu bar item "Edit" of menu bar 1
                                            end tell
                                  end tell
                                  if (wantsAttachment is equal to "Yes") then
                                            tell newMessage to make new attachment with properties {file name:theAttachment} at after the last paragraph
                                  end if
      send newMessage
                        end tell
                        set i to (i + 1)
              end repeat
    end tell

    Hi Joao888,
    Nice script!
    Unfortunately, Numbers 3.0 does not support AppleScript, other than the basic "GUI scripting" you can do with any application on your Mac (activate it, have it open documents, click on menu items, etc.). You can't "tell" sheets or tables the way you could in Numbers 2.3.
    Let's hope Apple brings back some support for AppleScript in upgrades to version 3.  You can add your voice by requesting it here:
    Meanwhile, if you need to use your AppleScript you still have your Numbers 2.3 in a folder within your Applications folder, probably named iWork '09.
    SG

  • [Solved] kernel 2.6.28.1 compilation fails with reiser4 patch

    Hi,
    has anyone had problems compiling the latest kernel with the reiser4 patch?
    The patching process itself completes successfully apart from this part:
    patching file include/linux/fs.h
    Hunk #1 succeeded at 1372 (offset 3 lines).
    Hunk #2 succeeded at 1811 (offset 3 lines).
    patching file mm/filemap.c
    While the compilation fails here
    CC fs/reiser4/plugin/file/file_conversion.o
    fs/reiser4/plugin/file/file_conversion.c: In function 'reiser4_write_begin_careful':
    fs/reiser4/plugin/file/file_conversion.c:689: error: implicit declaration of function '__grab_cache_page'
    fs/reiser4/plugin/file/file_conversion.c:689: warning: assignment makes pointer from integer without a cast
    make[2]: *** [fs/reiser4/plugin/file/file_conversion.o] Error 1
    make[1]: *** [fs/reiser4] Error 2
    make: *** [fs] Error 2
    Or is it just me doing something wrong?
    Last edited by moz (2009-01-23 13:08:27)

    moz wrote:
    Hi,
    has anyone had problems compiling the latest kernel with the reiser4 patch?
    The patching process itself completes successfully apart from this part:
    patching file include/linux/fs.h
    Hunk #1 succeeded at 1372 (offset 3 lines).
    Hunk #2 succeeded at 1811 (offset 3 lines).
    patching file mm/filemap.c
    While the compilation fails here
    CC fs/reiser4/plugin/file/file_conversion.o
    fs/reiser4/plugin/file/file_conversion.c: In function 'reiser4_write_begin_careful':
    fs/reiser4/plugin/file/file_conversion.c:689: error: implicit declaration of function '__grab_cache_page'
    fs/reiser4/plugin/file/file_conversion.c:689: warning: assignment makes pointer from integer without a cast
    make[2]: *** [fs/reiser4/plugin/file/file_conversion.o] Error 1
    make[1]: *** [fs/reiser4] Error 2
    make: *** [fs] Error 2
    Or is it just me doing something wrong?
    It is a well known issue

Maybe you are looking for

  • Creative Cloud is broken and claims I am on a trial period

    Everything used to be working fine, but at some point recently everything broke. I can't use the Creative Cloud program, which just loads showing a white screen in place of actual content, so I can't install apps or see which apps have updates and so

  • ITunes not recognizing iPhone 5 iO7 on Windows 7

    I have exhausted myself dealing with this problem. My iTunes will not recognize my iPhone 5. I am running Windows 7 64 bit and my computer recognizes the phone when i plug it in, however, my iTunes does not so I am not able to sync any music. I have

  • Problem with running sessionBean Client

    Hi, I deployed SessionBean(stateless) bean on Weblogib8.1 succesfully.. But when i run my client i am getting the fallowing exception... any body plz help me out.... My Client: import javax.naming.*; import javax.naming.spi.*; import java.util.*; imp

  • Deployment of Web Application when the managed Server is down .....

    Part of our installation, we want to deploy our web application on to a managed server. So, we use the JMX API calls to deploy the web application. But, at the time of this deployment the managed server is not brought up. So, our expectation was that

  • Photoshop Elements Update/Upgrade Issues

    I currently have PE 6.0 running on a 5 year old MacBook running Mavericks, and whenever I open PE it gives me a message that there is no Internet Access.  I have three questions: 1) How do I remedy that error message problem? 2) Can PE 12.0 run effec