AppleScript Issue

Hey i am trying to use applescript to create a pdf document and save it. It is creating the document i want, however, i am getting an error that i dont have the permission to save the "untitled" file as "AfterDeadline.pdf"
Here is my script. Can you tell me what I am doing wrong? (I have set the problem lines in green, the rest seem to create the desired document)
set RunDay to day of (current date)
if RunDay = 29 then
  tell application "PDFpenPro"
  with timeout of 300 seconds
  set theDoc to make new document with data "http://afterdeadline.blogs.nytimes.com/2013/08/" with properties {top margin:36, bottom margin:36, left margin:36, right margin:36, levels:1, maximum pages:200, follow:server}
  end timeout
  set theDocname to "AfterDeadline" & ".pdf" as string
  tell application "Finder"
  save theDoc in (path to desktop as string) & (theDocname as string)
  end tell
  end tell
end if
AppleScript highlighting this line save theDoc in (path to desktop as string) & (theDocname as string) and saying "PDFpenPro got an error: AppleEvent handler failed." 
PS: You can ignore the RunDay conditional, that's something else I'm trying - if the simple saving works, i would change the url with variable months and year and save a month's posts at the end of each month.

Remove the 'tell application "Finder"' line and one of the 'end tell' statements.
(115621)

Similar Messages

  • Applescript issue with ikey2

    If I launch two copies of textedit (textedit 1 and textedit 2)
    And then try to post this as an applescript (works in script editor, does in ikey2)
    tell application "System Events"
    tell application "TextEdit 1" to activate
    key code 20
    tell application "TextEdit 2" to activate
    key code 20
    end tell
    The script gets automatically rewritten as both using TextEdit 1. Is there something wrong in this code? It should call both apps indeendantly and press the '3' key. Would there be a reason that an app is rewriting the applescript code on the fly?

    Yes, I am using an exterrnal keyboard that provides 58 extra keys (xkeys). I was planning on using it with World of Warcraft and assign macros to each keys. The purpose of it is to do what is called multi-boxing.
    You launch 4 instances of the world of warcraft client and control them with one single keyboard by using an application that broadcast the keys.
    In my setup at the moment I am using Butler and it works fine with the Apple keyboard but it only has as many keys as the apple keyboard has. Since there are many keys that are used by the game this limits the keyboard+butler at about 10 to 20 macros.
    Ikey2 on the other end supports xkeys (the external keyboard www.xkeys.com) but for some reason when I use a script like the one above and replace the textedit names with world of warcraft, it constantly rewrites the names to only have ONE instance of the application, almost like if its version of Applescript can not recognize that they are separate applciations. If the instances are not launched yet the script stays with two names, as soon as several instances of an app are launched it only keeps one.
    Since it works fine by using Script editor I suspect that it is an ikey2 issue and I have emailed them. I will post here if I find more but I was wandering if there could be something in the code that was wrong

  • Code Folding - Applescript issue ?

    can't find this anywhere as an issue discussed
    I must be special
    this is happening on Xcode 3.1.2 on 10.5.6 intel
    I make an Applescript Application with a few handlers and a few if then statements
    when the if then statements are on one line they seem to screw up the code folding and the list of available handlers
    I have a small screenshot of it here http://www.metzinger.us/Pictures/code_folding.jpg
    the Xcode window thinks handler 4 is nested in handler 1 and doesn't even mention the other two
    I can fix the issue by expanding my if then statements to multiple lines with an end line
    is there something else I can do besides changing all of my if then statements?
    thanks
    .bill

    bump whoops
    be first to answer this and win a prize
    still baffled here
    I've reproduced this on another xcode 3.1.2
    make new applescript application
    paste this as a script
    if 1 = 2 then say "dooh"
    if 3 = 4 then
    say "dooh"
    end if
    the "code folding" feature of xcode is confused by the first line
    having an if then statement with no "end" bums it out
    seems like I'm missing something simple here
    is this a known bug or am I just bugging you?
    thanks
    .bill

  • QuickTime and Applescript issue.

    I am having an issue with applescript and QT 7 Pro. Last year I wrote a script and it uses a folder action and converts our footage into DV stream format acceptable to our on-air Windows server. Well, it works beautifully in QT 6.5 Pro/Panther. A 30 second clip takes only a few seconds to convert. But with Tiger and QT 7, encoding with the same script, it pretty much takes real time to encode it. Now, if I manually export it with QT 7 Pro with the same settings the script calls, it goes at the fast speed it does under 6.5.2. It seems the lethal combination is applescript and QT 7. Does anyone have any ideas or have heard of this problem? Thanks.

    You can get Quicktime alternative from here
    http://www.free-codecs.com/download/quicktime_alternative.htm

  • Applescript Issue with Mavericks: Security?

    Hi - I'm having an Applescript Problem with Mavericks:
    For years, I've been running EyeTV on my mac. After recording a TV show, EyeTV calls a script called "RecordingDone.scpt".
    I've modified this script to do what I need it to do. It's automatically run by EyeTV (using a process called "TriggeredScriptBridge", which I can observe via Activity Monitor). I can also execute the script directly from the Finder, as an Applescript app, and also by running the script via Applescript Editor.
    Prior to Mavericks, both EyeTV and manual execution of the script ran correctly.
    With Mavericks, running the script executes correctly when run manually. But whenever EyeTV executes the script, it fails. The failure occurs when the script tries to create a new folder or copy a file.
    For example, this code runs correctly when initiated manually but fails when initiated by EyeTV:
      if (exists folder fileLocation) is false then
      try
          make new folder at alias ExportLocationTV with properties {name:ParsTitle}
                my log_event("DEBUG:  Folder successfully created")
      on error
            my log_event("DEBUG:  couldn't make folder!")
      end try
      end if
    Same thing with this code (manual execution works, not so when called by EyeTV):
    try
          do shell script shellCommand -- do the copy
      my log_event("DEBUG:  copied successfully")
      on error
           my log_event("DEBUG:  failed to copy!")
      end try
    My guess is that Mavericks isn't letting EyeTV call a script that writes to disk. Is that what's happening? If so, how do I make things work again? Or if I'm wrong with my guess, anybody have any idea what might be screwing up here?
    Thanks much....

    If this application is from the App Store, it is running in a sandbox and needs to have the proper entitlements. 
    No, the app is not from the App Store. But perhaps the developers have incorporated sandboxed operation in a recent update? (I don't know much about sandboxing and its effects yet...)
    I am guessing that since scripts are supported by the application that the developers have set the appropriate entitlement for that, but the user running the application will still need to authorize writing to a location outside of the sandbox.
    Your script is not using a security-scoped bookmark or putting up a file dialog - how are you selecting the destination folder?
    OK, some of this is new to me (e.g. security-scoped bookmark), so please bear with me if my responses don't make immediate sense.
    The EyeTV app developers have put a few calls to external scripts that can be run when certain events occur within the app (for example, "RecordingStarted.scpt" and "RecordingDone.scpt"). The EyeTV app initiates a process named "TriggeredScriptBridge" that calls the scripts. These scripts are intended to be modified by users to perform tasks upon the TV recording created by EyeTV. They have always worked fine before Mavericks.
    Under Mavericks, when the script is run via a call from the EyeTV app, the destination folder(s) are selected by hard-coded links I placed within the script. When I run the script manually, I present a Choose Folder dialog for more flexibility.
    So, under Mavericks, do I need to do something different in my scripts to allow access to the disk to create folders, etc.? Or is this something that I can't do because it's the responsibility of the app itself (EyeTV)? Or am I not understanding what's going on here (the most likely scenario... )

  • Terminal Applescript Issue...Please help if you can.

    I'm really stuck here. I've read several different things online to fix this script so it will see the path name correctly in Terminal but no luck. Any help would be greatly appreciated.
    The script is as follows.
    tell application "Terminal"
    do script with command " sudo /Volumes/Adobe CS3 Design Premium/AdobeCS3/Setup.app/Contents/MacOS/Setup --mode=silent --deploymentFile=/Volumes/Adobe CS3 Design Premium/AdobeCS3/deployment/liteinstall.xml"
    end tell
    Eric

    Your problem is that the command you're trying to run includes spaces.
    Spaces are used by the shell to delimit arguments, so when you say:
    script with command " sudo /Volumes/Adobe CS3 Design Premium/AdobeCS3/Setup.app/Contents/MacOS/Setup"
    The shell sees this as the command 'sudo' with four arguments - "/Volumes/Adobe", "CS3", "Design", and "Premium/AdobeCS3/Setup.app/Contents/MacOS/Setup". It's no wonder it doesn't work.
    You have a couple of options. One is to escape each of the spaces by preceeding them with a backslash. This tells the shell to treat the next character as a real character, not as a delimiter, e.g. "/Volumes/Adobe\ CS3\ Design\ Premium...". If you take this approach, though, you need to be aware that AppleScript also uses the backslash to escape characters, so you need to escape the backslash itself - the first one tells AppleScript to treat the second backslash as a literal, and so the shell sees the second backslash and can deal with the spaces:
    >do script "sudo /Volumes/Adobe\\ CS3\\ Design\\ Premium/AdobeCS3/Setup.app/Contents/MacOS/Setup --mode=silent --deploymentFile=/Volumes/Adobe\\ C3\\ Design\\ Premium/AdobeCS3/deployment/liteinstall.xml"
    The other option is to use the 'quoted form of' a string. 'Quoted form' takes a string and makes it shell-safe:
    <pre class=command>tell application "Terminal"
    set myCommand to "/Volumes/Adobe CS3 Design Premium/AdobeC3 blah blah blah"
    do script "sudo " & quoted form of myCommand
    end tell</pre>
    Depending on what else you're doing, you might also find it easier to eschew the Terminal altogether and just run the command directly via 'do shell script', but the same caveats apply.

  • Weird applescript issue

    ok so i've been fooling with automator and really know nothing about it, so i've been going through some tutorials and i noticed this.
    when i enter the command "beep" or "beep 3" nothing happens...
    yet when i enter the command "say "hello"" it (my computer) says hello..
    I havnt changed anything why no beep but the voice works?
    thanks

    that did it Thanks! odd that the voice played but not the beed but that did it

  • A funny bug with the pair Numbers + AppleScript

    *Bug ID# 7973914*
    Summary:
    Trying to delete rows in a Numbers table thru AppleScript issue an erroneous error.
    Steps to Reproduce:
    Create a new Numbers document and run this script :
    set t_name to "testIfEmpty"
    tell application "Numbers" to tell document 1 to tell sheet 1
    if not (exists table t_name) then
    make new table with properties {name:t_name, row count:1, column count:1}
    end if
    delay 0.2
    set tProps to get properties of table t_name
    set nbr to (row count of tProps) - 1
    if nbr > 0 then
    try
    repeat nbr times
    delete row 1 of table t_name
    end repeat
    on error errMsg number errNbr
    display dialog "What's the need for this error ?" & return & return & "error number : " & errNbr & return & errMsg & return & return & "Click the OK button" & return & "and everything will behave flawlessly." buttons {"OK"}
    end try
    end if
    set nbr to (column count of tProps) - 1
    if nbr > 0 then
    repeat nbr times
    delete column 1 of table t_name
    end repeat
    end if
    end tell
    Expected Results:
    As we may delete the rows by hand, the script is supposed to do its job with no error.
    Actual Results:
    When it remains two rows, the script issue an error.
    When we click the OK button, it continue and it does what it was designed to do.
    Regression:
    At this time, in real life I keep only :
    try
    repeat nbr times
    delete row 1 of table t_name
    end repeat
    end try
    in the script but I don't like to encounter a meaningless error message
    May you get rid of that ?
    I wish to add that I am unable to think that getting a 2 * 2 cells table when asking for a 1 * 1 one is a normal behaviour !
    Yvan KOENIG (VALLAURIS, France) mercredi 12 mai 2010 17:09:37

    For sure, with remove there is no error message
    but the dictionary is clear :
    A row, as well as a column is an item.
    I would accept that the app refuse to execute the command delete row x or delete column y.
    It accepts to delete rows 150 thru 3 but when there are only two rows, it refuses to delete one.
    In my code, I delete row 1 because I want a table with only a standard cell.
    There is no logic in the fact that I may delete column 1 with no errror message but can't do the same with row 1.
    The proof that there is no reason is of course that with the try / end try enclosing the loop, the row is correctly delete. The script just ignores the reported error.
    It's always wrong to flag an error when there isn't one.
    The dictionary describes the function duplicate which is supposed to apply to items.
    I was grinding when I discovered that it refuses to duplicate a table or a sheet but at least, it's concistent. It doesn't do 99% of the job and claims "you are fool to ask me to do that" for the last percent.
    Delete / Remove isn't the unique odd pair.
    I got the same kind of problem in several apps with Copy / Duplicate.
    Sometimes they behave the same. Sometimes, one is completely rejected
    and, worse case, sometimes one of them behave well most of the time but not always.
    I think that it would be correct to
    (1) edit the code so that both behave correctly in 100% of cases
    or
    (2) edit the code so that the 99% one completely reject the call
    This said, I'm definitely pig-headed but I'm not completely foolish so,I will edit my script and use Remove
    PS :
    I added these two lines to my report :
    I forgot to write that replacing Delete by Remove get rid of the error message.
    But there is no reason to issue one with delete.
    Yvan KOENIG (VALLAURIS, France) mercredi 12 mai 2010 18:33:07

  • Green frames when using AppleScript to export from QT

    Not sure if this is a QuickTime issue, h.264 issue, or an AppleScript issue, but i thought I'd start here since I know the least about AppleScript and have some clues to the problem.
    I'm creating an Automator workflow that requires a run AppleScript action. My plan is to use applescript to have QuickTime Pro 7.6.6 export an image sequence from a QuickTime movie in h.264, using a QuickTime settings file I've already exported. The script points to the settings file and and exports the sequence to the output folder I've specified. Im looking to export one frame per second. Running the script works well and I'm almost getting the result I want, except that each frame that is exported is entirely green.
    Interestingly, when I run the exact same process manually, using the exact same settings, the export works fine, and the frames are correct. Additionally, exporting via AppleScript brings up a different status bar than when exporting manually, which leads me to believe that AppleScript is the culprit. Perhaps it's running some sort of outdated process? The AppleScript status bar comes down from the top middle of the video frame, while exporting manually, brings up a floating status bar. They look decidedly different.
    Has anyone run into this problem? Can possibly shed light on it? Possible AppleScript work around?  This only seems to effect h.264 videos. If I run the same AppleScript on a prores file, the images export correctly.

    Including the applescript in question could be helpful!
    tell application "QuickTime Player 7"
              export front document as image sequence using settings "Macintosh HD:Users:grato:Documents:SYNC:Sync Assets:settings:Sync_QTexport_setting.qtes" to "Macintosh HD:Users:grato:Documents:SYNC:Sync Assets:Assets:temp:Sync-"
    end tell

  • Organization and Reliability of these Forums

    Last night, I posted this message to the AppleScript forum and elaborated slightly here:
    Just a general observation: as a participant in a number of forums, several about AppleScript issues, I must congratulate Apple for running the least friendly and most likely to be broken set on the English-speaking web. An astonishing performance for a company that sells server software.
    That it can't remember that I'm a member (apparently by design), that it frequently is off the air (I get more blank pages from here than any other), that after discovering that I've been logged out logging back in on another page doesn't then return me to the page I left, and that if you edit a page in Preview (at least last night) then the Post Message button doesn't work any more (and a question goes unanswered), rank among it's most annoying features.
    Really, folks - why be different when the differences are negative? If others can mount easy-to-use, friendly forums that remember returning members, that are easy to navigate without returning to square "1", whose buttons work reliably, and whose postings can contain bbcode to make for easier reading, then surely Apple can.
    PS: I didn't preview this because that doesn't seem to be reliable. Please excuse errata.

    Hi NovaScotian,
    Thank you for your feedback. It is appreciated.
    I am aware of the issues you posted about. We are working to resolve them.
    Regards,
    Kady
    Apple Discussions Host

  • Dashboard takes time to load?

    I dont even have that many widgets up, just the weather, date, converter, calculator and chuck norris fact generator. Yet when i press F12, it can take a good 10 seconds for it to respond. Is this normal?

    I noticed that in the list of fixes for the 10.4.6 update (the previous version), that it lists this as one of the fixes:
    [b["Addresses several AppleScript issues, including: Preservation of property values in Script Menu, a potential Bonjour issue with "choose remote application", an invisible "choose application" dialog issue, and improved compatibility with Dashboard widgets and applications."
    So, it's possible that there is a dashboard problem with some systems.
    Perhaps you should try downloading and re-installing the Combo updater for your system.
    For example, if you are not wanting to upgrade to the new 10.4.7 yet, you could just download the Combo updater for 10.4.6 and re-install that.
    It would possibly fix any issues that might exist in your current installation.
    If you are ready to install 10.4.7, then just download the Combo version of that one, and see if that fixes it.
    You should, of course, make sure you have all your data backed-up before installing the 10.4.7 update just in-case your system doesn't like it.
    Naturally, repair permissions both before and after you install either of the Combo updates.
    Hope this helps.

  • AppleScript print issue

    Version:1.0 StartHTML:0000000149 EndHTML:0000001120 StartFragment:0000000199 EndFragment:0000001086 StartSelection:0000000199 EndSelection:0000001086
    Below is an AppleScript that we have been using for several years that goes through a whole folder and prints each file.
    To create press-ready PDFs we send the .ps files generated by InDesign CS2 to Acrobat Distiller.
    Just this week we have had an issue that when we use the script, random in-line graphics drop out of the PDF. When we process the same files using the same print preset, but open each manually and print without the use of the script, these in-line graphics are in the PDF.
    Have you heard of this issue with printing using AppleScript before?
    Any insight you can give me will help tremendously.
    We are researching moving to CS4 in 2010, but in the meantime we have CS2 to continue with.
    We use primarily MAC OS X 10.4.11.
    We've checked the layer. They are not on any layer the script is turning off.
    set x to 1
    tell application "Finder"
        --set fileName to choose folder with prompt ¬
        --    "Select folder to output to"
        set myFolder to choose folder with prompt ¬
            "Select folder to process"
        set myFiles to every file of myFolder
        repeat with x in myFiles
            set file_type to the (the creator type of x)
            --display dialog file_type
            if ((the creator type of x) = "InDn") then
                -- open x
                set fileName to the name of x as string
                set oldDelim to AppleScript's text item delimiters
                set AppleScript's text item delimiters to "."
                set fileName to text item 1 of fileName
                -- display dialog fileName
                set AppleScript's text item delimiters to oldDelim
                tell application "Adobe InDesign CS2"
                    open x
                    set myDoc to active document
                    tell print preferences of myDoc
                        set page range to all pages
                        set print spreads to false
                        set print master pages to false
                    end tell
                    -- change to correct target folder
                    set printFile to ("Mesa_Volume:MakePDF_Folder:ELS_PressReady:In:" & fileName & ".ps") as string
                    -- change to correct print preset
                    set myPreset to printer preset "Buck Final PDF"
                    tell myPreset
                        set print file to printFile
                    end tell
                    tell myDoc
                        -- the following will hide the layers IDLayer and proof slug--dp June 11, 2008
                        if exists layer "IDLayer" then
                            --display dialog "layer IDLayer exists"
                            set IDLayer to layer "IDLayer"
                            set properties of IDLayer to {visible:false}
                        end if
                        if exists layer "proof slug" then
                            --display dialog "layer proof slug exists"
                            set proofSlug to layer "proof slug"
                            set properties of proofSlug to {visible:false}
                        end if
                        if exists layer "Figure Mention Layer" then
                            --display dialog "layer proof slug exists"
                            set figMentionLayer to layer "Figure Mention Layer"
                            set properties of figMentionLayer to {visible:false}
                        end if
                        delay 2
                        with timeout of 1200 seconds
                            print using myPreset without print dialog
                        end timeout
                        delay 2
                        with timeout of 600 seconds
                            close myDoc saving no
                        end timeout
                    end tell
                end tell
                delay 2
            end if
        end repeat
    end tell

    Then, post to the AppleScript forum under OS X Technologies. However, don't expect anyone to provide you with the script. For that, you'll need to show some initiative and read one of the many books available, Apple's site at http://www.apple.com/applescript/index.html, or the Language guide at http://www.apple.com/applescript/features/features.html#1002

  • Applescript Display Dialog Default Answer Rendering Issue

    After I installed Lion, I started having issues with Applescript rendering a dialog with a textbox.
    This is the sort of thing I end up seeing:
    The text box in the dialog doesn't render properly, and it's not possible to enter anything into it.  I've played with the display dialog parameters but it doesn't matter if I give an empty string for the default answer or other text, the behaviour is always the same.
    Does anyone have any ideas as to what the issue might be?  I suspect I might need to reinstall Lion, but I'm not sure that's even going to clear up the issue.
    Thanks in advance.

    Tried replacing 'Standard Additions' osax, dumping editor prefs, dumping ALL user prefs (not recommended for faint of heart), using a different copy of Script Editor. Nothing helped.
    The user account displaying the bug is an old one; likely updated continuosly from the days of Tiger or earlier.
    A std account on the same drive, which merely went through the Snow Leopard -> Lion transition, does not exhibit the edit-text display bug.
    So I bit the bullet, and used Migration Assistant to move to a new account on a clean install of Lion on a spare hard drive. 3.5 hours later, the Applescript edit text display bug is gone.
    As far as I can tell, all docs, Apps etc. made it through intact.
    If that continues to look true over the next few days, I'll try using SuperDuper! to copy the new drive back to the older, faster HD.
    Perhaps some other Lion bugs'll also go away now that I've got a cleaner install.

  • Issues writing Applescript loop...

    Hi,
    I am new to using AppleScript and was googling how to use Applescript to open a Terminal session and connect to a remote box using SSH.
    This was successful in a single instance, using the script:
    tell application "Terminal"
      activate
      do script "ssh [email protected]"
      -- // write some linux commands to remote server
    end tell
    Then saving it as an application.
    As this now works, the issue I have is that I have a list of box's that I need to connect to on a regular basis (i've just moved from a Windows machine where I used putty) and need to create Applescripts, for each one.
    I am having trouble in finding out how to use this list (currently a numbers spreadsheet) to create some kind of loop, to create individual files, for each one.
    I was thinking about converting it to a csv file and the creating a script that uses the column headers:
    IP address
    Number
    Name
    Location
    Opens script editor, enters the same script as before, replaces the IP address, saves the script, using the naming convention Number-Name and then putting them into subfolders for each location. However as I said earlier, as I'm new to scripting in AppleScript, I'm finding it hard to trall through all the tutorials and forums for assistance.
    Can anyone offer any advice?

    Hi,
    I am new to using AppleScript and was googling how to use Applescript to open a Terminal session and connect to a remote box using SSH.
    This was successful in a single instance, using the script:
    tell application "Terminal"
      activate
      do script "ssh [email protected]"
      -- // write some linux commands to remote server
    end tell
    Then saving it as an application.
    As this now works, the issue I have is that I have a list of box's that I need to connect to on a regular basis (i've just moved from a Windows machine where I used putty) and need to create Applescripts, for each one.
    I am having trouble in finding out how to use this list (currently a numbers spreadsheet) to create some kind of loop, to create individual files, for each one.
    I was thinking about converting it to a csv file and the creating a script that uses the column headers:
    IP address
    Number
    Name
    Location
    Opens script editor, enters the same script as before, replaces the IP address, saves the script, using the naming convention Number-Name and then putting them into subfolders for each location. However as I said earlier, as I'm new to scripting in AppleScript, I'm finding it hard to trall through all the tutorials and forums for assistance.
    Can anyone offer any advice?

  • Performance issue with calendar and applescript

    Hi Community,
    I have a performance issue using applescript and calendar with this script:
    tell application "Calendar"
              tell calendar "Cal"
                                            set theList to (get {summary, start date, end date, uid} of events)
    end tell
    end tell
    There are app. 700 events in the calendar "Cal". Therefore the get-command takes about 15 seconds. The problem is, that iCal is completely blocked for this time. This means it is even not possilbe to scroll through the calendar. This problem occurs only under OS X 10.9. With OS X 10.8.x it is still possible to use calendar even a time-consuming get-command is processed.
    Any ideas? Maybe there is a way to reduce the task-priority of an applescript?

    I have to step in here...
    1) Must I set "None" or "On Time"
    - In order for the Calendar to fire an Alarm, it must know what time to fire the alarm. In the event of an All Day Event, it will go off at 12am. The option for "Repeat", below the "Alarm", states the frequency of the event (Daily, Weekly, Monthly, Yearly, etc). So to set an alarm that fires once a month, set the TIME you want the alarm to go off (Make sure "All Day" is unchecked if you want a specific time), then choose "On Time" for the "Alarm", and one of the several "Monthly" options for "Repeat". If I missed something in what you were asking, please let me know and I will do my best to more directly answer your question.
    2) Calendar cannot sync with the Mac.
    - Not directly. However, your phone automatically syncs with your Google Calendar, set up if you create your account. If you so choose, you may export your iCal calendar, import it into your Google calendar, and then use your Google calendar (http://calendar.google.com) to manage your agenda. The changes sync automatically with your device.
    Once again, I hope this shed some light on things. To the Verizon rep who originally answered this question: I have no intention to bash you, however please bear in mind that your opinions and comments will always be held in higher regard than mine, so if you choose to answer a question, please try to solve the problem as opposed to just answer the question. I have experience with all manner of devices and operating systems, from WebOS to BB to iOS to Android, and I believe this phone has the best hardware coupled with a solid operating system in TouchWiz, and I don't want to see people frustrated with these devices by questions that get nothing more than, "You can't do that" answers from the people that are expected to support them.

Maybe you are looking for

  • Memory and dual channel problems

    Hi Can someone help me? 1- I have 2x512 MB DDR 400 Twinmos CL 2.5 and amd xp 2600 (fsb 333) and Msi K7n2 delta L. I have tested separatly my sticks, one of them woks great, if i put dram clock at 166 or 200 the sytem is always stable. The other stick

  • CS4 on Dual Core MacBook Pro...Unknown Recording Error?

    Hello! I am getting the "Unknown Recording Error" when I capture from my Analog-DV Bridge. It will record for a few minutes, then give the error. Recording quality for what it does record is perfect. Any ideas? Thanks!

  • Website goes blank

    Using Internet Explorer, I am able to access the website rci.com, but when I get to a certain point, after logging in, the page I am looking for appears for a split second, then goes to white, and I can go no further. This does not happen on my daugh

  • Cbih82 "Accident details" - How to make older entries not editable

    Hello Experts, Is there a way in CBIH82 to set the "Accident details" long text field (under involved tab) in order that older entries cannot be modified? What I'd like would be like in maintenance notifications. No Changes to Existing Long Text. Whe

  • Regarding blank space at the end of the record

    Hi All, We have a requirement where in which we have to pass either X or space to that field and this field is at the end of the record. I can download it to local pc or to an application server. If i pass normal space, i'm unable to view it when i d