NEWBIE QUESTION. ISYNC WITH NOTES?

HI
I RECENTLY PURCHASED MY FIRST MAC AND AM LOVING IT.
I AM CONTEMPLATING WHICH PROGRAM TO SYNC WITH MY SONY CLIE TG50. SHOULD I SYNC WITH ENTOURAGE OR THE ICAL ETC.
IF I DECIDED ON THE ICAL ETC WHAT PROGRAM SYNCS WITH THE NOTES SECTION ON MY CLIE?
THANKS
ROB

Welcome to Apple Discussions.
Are you referring to an attached note? One attached to a calendar event? Or, are you referring to a Palm memo.
iSync will synchronize notes associated with an event, but has no provision for synchronizing memos. You can either continue to synchronize memos to the Palm Desktop, or use the Missing Sync for Palm OS instead of iSync to synchronize events and tasks with iCal, contacts with the Address Book and memos with a Mac OS memo application supplied by Mark/Space as a part of that package.

Similar Messages

  • Newbie question: working with note durations across measure breaks

    Hi, I'm a newbie with Garage Band. Last night I was entering some music as a software instrument, using the editor in both musical notation view and the other view (where the notes are solid rectangles). I'm having problems with note lengths. When I enter an eighth note, I want it to stay an eighth note . But when I copy-and-paste them, they don't start at the right place and the duration gets strange.
    I also had a lot of problems ending a 4/4 measure with an eighth note (on the "and" of beat 4) that should be tied to the first note in the next measure. I couldn't do this easily. I finally switched to the non-music notation mode, and dragged the right side of the note across the measure boundary, but with that, I couldn't get an eighth note, it would only go for a full beat in the next measure.
    Thank for any help
    j

    So, when I expect to add a quarter note (actually it should be notated as two tied eighth notes), instead I'm getting a dotted quarter note (appearing as an eighth note tied to a quarter note).
    As I said, musical notation is not directly tied to the duration of the notes. So before you add that last quarter note, the display is perfectly musical. Now when you add the last note, the display switches and displays the notes differently. I just tried it out, I can add that note in the notation view (you might want to put it on the 1 of the next beat and then drag it to the left a little).
    Most experienced GB users don't bother to use the notation view for editing, but use the "piano roll" view which gives you a lot more control about how the notes sound. Then let GB do the job of displaying them - you don't have andy influence on that anyway.

  • JSF newbie question - ServletException - Method not found

    I just started learning JSF (and JSP) by following the tutorial:
    JSF for nonbelievers: Clearing the FUD about JSF
    http://www-128.ibm.com/developerworks/library/j-jsf1/
    I'm getting a ServletException and I'm not sure why. Instead of starting the tutorial over, I'd like to learn what I'm doing wrong.
    The exception is:
    exception
    javax.servlet.ServletException: Method not found: [email protected]()
    root cause
    javax.el.MethodNotFoundException: Method not found: [email protected]()In the calculator.jsp page (a simple page with two form fields), I noticed that when I type CalcBean., my IDE (NetBeans) only autocompletes the class variables and neither of the methods (add and multiply). I quickly searched and someone suggested restarting the server. This did not fix my problem. I must be doing something completely wrong or I missed something in the tutorial. If you don't mind, please read the simple files below and see if you can spot anything wrong. Please keep in mind this is my first time using JSF (and JSP for that matter). If you can suggest a better newbie tutorial, please do! Thanks
    web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
        <context-param>
            <param-name>com.sun.faces.verifyObjects</param-name>
            <param-value>false</param-value>
        </context-param>
        <context-param>
            <param-name>com.sun.faces.validateXml</param-name>
            <param-value>true</param-value>
        </context-param>
        <context-param>
            <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
            <param-value>client</param-value>
        </context-param>
        <servlet>
            <servlet-name>Faces Servlet</servlet-name>
            <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
            </servlet>
        <servlet-mapping>
            <servlet-name>Faces Servlet</servlet-name>
            <url-pattern>/faces/*</url-pattern>
        </servlet-mapping>
        <session-config>
            <session-timeout>
                30
            </session-timeout>
        </session-config>
        <welcome-file-list>
         <welcome-file>
                index.jsp
            </welcome-file>
        </welcome-file-list>
    </web-app>
    faces-config.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!-- =========== FULL CONFIGURATION FILE ================================== -->
    <faces-config version="1.2" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd">
      <managed-bean>
        <description>
                    The "backing file" bean that backs up the calculator webapp
                </description>
        <managed-bean-name>CalcBean</managed-bean-name>
        <managed-bean-class>secondapp.controller.CalcBean</managed-bean-class>
        <managed-bean-scope>session</managed-bean-scope>
      </managed-bean>
      <navigation-rule>
        <from-view-id>/calculator.jsp</from-view-id>
        <navigation-case>
          <from-outcome>success</from-outcome>
          <to-view-id>/results.jsp</to-view-id>
        </navigation-case>
      </navigation-rule>
    </faces-config>
    secondapp.controller.CalcBean.java
    package secondapp.controller;
    import secondapp.model.Calculator;
    * @author Jonathan
    public class CalcBean {
        private int firstNumber;
        private int secondNumber;
        private int result;
        private Calculator calculator;
        /** Creates a new instance of CalcBean */
        public CalcBean() {
            setFirstNumber(0);
            setSecondNumber(0);
            result = 0;
            setCalculator(new Calculator());
        public String add(int a, int b) {
            result = calculator.add(a,b);
            return "success";
        public String multiply(int a, int b) {
            result = calculator.multiply(a,b);
            return "success";
        // <editor-fold desc=" Accessors/Mutators ">
        public int getFirstNumber() {
            return firstNumber;
        public void setFirstNumber(int firstNumber) {
            this.firstNumber = firstNumber;
        public int getSecondNumber() {
            return secondNumber;
        public void setSecondNumber(int secondNumber) {
            this.secondNumber = secondNumber;
        public int getResult() {
            return result;
        public void setCalculator(Calculator calculator) {
            this.calculator = calculator;
        // </editor-fold>
    secondapp.model.Calculator
    package secondapp.model;
    * @author Jonathan
    public class Calculator {
        /** Creates a new instance of Calculator */
        public Calculator() {
        public int add(int a, int b) {
            return a+b;
        public int multiply(int a, int b) {
            return a*b;
    calculator.jsp
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <html>
        <head><title>Calculator Test</title></head>
        <body bgcolor="white">
            <h2>My Calculator</h2>
            <f:view>
                <h:form id="calcForm">
                    <h:panelGrid columns="3">
                        <h:outputLabel value="First Number" for="firstNumber" />
                        <h:inputText id="firstNumber" value="#{CalcBean.firstNumber}" required="true" />
                        <h:message for="firstNumber" />
                        <h:outputLabel value="Second Number" for="secondNumber" />
                        <h:inputText id="secondNumber" value="#{CalcBean.secondNumber}" required="true" />
                        <h:message for="secondNumber" />
                    </h:panelGrid>
                    <h:panelGroup>
                        <h:commandButton id="submitAdd" action="#{CalcBean.add}" value="Add" />
                        <h:commandButton id="submitMultiply" action="#{CalcBean.multiply}" value="Multiply" />
                    </h:panelGroup>
                </h:form>
            </f:view>
        </body>
    </html>

    In the future, please add some line breaks so I don't have to scroll horizontally to read your post.
    The problem is that the CalcBean.add/.multiply method is requiring two parameters. This method should be parameter-less. When talking about action methods, they should return String and not take any parameters.
    So, remove the parameters. You collect a firstNumber and a secondNumber from the user. These are the numbers you want to add (or multiply). Use those values (instead of the parameters) to calculate the result.
    The code changes aren't too complicated. I'd write them out for you, but you seem interested in learning (which is great by the way!). Let me know if you need more help on this.
    CowKing
    ps - I see more problems with the code, and I haven't given you all the answers. I know, I'm mean. You'll learn better if you try to fix things on your own first. I've just given you enough info to overcome the immediate issue. =)

  • Newbie question - JDBC with JSF

    Anyone have a good example of populating a JSF object like a list box, table, etc with data using jdbc?

    So, when I expect to add a quarter note (actually it should be notated as two tied eighth notes), instead I'm getting a dotted quarter note (appearing as an eighth note tied to a quarter note).
    As I said, musical notation is not directly tied to the duration of the notes. So before you add that last quarter note, the display is perfectly musical. Now when you add the last note, the display switches and displays the notes differently. I just tried it out, I can add that note in the notation view (you might want to put it on the 1 of the next beat and then drag it to the left a little).
    Most experienced GB users don't bother to use the notation view for editing, but use the "piano roll" view which gives you a lot more control about how the notes sound. Then let GB do the job of displaying them - you don't have andy influence on that anyway.

  • NewBie Question: Javac.exe Not recognized?

    Hi I just want to try out my v first hello world program in MOTOROLA IDEN SDK For J2ME Tech (v 1.2)
    I added a hello-world java file in the javafiles folder. Then when i try to build, an error occurred:
    "start building...
    compile D:\IAProject\TRIALCODEEXAMPLE\Example.java...
    javac.exe is not recognized as an internal or external command,
    operable program or batch file.
    Building over"
    Wat's the problem? Did i missed out any settings? THanks!!!!!

    THX, but I have new problem with this:
    Unhandled Exception in constructor java.lang.ClassNotFoundException: HelloWorld
    Error creating MIDlet HelloWorld
    sorce from UserGuide Motorola iDEN SDK..
    package  com.mot.j2me.midlets.helloworld;
    import  javax.microedition.lcdui.*;
    import  javax.microedition.midlet.*;
    public class  HelloWorld extends  MIDlet  {
    private  Form mainScreen;
    private  Display myDisplay;
    HelloWorld() {
    myDisplay = Display.getDisplay(this);
    mainScreen  = new Form("Hello World");
    StringItem  strItem = new StringItem("Hello", "This  is  a J2ME MIDlet."); mainScreen.append(strItem);
    public void  startApp()  throws  MIDletStateChangeException 
    { myDisplay.setCurrent(mainScreen);
    public void pauseApp() {
    public void  destroyApp(boolean  unconditional)   {
    }Why this code doesn't work??

  • Newbie questions - application deployment not working

    Hi
    I'm running SCCM 2012 r2 (no CU's yet but I'm just downloading #4). Everything appears normal for a new setup and there are no errors reporting in any of the status lists. Discovery, boundaries, AD schema has been extended and the System Manager AD container
    (and permissions) set up. 
    All domain PCs and users are listed in Assets. I have created a device collection to roll out test applications based on membership of an AD security group which has picked up the correct membership for that group (a single computer).
    I have created an msi to test application deployment (all it does is drop a test file into the windows folder) and tested that manually installing it with msiexec /i /q options on a test PC.  I have created the application, deployment type and deployment
    for the test msi and confirmed that the application has been deployed to the distribution point.
    And then... nothing happens.  I've checked the Monitoring\Deployments view and nothing is reported for the application (i.e. after selecting the application I have a grey pie chart with zero for all entries).  I've checked the report "Client
    push installation status details" and it reports an error (Last error = 5), 4 retries and  status of "retry" but no details of what's going on (and I can't find any log files which might tell me).
    Any assistance would be massively appreciated - despair is setting in!
    Thanks in advance
    Martin

    Definitely check to make sure the client is installed successfully on your test device.  No client, no app deployment :-).  Look for the ccmsetup.log in c:\windows\ccmsetup\logs
    Also, if you are using client push to install the client, make sure you ahve a client push account configured and that it has local administrator rights on the devices.  Ensure the Windows Firewall allows WMI and File/Print Sharing also.
    Jeff

  • Re: How can I restore DELETED APPS :- icloud,facebook,twitter on my iPhone 4S?(THE APPS IN QUESTION CAME WITH MY iPhone I DID NOT PURCHASE THEM).These apps are dimmed and not responsive on my phone. I cannot back up to icloud.

    Little fingers have deleted the above mentioned apps!
    THE APPS IN QUESTION CAME WITH MY iPHONE.
    I DID NOT PURCHASE THEM!
    HOW CAN I RESTORE THEM, THEY ARE NOT LISTED IN THE APP STORE????

    Hey Clyde71,
    Thanks for the question. From your description, it sounds like various Account Settings have been greyed out in your Settings application (iCloud, Facebook, Twitter). The cause for these being greyed out is a restriction setup on your iPhone. You'll probably see that Restrictions are turned "On" in Settings > General.
    You'll want to disable the restriction "Allow Changes: Accounts". For more information on restrictions, see this article:
    iOS: Understanding Restrictions (Parental Controls)
    http://support.apple.com/kb/HT4213
    Thanks,
    Matt M.

  • ISync will not start with error "Could not retrieve .Mac config"

    iSync fails when run from .Mac System Preferences with message
    "There was a problem with the sync operation
    Could not retrieve .Mac configuration."
    However, Backup and iDisk access are successfull.
    Dual G5 Etc.   Mac OS X (10.4.7)  

    iSync does not run from a System Preferences pane, but .Mac Sync does.
    This is actually a .Mac Sync issue, not an iSync issue. Since the release of Mac OS X 10.4 about 19 months ago, the synchronization of selected content to and through .Mac has been the responsibility of .Mac Sync. You may want to post you query here, instead:
    http://discussions.apple.com/forum.jspa?forumID=957

  • What do I do if wen I go to download an app it comes up with three security questions .wen I press on the third question it does not respond just turned blue n stays blue n won't let me go any further therefor not lettin me download any apps

    What do I do if wen I go to download an app it comes up with three security questions .wen I press on the third question it does not respond just turned blue n stays blue n won't let me go any further therefor not lettin me download any apps.   Thanks

    I have decided to dedicate this thread to the wonderful errors of Lion OSX. Each time I find a huge problem with Lion I will make note of it here.
    Today I discovered a new treasure of doggie poop in Lion. No Save As......
    I repeat. No Save As. In text editor I couldn't save the file with a new extension. I finally accomplished this oh so majorly difficult task (because we all know how difficult it should be to save a file with a new extension) by pressing duplicate and then saving a copy of the file with a new extension. Yet then I had to delete the first copy and send it to trash. And of course then I have to secure empty trash because if I have to do this the rest of my mac's life I will be taking up a quarter of percentage of space with duplicate files. So this is the real reason they got rid of Save As: so that it would garble up some extra GB on the ole hard disk.
    So about 20 minutes of my time were wasted while doing my homework and studying for an exam because I had to look up "how to save a file with a new extension in  mac Lion" and then wasted time sitting here and ranting on this forum until someone over at Apple wakes up from their OSX-coma.
    are you freaking kidding me Apple? I mean REALLY?!!!! who the heck designed this?!!! I want to know. I want his or her name and I want to sit down with them and have a long chat. and then I'd probably splash cold water on their face to wake them up.
    I am starting to believe that Apple is Satan.

  • My secret questions starting with g... mail not belong to me i couldnt change my answers

    my secret questions starting with g... mail not belong to me i couldnt change my answers..
    i use only my apple id mail which is [email protected]

    You need to ask Apple to reset your security questions; ways of contacting them include phoning AppleCare and asking for the Account Security team, clicking here and picking a method for your country, and filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (103782)

  • Is it possible to chat in polish with Adobe experts or contact them by phone in Poland ? I have a question that is not answered on Adobe website.

    Is it possible to chat in polish with Adobe experts or contact them by phone in Poland ? I have a question that is not answered on Adobe website.

    Ok, I made a fresh provider hosted application to test out Dragan's suggested solution.
    You can view the repository here:
    https://github.com/mattmazzola/providerhosted_01
    After comparing this new application and the old one, I realized I had a misunderstanding of how the SP.RequestExecutor expected urls to be constructed. I thought it was required to use the SP.AppContextSite() endpoint.
    I was incorrectly constructing a request to the appWeb with a url similar to the following:
    https://contoso-6f921c6addc19f.sharepoint.com/ProviderHostedApp/_api/SP.AppContextSite(@target)/contextinfo?@target=%27https%3A%2F%2Fcontoso-6f921c6addc19f.sharepoint.com%2FProviderHostedApp%27
    As you can see, the @target was set to the appWeb url but infact when making request to the appWeb using RequestExecutor you do no need to do this.  It is simply appweburl + "/_api/contextinfo".  It is only when making requests for
    resources existing on the hostWeb that you need use the AppContextSite and set the @target.
    I think the link to the solution I provided is more helpful, but I marked Dragan's reply as the answer to give him credit for helping me.

  • ISync : does not work with "basic" Nokias , like 3110 classic  ??? 

    i regularly use the iPhone 3GS , but carry the my rusty nokia 3110 when roaming abroad ( every 2 weeks ) to , well , avoid paying roaming charges
    i've just moved to mac from PC. to begin with , nokia does not have a "Mac suite " , iSync does not support the 3110 , nokia multimedia transfer doesn't work , too.
    apart from manually adding phone numbers , what can i do to sync to my address book in 10.6.2 ?
    many thanks .

    I also bought a Peltor bluetooth headset. I used it with 2 different phones (n73 and n96) and had problems with the connection on both phones. For example every time I turned off the headset, I had to pair the devices again. I also have used several other bluetooth headsets with absolutey no problems. So I assumed the problem was on the Peltor headset and sent it for service. I hope it will start to work.

  • Newbie Question about FM 8 and Acrobat Pro 9

    Hello:
    I have some dcouments that I've written in FM v8.0p277. I print them to PDF so that I can have a copy to include on a CD and I also print some hard copies.
    My newbie question is whether there is a way to create a  PDF for hard copy where I mainitain the colors in photos and figures but that the text that is hyperlinked doesn't appear as blue. I want to keep the links live within the soft copy. Is there something I can change within Frame or with Acrobat?
    TIA,
    Kimberly

    Kimberly,
    How comes the text is blue in the first place? I guess the cross-reference formats use some character format which makes them blue? There are many options:
    Temporarily change the color definition for the color used in the cross-reference format to black.
    Temporarily change the character format to not use that color.
    Temporarily change the cross-reference definition to not used that character format.
    Whichever method you choose, I would create a separate document with the changed format setting and import those format into your book, create the PDF and then import the same format from the official template.
    - Michael

  • Domain name settings - Newbie question

    Sorry for a newbie question!
    I am already pointing a domain name to web hosting for email account. Now, I need an application server to run ERP software and Oracle, and installing Solaris and Oracle need a domain name.
    If I point my domain name to the server, how do I receive emails from web hosting???
    Install an email server to the application server instead? What can I do if I want the same domain name? Any option?

    Setting up a mailserver and making sure it doesn't suddenly turn into a spambox is not something you do with the use of a few commands. I suggest to dive into the Solaris admin guide on docs.sun.com and read up on e-mail and network services.
    If that is asking too much of your time you'll be better off getting your ISP to handle all this for you.

  • Newbie Question:  How much computer do I need?

    Newbie Question:
    I would like to use MainStage 3 in a live performance environment to play bars, parties, etc.  I'm not looping, using it to playback recordings, processing outboard equipment or vocal processing.  I want to stop carrying Rolands, Nords, Korgs, etc and get to a controller and a rack with a Mac Mini in it.
    I tested a download of Mainstage 3 on my home Mac Mini (late 2012, 3.5 Ghz i5, 4GB RAM, 500GB drive) and it seemed to run fairly well.  $30 well invested so I trekked forward... I purchased a Mac Mini (late 2009,  2.52GHz Core 2 Duo, 6GB RAM, 128GB SSD) for $200.  I started to do more elaborate keyboard setups to see how the CPU would hold up.  It typically runs from 30% to 50% of capacity (CPU and Memory)  It actually boots and runs better than the i5.  I hear the occasion gitch, but it actually seems to be getting better in time (or I'm rock and roll deaf.
    I got a rack, an Airport Express, a Radial USB interface and a Nektar Panorama P6.  It's starting to get expensive, but I'm emboldened by the actual quality for the sound and the flexibility of arranging for live performance.  What used to take me two and three keyboards to play, I can now fit on one performance patch.
    OK, now the question... am I at the limits of this little Core 2 Duo?  Should I upgrade the i5 with more RAM and a bigger SSD and use that?  Should I get a new(er) i7 and bite the $1,500 bullet for the additional RAM and SSD?
    I see that most of you are running pretty nice Macbook Pros with i7 and lots of everything.  My needs are modest; am I OK? 
    BTW, I want to run a Mac Mini in a box because I don't want to carry a laptop out in the open.  If I was doing bigger shows I wouldn't care but I play some rowdy bars and constantly have folks hanging off me while I'm playing.  It's fun, but hard on gear.  If you can't drop it or dip it in beer, it won't last long where I work.
    Matt Donnelly

    Rule of thumb: newer and faster is better. But, depending the complexity of your needs you may be OK with an older Mac. Some glitches that happen in a live performance are due to loss of communication with USB or Firewire inputs, so make sure they're secure. I recently upgraded from a 2010 Mac Mini 2.6 dual core with 16 GB RAM, which was used live for nearly four years, to the latest Mac Mini 3.0 i7 with 16 GB RAM and a 500 GB SSD. I was getting an occasional stuck note with the older one. The new one is rock solid. Some of my patches may have up to a dozen channel strips mapped to three keyboards. The Mini is mounted in a rack next to a MOTU Ultralite Hybrid. It is a good idea to map a panic button on your keyboard to controller # 123(all notes off). Also, you might want to invest in a battery backup power supply(APC, Cyberpower, etc.-$40-$60) to protect your Mac against power loss, which can damage you hard drive.

Maybe you are looking for