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

  • SEARCH
  • Home
  • 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

Related Questions

I might need to write some GUI application that runs on .Net (and Windows),
I need to write a simple Java GUI application that, basically, allows the user
I need to write a Delphi application that pulls entries up from various tables
I need to write a .NET application that listens to a SMS message ,
I need to write a component for an application that interacts tightly with a
In my Python application, I need to write a regular expression that matches a
I need to write a simple command-line application in Java. It would be nice
We need to write an application that has two parts: One side of the
I need to write a web application using SQL Server 2005, asp.net, and ado.net.
I need to write test cases for my application. I've chosen NUnit. Please let

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.