Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 176795
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T13:56:27+00:00 2026-05-11T13:56:27+00:00

I need to write an application that accepts very simple doodles by users, kind

  • 0

I need to write an application that accepts very simple doodles by users, kind of like in tenthousandcents and thesheepmarket.

For example, I might want users to write their name using their mouse.

Any suggestions?

I don’t even need to host it myself. If there are services offered somewhere that I can just use that is fine.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T13:56:28+00:00Added an answer on May 11, 2026 at 1:56 pm

    It’s not too difficult to put together a basic scribbling app using just html. I’ll let you work out the details of making it production ready.

    I’m using extjs here as a cross browser event framework, but you can use whatever you’re comfortable with (jquery). I’m also using Raphael to get cross browser drawing functionality.

    <!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01//EN' 'http://www.w3.org/TR/html4/strict.dtd'> <html>   <head>     <title>TestPage</title>     <script language='javascript' src='raphael-src.js'></script>     <script type='text/javascript' src='extjs/adapter/ext/ext-base.js'></script>     <script type='text/javascript' src='extjs/ext-all-debug.js'></script>     <script language='javascript'>       scribbler = function (container, width, height) {       this.canvas = Raphael(container, width, height);        this.currentdraw = null;        Ext.get(container).on('mousedown', function(e) {             var el = Ext.get(container);             this.currentdraw = this.canvas.path({ stroke: 'black', fill: 'none', 'stroke-width':4 });             this.currentdraw.moveTo(e.getPageX() - el.getLeft(), e.getPageY() - el.getTop());       }, this);              Ext.get(container).on('mousemove', function(e) {             var el = Ext.get(container);             if (this.currentdraw != null)             {                 this.currentdraw.lineTo(e.getPageX() - el.getLeft(), e.getPageY() - el.getTop());             }       }, this);              Ext.get(container).on('mouseup', function(e) {             this.currentdraw = null;       }, this);            }      var scribble;     Ext.onReady( function()          {             scribble = new scribbler('container', 800,600);         }     );      </script>    </head>    <body>     <div id='container' style='position:relative;border:1px solid black;width:640px;height:400px'>     </div>   </body> </html> 

    You’ll have to record and store the various scribble lines in a form for submission. And ensure that the mouse pointer is correct all the time (it’s a text bar under IE).

    Anyway, enjoy.

    PS. I’ve uploaded a working example including raphael and complete extjs2 libraries to drop.io (3Mb, 7zip).

    PPS. I’ve uploaded a working example which is a basic (but pretty much a complete) control. See inquisitiveturtle.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 80k
  • Answers 80k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I wound up creating my own WSDL file in order… May 11, 2026 at 4:23 pm
  • Editorial Team
    Editorial Team added an answer The first example will either add or modify the global… May 11, 2026 at 4:23 pm
  • Editorial Team
    Editorial Team added an answer Check SerializationBinder During serialization, a formatter transmits the information required… May 11, 2026 at 4:23 pm

Related Questions

Whenever I try to write graphical programs (whether a game or really any GUI
This is a followup question to one I previously asked: start-program-if-not-already-running-in-java I didn't get
Please pardon my C#.Net newbie status. If this is obvious and I missed it
I need to automate FileMon.exe to startup with filters, save out the log it

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.