pencil tool in director?

Ask a Question related to Macromedia Director Lingo, Design and Development.

  1. #1

    Default pencil tool in director?

    im trying to create a director file that could allow the user to draw an object and attach it to an email. i would like to use something similar to the pencil tool that can be adjusted to the ink functionality in macromedia flash. does anyone know if this is at all possible? cheers mshelly ;-)


    misseyshelly webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Pencil Tool changes to Grab Tool Acrobat 7
      Whenever I am doing editing or inserting proofreading marks, I used to (in Acrobat 6) jsut click on Pencil Tool, write to my hearts content, and then...
    2. Using Pencil tool to handwrite?
      Is it possible to use the Pencil tool in InDesign to add handwriting to a file? I have typed into InDesign a "contract" that requires signatures,...
    3. 'Pencil or Smooth tool: unexpected exception' CS Illustrator error
      After I have placed an external Jpeg into an Illustrator document, then I use the pencil tool I receive the following error message 'Pencil or...
    4. Pencil or smooth tool exception error
      1. Select File > Place to place an image file. (Select the 'Link' and 'Template' checkboxes.) 2. The file is placed into a new, template layer....
    5. pencil tool
      when writing with the pencil tool smooth arc sections in the hand written text are converted into a series of short arc segments which makes the hand...
  3. #2

    Default Re: pencil tool in director?

    i'm not sure quite what you mean by adjusted to the ink functionality
    in flash, but within director the command you would be looking for to
    do this is setPixel.

    e.g.

    on mouseDown me
    repeat while the stillDown = true
    member("paint").image.setPixel(the mouseH, the mouseV, rgb(255, 0,
    0))
    updateStage
    end repeat
    end


    of course you'll need to play with that a bit to get it working
    smoother, but this will get you started.

    hth,

    regards,

    richie



    On Tue, 29 Jul 2003 10:38:31 +0000 (UTC), "misseyshelly"
    [email]webforumsuser@macromedia.com[/email] wrote:
    >im trying to create a director file that could allow the user to draw an object and attach it to an email. i would like to use something similar to the pencil tool that can be adjusted to the ink functionality in macromedia flash. does anyone know if this is at all possible? cheers mshelly ;-)
    >
    Richie Bisset Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139