Results 1 to 4 of 4
  1. #1
    tkutter
    Guest
    I just bought a 730 series from motorola. Been playing around with
    the composer, which is nice, but I want to know how I can create my
    own polymorphic ring tones. There are a number of sites that sell
    them for 2 bucks each, but is there software you can buy or some
    conversion program that takes wav or midi files and outputs the right
    format? Also, even if I do create it, how do I get a polymorphic ring
    tone to my phone and save it correctly?

    thanks, t



    See More: How do you create polymorphic ringtones for 720/730




  2. #2
    Scott in Aztlán
    Guest

    Re: How do you create polymorphic ringtones for 720/730

    On 7 Dec 2003 23:41:38 -0800, [email protected] (tkutter) wrote:

    >I just bought a 730 series from motorola. Been playing around with
    >the composer, which is nice, but I want to know how I can create my
    >own polymorphic ring tones.


    class ringtone
    {
    public:
    ringtone ();
    ~ringtone ();
    virtual void create ();
    };

    class 720ringtone : public ringtone
    {
    720ringtone ();
    ~720ringtone ();
    void create ();
    };

    class 730ringtone : public ringtone
    {
    730ringtone ();
    ~730ringtone ();
    void create ();
    };


    // SORRY, COULDN'T RESIST

    --
    http://www.geocities.com/slothkills/



  3. #3
    Nicholas Stewart
    Guest

    Re: How do you create polymorphic ringtones for 720/730

    [email protected] (tkutter) wrote in message news:<[email protected]>...
    > I just bought a 730 series from motorola. Been playing around with
    > the composer, which is nice, but I want to know how I can create my
    > own polymorphic ring tones. There are a number of sites that sell
    > them for 2 bucks each, but is there software you can buy or some
    > conversion program that takes wav or midi files and outputs the right
    > format? Also, even if I do create it, how do I get a polymorphic ring
    > tone to my phone and save it correctly?
    >
    > thanks, t


    www.idencustom.com



  4. #4
    Nicholas Stewart
    Guest

    Re: How do you create polymorphic ringtones for 720/730

    [email protected] (tkutter) wrote in message news:<[email protected]>...
    > I just bought a 730 series from motorola. Been playing around with
    > the composer, which is nice, but I want to know how I can create my
    > own polymorphic ring tones. There are a number of sites that sell
    > them for 2 bucks each, but is there software you can buy or some
    > conversion program that takes wav or midi files and outputs the right
    > format? Also, even if I do create it, how do I get a polymorphic ring
    > tone to my phone and save it correctly?
    >
    > thanks, t


    www.idencustom.com



  • Similar Threads