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

  1. #1

    Default Coloring book

    Hi All,
    I would like to create a coloring book using the paintbox behaviors. I created
    some black outline artwork in Illustrator, that I have imported into director
    mx2004, and I want to create paint tools so that the user can color in the art
    (like you do with crayons in a traditional coloring book when you were a kid).
    I want to make it so that the colors don't cover up the black outlines of the
    artwork, and so the user can press a button that will clear all of the colors
    that have been painted on, but not clear the outline. Has anyone done something
    like this before, or know where I can find more info on doing this? I am
    assuming it is pretty common, but I haven't been able to find much.

    There is an example of something similar to what I would like to set up on
    this website under the "games and toys link":
    [url]http://www.elfmovie.com/coloringbook.html[/url]

    The way I was thinking of would use a "paintbrush tool", rather than the
    "paint bucket" tool on this example, however if it is easier to do it this way,
    then I would prefer to use the paint bucket instead. Also, can I print the
    artwork using printomatic lite (like on the example above)?


    Lutris Man Guest

  2. Similar Questions and Discussions

    1. ${} can't be coloring ?
      I want to extend the codecoloring in dreamweaver for syntax highlighting ${...} I use <blockstart /> <blockend /> but $ can't be coloring, who...
    2. shockwave coloring book
      I want to make a shockwave coloring book. the idea is that i upload my own artwork to website , then people can click on a picture to color. ...
    3. Making a coloring book from photos
      This was the topic of one of our Challenges. We got a few submissions, with varying degrees of success. Feel free to take a look, most have...
    4. coloring cartoons
      It seems that cartoonists prefer to color their creations using Photoshop, rather than Illustrator. Is this perception correct? If so, Why? Do they...
    5. coloring scrollbars?
      A while ago, someone mentioned an extension that makes it possible to color the browser scrollbars, that included a little display that showed what...
  3. #2

    Default Re: Coloring book

    There are some links to more example paint toys at the bottom of:

    [url]http://stu.aii.edu/~jb3010/samples-index.htm[/url]


    ( sorry my "Paint toy" file is expired.)



    The paintbox behaviors have certain limitations. To make a more
    comprehansive paint application one would hve to 'invent' their own code.


    For your template select & revert function, you might copy a template
    image to the canvas:

    member("myCanvas").image = member("catTemplate").image.duplicate()

    If you dig into the code you might find a way to tie in the semi
    documented FloodFill imaging lingo function to accomplish a paint bucket
    function.
    JB 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