home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / Chip_2004-04_cd1.bin / software / tux / tuxpaint.exe / docs / FAQ.txt < prev    next >
Text File  |  2003-12-24  |  18KB  |  465 lines

  1. FAQ.txt for Tux Paint
  2.  
  3. Tux Paint - A simple drawing program for children.
  4.  
  5. Copyright 2003 by Bill Kendrick
  6. bill@newbreedsoftware.com
  7. http://www.newbreedsoftware.com/tuxpaint/
  8.  
  9. September 14, 2002 - June 14, 2003
  10.  
  11.  
  12. Frequently Asked Questions:
  13. ---------------------------
  14.   Drawing-related
  15.   ---------------
  16.     Why can't you have different sized erasers, or use the brush shapes?
  17.     --------------------------------------------------------------------
  18.       The eraser is meant for quickly erasing large parts of the picture.
  19.  
  20.       You'll notice it simply turns parts of the picture white.  You can
  21.       get the result you want (different sizes and/or shapes) by simply using
  22.       the "Brush" tool and the white paint color! :^)
  23.  
  24.  
  25.     The Magic "Fill" Tool Looks Bad
  26.     -------------------------------
  27.       Tux Paint is probably comparing exact pixel colors when filling.
  28.       This is faster, but looks worse.  Run the command "tuxpaint --version"
  29.       from a command line, and you should see, amongst the other output:
  30.       "Low Quality Flood Fill enabled".
  31.  
  32.       To change this, you must rebuild Tux Paint from source.
  33.       Be sure to remove or comment out any line that says:
  34.  
  35.         #define LOW_QUALITY_FLOOD_FILL
  36.  
  37.       in the "tuxpaint.c" file in the "src" directory.
  38.  
  39.  
  40.     Stamp outlines are always rectangles
  41.     ------------------------------------
  42.       Tux Paint was built with low-quality (but faster) stamp outlines.
  43.  
  44.       Rebuild Tux Paint from source.  Be sure to remove or comment out any
  45.       line that says:
  46.     
  47.         #define LOW_QUALITY_STAMP_OUTLINE
  48.  
  49.       in the "tuxpaint.c" file in the "src" directory.
  50.  
  51.  
  52.     The Rubber Stamp tool is greyed out!
  53.     ------------------------------------
  54.       This means that Tux Paint either couldn't find any stamp images,
  55.       or was asked not to load them.
  56.  
  57.       If you installed Tux Paint, but did not install the separate,
  58.       optional "Stamps" collection, quit Tux Paint and install it now.
  59.       It should be available from the same place you got the main
  60.       Tux Paint program.
  61.  
  62.       If you don't want to install the default collection of stamps,
  63.       you can just create your own.  See the README documentation for
  64.       more on creating PNG image files, TXT text description files,
  65.       WAV sound files, and DAT text data files that make up stamps.
  66.  
  67.       Finally, if you install the stamps, and think they should be loading,
  68.       check to see that the "nostamps" option isn't being set.
  69.       (Either via a "--nostamps" option to Tux Paint's command line, or
  70.       "nostamps=yes" in the configuration file.)
  71.  
  72.       If so, either change/remove the "nostamps" option, or you can
  73.       override it with "--stamps" on the command line or
  74.       "nostamps=no" or "stamps=yes" in a configuration file.
  75.  
  76.  
  77.   Interface Problems
  78.   ------------------
  79.     Stamp thumbnails in the Stamp Selector look bad
  80.     -----------------------------------------------
  81.       Tux Paint was probably compiled with the faster, lower quality
  82.       thumbnail code enabled.  Run the command:  "tuxpaint --version" from
  83.       a command line.  If, amongst the other output, you see the text:
  84.       "Low Quality Thumbnails enabled", then this is what's happening.
  85.  
  86.       Rebuild Tux Paint from source.  Be sure to remove or comment out any
  87.       line that says:
  88.     
  89.         #define LOW_QUALITY_THUMBNAILS
  90.  
  91.       in the "tuxpaint.c" file in the "src" directory.
  92.  
  93.  
  94.     Pictures in the 'Open' dialog look bad
  95.     --------------------------------------
  96.       "Low Quality Thumbnails" is probably enabled.
  97.       See: "Stamp thumbnails in the Stamp Selector look bad", above.
  98.  
  99.  
  100.     The color picker buttons are ugly squares, not pretty buttons!
  101.     --------------------------------------------------------------
  102.       Tux Paint was probably compiled with the nice looking color
  103.       selector buttons disabled.  Run the command:  "tuxpaint --version" from
  104.       a command line.  If, amongst the other output, you see the text:
  105.       "Low Quality Color Selector enabled", then this is what's happening.
  106.  
  107.       Rebuild Tux Paint from source.  Be sure to remove or comment out any
  108.       line that says:
  109.     
  110.         #define LOW_QUALITY_COLOR_SELECTOR
  111.  
  112.       in the "tuxpaint.c" file in the "src" directory.
  113.   
  114.   
  115.     The Mouse Pointer Leaves Trails!
  116.     --------------------------------
  117.       In Windows under fullscreen, and in Linux under fullscreen outside of
  118.       X-Window, the SDL library has a bug where the mouse pointer can leave
  119.       trails of 'garbage' on the screen.
  120.  
  121.       Until there's a fix, either don't use fullscreen, or disable the
  122.       fancy mouse pointer shapes using the configuration option:
  123.  
  124.         nofancycursors=yes
  125.  
  126.       Or by using this command-line argument:
  127.  
  128.         --nofancycursors
  129.   
  130.   
  131.     All of the text is in uppercase!
  132.     --------------------------------
  133.       The "uppercase" option is on.
  134.  
  135.       If you're running Tux Paint from a command-line, make sure you're
  136.       not giving it an "--uppercase" option.
  137.  
  138.       If you're running Tux Paint by double-clicking an icon, check the
  139.       properties of the icon to see if "--uppercase" is listed as a
  140.       command-line argument.
  141.  
  142.       If "--uppercase" isn't being sent on the command line, check Tux Paint's
  143.       configuration file ("~/.tuxpaintrc" under Linux and Unix,
  144.       "tuxpaint.cfg" under Windows) for a line reading:  "uppercase=yes".
  145.  
  146.       Either remove that line, or simply run Tux Paint with the command-line
  147.       argument: "--mixedcase", which will override the uppercase setting.
  148.  
  149.  
  150.     Tux Paint is in a weird language!
  151.     ---------------------------------
  152.       Make sure your locale setting is correct.
  153.       See "Tux Paint won't switch to my language", below.
  154.  
  155.  
  156.     Tux Paint won't switch to my language
  157.     -------------------------------------
  158.       Linux and Unix users: Make sure the locale is available
  159.       -------------------------------------------------------
  160.         Make sure the locale you want is available.  Check your
  161.         "/etc/locale.gen" file.  See README.txt for the locales
  162.         Tux Paint uses (especially when using the "--lang" option).
  163.  
  164.         Note: Debian users can simply run "dpkg-reconfigure locales"
  165.         if the locales are managed by dpkg.
  166.       
  167.       If you're using the "--lang" command-line option
  168.       ------------------------------------------------
  169.         Try using the "--locale" command-line option, or your operating system's
  170.         locale settings (e.g., the "$LANG" environment variable), and
  171.         please e-mail us regarding your trouble.
  172.       
  173.       If you're using the "--locale" command-line option
  174.       --------------------------------------------------
  175.         If this doesn't work, please e-mail us regarding your trouble.
  176.     
  177.       If you're trying to use your Operating System's locale
  178.       ------------------------------------------------------
  179.         If this doesn't work, please e-mail us regarding your trouble.
  180.  
  181.       Make sure you have the necessary font
  182.       -------------------------------------
  183.         Some translations require their own font.  Chinese and Korean,
  184.     for example, need Chinese and Korean TrueType Fonts installed
  185.     and placed in the proper location, respectively.
  186.  
  187.     The appropriate fonts for such locales can be downloaded from the
  188.     Tux Paint website:
  189.  
  190.       http://www.newbreedsoftware.com/tuxpaint/download/fonts.php3
  191.  
  192.  
  193.   Printing
  194.   --------
  195.     I get the message "You can't print yet!" when I go to print!
  196.     ------------------------------------------------------------
  197.       The "print delay" option is on.  You can only print once every X seconds.
  198.  
  199.       If you're running Tux Paint from a command-line, make sure you're
  200.       not giving it a "--printdelay=..." option.
  201.  
  202.       If you're running Tux Paint by double-clicking an icon, check the
  203.       properties of the icon to see if "--printdelay=..." is listed as
  204.       a command-line argument.
  205.  
  206.       If a "--printdelay=..." option isn't being sent on the command line,
  207.       check Tux Paint's configuration file ("~/.tuxpaintrc" under Linux and Unix,
  208.       "tuxpaint.cfg" under Windows) for a line reading:  "printdelay=...".
  209.  
  210.       Either remove that line, set the delay value to 0 (no delay), or
  211.       decrease the delay to a value you prefer.  (See README.txt).
  212.       Or, you can simply run Tux Paint with the command-line argument:
  213.       "--printdelay=0", which will override the configuration file's setting,
  214.       and allow unlimited printing.  (You won't have to wait between prints.)
  215.  
  216.  
  217.     I simply can't print!  The button is greyed out!
  218.     ------------------------------------------------
  219.       The "no print" option is on.
  220.  
  221.       If you're running Tux Paint from a command-line, make sure you're
  222.       not giving it a "--noprint" option.
  223.  
  224.       If you're running Tux Paint by double-clicking an icon, check the
  225.       properties of the icon to see if "--noprint" is listed as an argument.
  226.  
  227.       If "--noprint" isn't on the command-line, check Tux Paint's configuration
  228.       file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg" under Windows)
  229.       for a line reading:  "noprint=yes".
  230.  
  231.       Either remove that line, or simply run Tux Paint with the command-line
  232.       argument: "--print", which will override the configuration file's setting.
  233.  
  234.  
  235.   Saving
  236.   ------
  237.     Tux Paint always saves over my old picture!
  238.     -------------------------------------------
  239.       The "save over" option is enabled.  (This disables the prompt
  240.       that would appear when you click 'Save.')
  241.  
  242.       If you're running Tux Paint from a command-line, make sure you're
  243.       not giving it a "--saveover" option.
  244.  
  245.       If you're running Tux Paint by double-clicking an icon, check the
  246.       properties of the icon to see if "--saveover" is listed as an argument.
  247.  
  248.       If "--saveover" isn't on the command-line, check Tux Paint's configuration
  249.       file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg" under Windows)
  250.       for a line reading:  "saveover=yes".
  251.  
  252.       Either remove that line, or simply run Tux Paint with the command-line
  253.       argument: "--saveoverask", which will override the configuration file's
  254.       setting.
  255.  
  256.       Also, see "Tux Paint always saves a new picture!", below.
  257.  
  258.  
  259.     Tux Paint always saves a new picture!
  260.     -------------------------------------
  261.       The "never save over" option is enabled.  (This disables the prompt
  262.       that would appear when you click 'Save.')
  263.  
  264.       If you're running Tux Paint from a command-line, make sure you're
  265.       not giving it a "--saveovernew" option.
  266.  
  267.       If you're running Tux Paint by double-clicking an icon, check the
  268.       properties of the icon to see if "--saveovernew" is listed as an argument.
  269.  
  270.       If "--saveovernew" isn't on the command-line, check Tux Paint's
  271.       configuration file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg"
  272.       under Windows) for a line reading:  "saveover=new".
  273.  
  274.       Either remove that line, or simply run Tux Paint with the command-line
  275.       argument: "--saveoverask", which will override the configuration file's
  276.       setting.
  277.  
  278.       Also, see "Tux Paint always saves over my old picture!", above.
  279.  
  280.  
  281.   Audio Problems
  282.   --------------
  283.     There's no sound!
  284.     -----------------
  285.       First, check the obvious:
  286.  
  287.         * Are you certain you're using the computer with the sound card? ;^)
  288.         * Are your speakers connected and turned on?
  289.         * Is the volume turned up on your speakers?
  290.         * Is the volume turned up in your Operating System's "mixer?"
  291.         * Are any other programs running that use sound?  (They may be
  292.           'blocking' Tux Paint)
  293.  
  294.       If sound seems to work otherwise (and you're sure no other program is
  295.       "blocking" the sound device), then Tux Paint is either running with
  296.       a "no sound" option or was compiled with sound support disabled entirely.
  297.  
  298.       To test whether sound support was enabled when Tux Paint was compiled,
  299.       run Tux Paint from a command line, like so:
  300.  
  301.         tuxpaint --version
  302.  
  303.       If, amongst the other information, you see "Sound disabled", then the
  304.       version of Tux Paint you're running has sound disabled.  Recompiled
  305.       Tux Paint, and be sure NOT to build the "nosound" target.
  306.       (i.e., don't run "make nosound")  Be sure SDL_mixer library is available!
  307.  
  308.       If Tux Paint wasn't build without sound support, make sure you're
  309.       not running Tux Paint with the "--nosound" option as a command-line
  310.       argument.
  311.  
  312.       If it's not, then check the configuration file ("~/.tuxpaintrc" under
  313.       Linux and Unix, and "tuxpaint.cfg" under Windows) for a line reading:
  314.       "nosound=yes".
  315.  
  316.       Either remove that line, or simply run Tux Paint with the command-line
  317.       argument: "--sound", which will override the configuration file's setting.
  318.  
  319.  
  320.     The sound effects sound strange
  321.     -------------------------------
  322.       This could have to do with how SDL and SDL_mixer were initialized.
  323.       (The buffer size chosen.)
  324.  
  325.       Please e-mail us with details about your computer system.
  326.       (Operating system and version, sound card, which version of Tux Paint
  327.       you're running (run "tuxpaint --version" to verify), and so on.)
  328.  
  329.  
  330.   Fullscreen Mode Problems
  331.   ------------------------
  332.     When I run Tux Paint full-screen and ALT-TAB out, the window turns black!
  333.     -------------------------------------------------------------------------
  334.       This is apparently a bug in the SDL library.  Sorry.
  335.  
  336.  
  337.     When I run Tux Paint full-screen, it has large borders around it
  338.     ----------------------------------------------------------------
  339.       Linux users - Your X-Window server is probably not set with the
  340.       ability to switch to the desired resolution: 640 x 480.
  341.       (This is typically done manually under the XFree86 server by
  342.       pressing [Ctrl]-[Alt]-[KeyPad Plus] and -[KeyPad Minus].)
  343.  
  344.       For this to work, your monitor must support that resolution, and
  345.       you need to have it listed in your X server configuration.
  346.  
  347.       Check the "Display" subsection of the "Screen" section of your
  348.       XFree86 configuration file (typically "/etc/X11/XF86Config-4" or
  349.       "/etc/X11/XF86Config", depending on the version of XFree86 you're
  350.       using; 3.x or 4.x, respectively).
  351.  
  352.       Add "640x480" to the appropriate "Modes" line.  (e.g., in
  353.       the "Display" subsection that contains 16-bit color depth ("Depth 16"),
  354.       which is what Tux Paint tries to use.)
  355.  
  356.       e.g.:
  357.  
  358.         Modes "1280x1024" "1024x768" "800x600" "640x480"
  359.  
  360.       Note that some Linux distributions have tools that can make these
  361.       changes for you.  Debian users can run the command
  362.       "dpkg-reconfigure xserver-xfree86" as root, for example.
  363.  
  364.  
  365.     Tux Paint keeps running in Full Screen mode - I want it windowed!
  366.     -----------------------------------------------------------------
  367.       The "fullscreen" option is set.
  368.  
  369.       If you're running Tux Paint from a command-line, make sure you're
  370.       not giving it a "--fullscreen" option.
  371.  
  372.       If you're running Tux Paint by double-clicking an icon, check the
  373.       properties of the icon to see if "--fullscreen" is listed as an argument.
  374.  
  375.       If "--fullscreen" isn't on the command-line, check Tux Paint's
  376.       configuration file ("~/.tuxpaintrc" under Linux and Unix, 
  377.       "tuxpaint.cfg" under Windows) for a line reading:  "fullscreen=yes".
  378.  
  379.       Either remove that line, or simply run Tux Paint with the command-line
  380.       argument: "--windowed", which will override the configuration file's
  381.       setting.
  382.  
  383.  
  384.   Other Probelms
  385.   --------------
  386.     Tux Paint keeps writing weird messages to the screen / to a text file
  387.     ---------------------------------------------------------------------
  388.       A few messages are normal, but if Tux Paint is being extremely verbose
  389.       (like listing the name of every rubber-stamp image it finds while loading
  390.       them), then it was probably compiled with debugging output turned on.
  391.  
  392.       Rebuild Tux Paint from source.  Be sure to remove or comment out any
  393.       line that says:
  394.     
  395.         #define DEBUG
  396.  
  397.       in the "tuxpaint.c" file in the "src" directory.
  398.  
  399.   
  400.     Tux Paint is using options I didn't specify!
  401.     --------------------------------------------
  402.       By default, Tux Paint first looks at configuration files for
  403.       options.
  404.  
  405.       Unix and Linux
  406.       --------------
  407.         Under Unix and Linux, it first examines the system-wide
  408.         configuration file, located here:
  409.  
  410.           /etc/tuxpaint/tuxpaint.conf
  411.  
  412.         It then examines the user's personal configuration file:
  413.       
  414.           ~/.tuxpaintrc
  415.  
  416.         Finally, any options sent as command-line arguments are used.
  417.  
  418.       Windows
  419.       -------
  420.         Under Windows, Tux Paint first examines the configuration file:
  421.  
  422.           tuxpaint.cfg
  423.  
  424.         Then, any options sent as command-line arguments are used.
  425.  
  426.  
  427.       This means that if anything is set in a configuration file that
  428.       you don't want set, you'll need to either change the config. file
  429.       (if you can), or override the option on the command-line.
  430.  
  431.       For example, if "/etc/tuxpaint/tuxpaint.conf" includes an option
  432.       to disable sound:
  433.  
  434.         nosound=yes
  435.  
  436.       You can reenable sound by either adding this option to your own
  437.       ".tuxpainrc" file:
  438.  
  439.         sound=yes
  440.  
  441.       Or by using this command-line argument:
  442.  
  443.         --sound
  444.  
  445.  
  446.       Linux and Unix users can also disable the system-wide configuration
  447.       file by including the following command-line argument:
  448.  
  449.         --nosysconfig
  450.  
  451.       Tux Paint will then only look at "~/.tuxpaintrc" and command-line
  452.       arguments to determine what options should be set.
  453.  
  454.  
  455. Help / Contact
  456. --------------
  457.   Any questions you don't see answered?  Let me know!
  458.  
  459.     bill@newbreedsoftware.com
  460.  
  461.   Or post to our 'tuxpaint-dev' mailing list:
  462.  
  463.     http://www.newbreedsoftware.com/tuxpaint/lists/
  464.  
  465.