Converted Frequently Asked Questions (FAQ) to HTML.

Mentioned Tux Paint Config. tool in FAQ.
This commit is contained in:
William Kendrick 2005-10-09 22:09:25 +00:00
parent 2778173a26
commit 63e9dcb656
3 changed files with 847 additions and 786 deletions

View file

@ -304,6 +304,10 @@ http://www.newbreedsoftware.com/tuxpaint/
and feature requests to the SourceForge
tracker: http://sourceforge.net/tracker/?group_id=66938
* Converted Frequently Asked Questions (FAQ) to HTML.
* Mentioned Tux Paint Config. tool in FAQ.
* New translations:
-----------------
* Albanian translation created.

View file

@ -1,534 +1,537 @@
FAQ.txt for Tux Paint
Tux Paint
version 0.9.15
Frequently Asked Questions
Tux Paint - A simple drawing program for children.
Copyright 2002-2005 by Bill Kendrick and others
New Breed Software
Copyright 2005 by Bill Kendrick
bill@newbreedsoftware.com
http://www.newbreedsoftware.com/tuxpaint/
bill@newbreedsoftware.com
http://www.newbreedsoftware. com/tuxpaint/
September 14, 2002 - January 9, 2005
September 14, 2002 - October 9, 2005
Drawing-related
Frequently Asked Questions:
---------------------------
Drawing-related
---------------
The Magic "Fill" Tool Looks Bad
-------------------------------
Tux Paint is probably comparing exact pixel colors when filling.
This is faster, but looks worse. Run the command "tuxpaint --version"
from a command line, and you should see, amongst the other output:
"Low Quality Flood Fill enabled".
* The Magic "Fill" Tool Looks Bad
To change this, you must rebuild Tux Paint from source.
Be sure to remove or comment out any line that says:
Tux Paint is probably comparing exact pixel colors when filling. This
is faster, but looks worse. Run the command "tuxpaint --version" from
a command line, and you should see, amongst the other output: "Low
Quality Flood Fill enabled".
#define LOW_QUALITY_FLOOD_FILL
To change this, you must rebuild Tux Paint from source. Be sure to
remove or comment out any line that says:
in the "tuxpaint.c" file in the "src" directory.
#define LOW_QUALITY_FLOOD_FILL
in the "tuxpaint.c" file in the "src" directory.
Stamp outlines are always rectangles
------------------------------------
Tux Paint was built with low-quality (but faster) stamp outlines.
* Stamp outlines are always rectangles
Rebuild Tux Paint from source. Be sure to remove or comment out any
line that says:
#define LOW_QUALITY_STAMP_OUTLINE
Tux Paint was built with low-quality (but faster) stamp outlines.
in the "tuxpaint.c" file in the "src" directory.
Rebuild Tux Paint from source. Be sure to remove or comment out any
line that says:
#define LOW_QUALITY_STAMP_OUTLINE
The Rubber Stamp tool is greyed out!
------------------------------------
This means that Tux Paint either couldn't find any stamp images,
or was asked not to load them.
in the "tuxpaint.c" file in the "src" directory.
If you installed Tux Paint, but did not install the separate,
optional "Stamps" collection, quit Tux Paint and install it now.
It should be available from the same place you got the main
Tux Paint program.
* The Rubber Stamp tool is greyed out!
If you don't want to install the default collection of stamps,
you can just create your own. See the README documentation for
more on creating PNG image files, TXT text description files,
WAV sound files, and DAT text data files that make up stamps.
This means that Tux Paint either couldn't find any stamp images, or
was asked not to load them.
Finally, if you install the stamps, and think they should be loading,
check to see that the "nostamps" option isn't being set.
(Either via a "--nostamps" option to Tux Paint's command line, or
"nostamps=yes" in the configuration file.)
If you installed Tux Paint, but did not install the separate, optional
"Stamps" collection, quit Tux Paint and install it now. It should be
available from the same place you got the main Tux Paint program.
(Note: As of version 0.9.14, Tux Paint comes with a small collection
of example stamps.)
If so, either change/remove the "nostamps" option, or you can
override it with "--stamps" on the command line or
"nostamps=no" or "stamps=yes" in a configuration file.
If you don't want to install the default collection of stamps, you can
just create your own. See the README documentation for more on
creating PNG image files, TXT text description files, WAV sound files,
and DAT text data files that make up stamps.
Finally, if you install the stamps, and think they should be loading,
check to see that the "nostamps" option isn't being set. (Either via a
"--nostamps" option to Tux Paint's command line, or "nostamps=yes" in
the configuration file.)
Interface Problems
------------------
Stamp thumbnails in the Stamp Selector look bad
-----------------------------------------------
Tux Paint was probably compiled with the faster, lower quality
thumbnail code enabled. Run the command: "tuxpaint --version" from
a command line. If, amongst the other output, you see the text:
"Low Quality Thumbnails enabled", then this is what's happening.
Rebuild Tux Paint from source. Be sure to remove or comment out any
line that says:
#define LOW_QUALITY_THUMBNAILS
in the "tuxpaint.c" file in the "src" directory.
If so, either change/remove the "nostamps" option, or you can override
it with "--stamps" on the command line or "nostamps=no" or
"stamps=yes" in a configuration file.
Interface Problems
Pictures in the 'Open' dialog look bad
--------------------------------------
"Low Quality Thumbnails" is probably enabled.
See: "Stamp thumbnails in the Stamp Selector look bad", above.
The color picker buttons are ugly squares, not pretty buttons!
--------------------------------------------------------------
Tux Paint was probably compiled with the nice looking color
selector buttons disabled. Run the command: "tuxpaint --version" from
a command line. If, amongst the other output, you see the text:
"Low Quality Color Selector enabled", then this is what's happening.
Rebuild Tux Paint from source. Be sure to remove or comment out any
line that says:
#define LOW_QUALITY_COLOR_SELECTOR
in the "tuxpaint.c" file in the "src" directory.
The Mouse Pointer Leaves Trails!
--------------------------------
In Windows under fullscreen, and in Linux under fullscreen outside of
X-Window, the SDL library has a bug where the mouse pointer can leave
trails of 'garbage' on the screen.
Until there's a fix, either don't use fullscreen, or disable the
fancy mouse pointer shapes using the configuration option:
nofancycursors=yes
Or by using this command-line argument:
--nofancycursors
All of the text is in uppercase!
--------------------------------
The "uppercase" option is on.
If you're running Tux Paint from a command-line, make sure you're
not giving it an "--uppercase" option.
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--uppercase" is listed as a
command-line argument.
If "--uppercase" isn't being sent on the command line, check Tux Paint's
configuration file ("~/.tuxpaintrc" under Linux and Unix,
"tuxpaint.cfg" under Windows) for a line reading: "uppercase=yes".
Either remove that line, or simply run Tux Paint with the command-line
argument: "--mixedcase", which will override the uppercase setting.
Tux Paint is in a weird language!
---------------------------------
Make sure your locale setting is correct.
See "Tux Paint won't switch to my language", below.
Tux Paint won't switch to my language
-------------------------------------
Linux and Unix users: Make sure the locale is available
-------------------------------------------------------
Make sure the locale you want is available. Check your
"/etc/locale.gen" file. See README.txt for the locales
Tux Paint uses (especially when using the "--lang" option).
Note: Debian users can simply run "dpkg-reconfigure locales"
if the locales are managed by dpkg.
If you're using the "--lang" command-line option
------------------------------------------------
Try using the "--locale" command-line option, or your operating system's
locale settings (e.g., the "$LANG" environment variable), and
please e-mail us regarding your trouble.
If you're using the "--locale" command-line option
--------------------------------------------------
If this doesn't work, please e-mail us regarding your trouble.
If you're trying to use your Operating System's locale
------------------------------------------------------
If this doesn't work, please e-mail us regarding your trouble.
Make sure you have the necessary font
-------------------------------------
Some translations require their own font. Chinese and Korean,
for example, need Chinese and Korean TrueType Fonts installed
and placed in the proper location, respectively.
The appropriate fonts for such locales can be downloaded from the
Tux Paint website:
* Stamp thumbnails in the Stamp Selector look bad
http://www.newbreedsoftware.com/tuxpaint/download/fonts/
Tux Paint was probably compiled with the faster, lower quality
thumbnail code enabled. Run the command: "tuxpaint --version" from a
command line. If, amongst the other output, you see the text: "Low
Quality Thumbnails enabled", then this is what's happening.
Rebuild Tux Paint from source. Be sure to remove or comment out any
line that says:
Printing
--------
Tux Paint won't print, gives an error, or prints garbage (Unix/Linux)
---------------------------------------------------------------------
Tux Paint prints by creating a PostScript rendition of the picture
and sending it to an external command. By default, this command is
the "lpr" printing tool.
If that program is not available (for example, you're using CUPS,
the Common Unix Printing System, and do not have "cups-lpr" installed),
you will need to specify an appropriate command using the
"printcommand" option in Tux Paint's configuration file.
(See the OPTIONS documentation.)
Note: Versions of Tux Paint prior to 0.9.15 used a different default
command for printing, "pngtopnm | pnmtops | lpr", as Tux Paint output
PNG format, rather than PostScript.
If you had changed your "printcommand" option prior to Tux Paint 0.9.15,
you will need to go back and alter it to accept PostScript.
#define LOW_QUALITY_THUMBNAILS
in the "tuxpaint.c" file in the "src" directory.
I get the message "You can't print yet!" when I go to print!
------------------------------------------------------------
The "print delay" option is on. You can only print once every X seconds.
* Pictures in the 'Open' dialog look bad
If you're running Tux Paint from a command-line, make sure you're
not giving it a "--printdelay=..." option.
"Low Quality Thumbnails" is probably enabled. See: "Stamp thumbnails
in the Stamp Selector look bad", above.
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--printdelay=..." is listed as
a command-line argument.
* The color picker buttons are ugly squares, not pretty buttons!
If a "--printdelay=..." option isn't being sent on the command line,
check Tux Paint's configuration file ("~/.tuxpaintrc" under Linux and
Unix, "tuxpaint.cfg" under Windows) for a line reading:
"printdelay=...".
Tux Paint was probably compiled with the nice looking color selector
buttons disabled. Run the command: "tuxpaint --version" from a command
line. If, amongst the other output, you see the text: "Low Quality
Color Selector enabled", then this is what's happening.
Either remove that line, set the delay value to 0 (no delay), or
decrease the delay to a value you prefer. (See README.txt).
Or, you can simply run Tux Paint with the command-line argument:
"--printdelay=0", which will override the configuration file's setting,
and allow unlimited printing. (You won't have to wait between prints.)
Rebuild Tux Paint from source. Be sure to remove or comment out any
line that says:
#define LOW_QUALITY_COLOR_SELECTOR
I simply can't print! The button is greyed out!
------------------------------------------------
The "no print" option is on.
in the "tuxpaint.c" file in the "src" directory.
If you're running Tux Paint from a command-line, make sure you're
not giving it a "--noprint" option.
* All of the text is in uppercase!
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--noprint" is listed as an argument.
The "uppercase" option is on.
If "--noprint" isn't on the command-line, check Tux Paint's configuration
file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg" under Windows)
for a line reading: "noprint=yes".
If you're running Tux Paint from a command-line, make sure you're not
giving it an "--uppercase" option.
Either remove that line, or simply run Tux Paint with the command-line
argument: "--print", which will override the configuration file's setting.
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--uppercase" is listed as a
command-line argument.
If "--uppercase" isn't being sent on the command line, check
Tux Paint's configuration file ("~/.tuxpaintrc" under Linux and Unix,
"tuxpaint.cfg" under Windows) for a line reading: "uppercase=yes".
Saving
------
Tux Paint always saves over my old picture!
-------------------------------------------
The "save over" option is enabled. (This disables the prompt
that would appear when you click 'Save.')
Either remove that line, or simply run Tux Paint with the command-line
argument: "--mixedcase", which will override the uppercase setting.
If you're running Tux Paint from a command-line, make sure you're
not giving it a "--saveover" option.
Or use Tux Paint Config. and make sure "Show Uppercase Text Only"
(under "Languages") is not checked.
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--saveover" is listed as an argument.
* Tux Paint is in a different language!
If "--saveover" isn't on the command-line, check Tux Paint's configuration
file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg" under Windows)
for a line reading: "saveover=yes".
Make sure your locale setting is correct. See "Tux Paint won't switch
to my language", below.
Either remove that line, or simply run Tux Paint with the command-line
argument: "--saveoverask", which will override the configuration file's
setting.
* Tux Paint won't switch to my language
Also, see "Tux Paint always saves a new picture!", below.
* Linux and Unix users: Make sure the locale is available
Make sure the locale you want is available. Check your
"/etc/locale.gen" file. See the README documentation for the
locales Tux Paint uses (especially when using the "--lang"
option).
Tux Paint always saves a new picture!
-------------------------------------
The "never save over" option is enabled. (This disables the prompt
that would appear when you click 'Save.')
Note: Debian users can simply run "dpkg-reconfigure locales" if
the locales are managed by "dpkg."
If you're running Tux Paint from a command-line, make sure you're
not giving it a "--saveovernew" option.
* If you're using the "--lang" command-line option
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--saveovernew" is listed as an argument.
Try using the "--locale" command-line option, or your
operating system's locale settings (e.g., the "$LANG"
environment variable), and please e-mail us regarding your
trouble.
If "--saveovernew" isn't on the command-line, check Tux Paint's
configuration file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg"
under Windows) for a line reading: "saveover=new".
* If you're using the "--locale" command-line option
Either remove that line, or simply run Tux Paint with the command-line
argument: "--saveoverask", which will override the configuration file's
setting.
If this doesn't work, please e-mail us regarding your
trouble.
Also, see "Tux Paint always saves over my old picture!", above.
* If you're trying to use your Operating System's locale
If this doesn't work, please e-mail us regarding your
trouble.
Audio Problems
--------------
There's no sound!
-----------------
First, check the obvious:
* Make sure you have the necessary font
* Are you certain you're using the computer with the sound card? ;^)
* Are your speakers connected and turned on?
* Is the volume turned up on your speakers?
* Is the volume turned up in your Operating System's "mixer?"
* Are any other programs running that use sound? (They may be
'blocking' Tux Paint)
Some translations require their own font. Chinese and
Korean, for example, need Chinese and Korean TrueType Fonts
installed and placed in the proper location, respectively.
If sound seems to work otherwise (and you're sure no other program is
"blocking" the sound device), then Tux Paint is either running with
a "no sound" option or was compiled with sound support disabled entirely.
The appropriate fonts for such locales can be downloaded
from the Tux Paint website:
To test whether sound support was enabled when Tux Paint was compiled,
run Tux Paint from a command line, like so:
http://www.newbreedsoftware.com/tuxpaint/download/fonts/
tuxpaint --version
Printing
If, amongst the other information, you see "Sound disabled", then the
version of Tux Paint you're running has sound disabled. Recompiled
Tux Paint, and be sure NOT to build the "nosound" target.
(i.e., don't run "make nosound") Be sure SDL_mixer library is available!
* Tux Paint won't print, gives an error, or prints garbage (Unix/Linux)
If Tux Paint wasn't build without sound support, make sure you're
not running Tux Paint with the "--nosound" option as a command-line
argument.
Tux Paint prints by creating a PostScript rendition of the picture and
sending it to an external command. By default, this command is the
"lpr" printing tool.
If it's not, then check the configuration file ("~/.tuxpaintrc" under
Linux and Unix, and "tuxpaint.cfg" under Windows) for a line reading:
"nosound=yes".
If that program is not available (for example, you're using CUPS, the
Common Unix Printing System, and do not have "cups-lpr" installed),
you will need to specify an appropriate command using the
"printcommand" option in Tux Paint's configuration file. (See the
OPTIONS documentation.)
Either remove that line, or simply run Tux Paint with the command-line
argument: "--sound", which will override the configuration file's setting.
Note: Versions of Tux Paint prior to 0.9.15 used a different default
command for printing, "pngtopnm | pnmtops | lpr", as Tux Paint output
PNG format, rather than PostScript.
If you had changed your "printcommand" option prior to Tux Paint
0.9.15, you will need to go back and alter it to accept PostScript.
The sound effects sound strange
-------------------------------
This could have to do with how SDL and SDL_mixer were initialized.
(The buffer size chosen.)
* I get the message "You can't print yet!" when I go to print!
Please e-mail us with details about your computer system.
(Operating system and version, sound card, which version of Tux Paint
you're running (run "tuxpaint --version" to verify), and so on.)
The "print delay" option is on. You can only print once every
X seconds.
If you're running Tux Paint from a command-line, make sure you're not
giving it a "--printdelay=..." option.
Fullscreen Mode Problems
------------------------
When I run Tux Paint full-screen and ALT-TAB out, the window turns black!
-------------------------------------------------------------------------
This is apparently a bug in the SDL library. Sorry.
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--printdelay=..." is listed as a
command-line argument.
If a "--printdelay=..." option isn't being sent on the command line,
check Tux Paint's configuration file ("~/.tuxpaintrc" under Linux and
Unix, "tuxpaint.cfg" under Windows) for a line reading:
"printdelay=...".
When I run Tux Paint full-screen, it has large borders around it
----------------------------------------------------------------
Linux users - Your X-Window server is probably not set with the
ability to switch to the desired resolution: 640 x 480.
(This is typically done manually under the XFree86 server by
pressing [Ctrl]-[Alt]-[KeyPad Plus] and -[KeyPad Minus].)
Either remove that line, set the delay value to 0 (no delay), or
decrease the delay to a value you prefer. (See the README
documentation).
For this to work, your monitor must support that resolution, and
you need to have it listed in your X server configuration.
Or, you can simply run Tux Paint with the command-line argument:
"--printdelay=0", which will override the configuration file's
setting, and allow unlimited printing. (You won't have to wait between
prints.)
Check the "Display" subsection of the "Screen" section of your
XFree86 configuration file (typically "/etc/X11/XF86Config-4" or
"/etc/X11/XF86Config", depending on the version of XFree86 you're
using; 3.x or 4.x, respectively).
Or use Tux Paint Config. and make sure "Print Delay" (under
"Printing") is set to "0 seconds."
Add "640x480" to the appropriate "Modes" line. (e.g., in
the "Display" subsection that contains 16-bit color depth ("Depth 16"),
which is what Tux Paint tries to use.)
* I simply can't print! The button is greyed out!
e.g.:
The "no print" option is on.
Modes "1280x1024" "1024x768" "800x600" "640x480"
If you're running Tux Paint from a command-line, make sure you're not
giving it a "--noprint" option.
Note that some Linux distributions have tools that can make these
changes for you. Debian users can run the command
"dpkg-reconfigure xserver-xfree86" as root, for example.
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--noprint" is listed as an argument.
If "--noprint" isn't on the command-line, check Tux Paint's
configuration file ("~/.tuxpaintrc" under Linux and Unix,
"tuxpaint.cfg" under Windows) for a line reading: "noprint=yes".
Tux Paint keeps running in Full Screen mode - I want it windowed!
-----------------------------------------------------------------
The "fullscreen" option is set.
Either remove that line, or simply run Tux Paint with the command-line
argument: "--print", which will override the configuration file's
setting.
If you're running Tux Paint from a command-line, make sure you're
not giving it a "--fullscreen" option.
Or use Tux Paint Config. and make sure "Allow Printing" (under
"Printing") is checked.
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--fullscreen" is listed as an argument.
Saving
If "--fullscreen" isn't on the command-line, check Tux Paint's
configuration file ("~/.tuxpaintrc" under Linux and Unix,
"tuxpaint.cfg" under Windows) for a line reading: "fullscreen=yes".
* Tux Paint always saves over my old picture!
Either remove that line, or simply run Tux Paint with the command-line
argument: "--windowed", which will override the configuration file's
setting.
The "save over" option is enabled. (This disables the prompt that
would appear when you click 'Save.')
If you're running Tux Paint from a command-line, make sure you're not
giving it a "--saveover" option.
Other Probelms
--------------
Tux Paint won't run
-------------------
If Tux Paint aborts with the message:
"You're already running a copy of Tux Paint!",
this means it has been launched in the last 30 seconds.
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--saveover" is listed as an
argument.
A lockfile ("~/.tuxpaint/lockfile.dat" on Linux and Unix,
"userdata\lockfile.dat" on Windows) is used to make sure Tux Paint
isn't run too many times at once (e.g., due to a child impatiently
clicking its icon more than once).
If "--saveover" isn't on the command-line, check Tux Paint's
configuration file ("~/.tuxpaintrc" under Linux and Unix,
"tuxpaint.cfg" under Windows) for a line reading: "saveover=yes".
Even if the lockfile exists, it contains the 'time' Tux Paint was last
run. If it's been more than 30 seconds, Tux Paint should run fine,
and simply update the lockfile with the current time.
Either remove that line, or simply run Tux Paint with the command-line
argument: "--saveoverask", which will override the configuration
file's setting.
If multiple users are sharing the directory where this file is stored
(e.g., on a shared network drive), then you'll need to disable this
feature.
Or use Tux Paint Config. and make sure "Ask Before Overwriting" (under
"Saving") is checked.
To disable the lockfile, add the "--nolockfile" argument to Tux Paint's
command-line.
Also, see "Tux Paint always saves a new picture!", below.
* Tux Paint always saves a new picture!
I can't quit Tux Paint
----------------------
The "noquit" option is set. This disables the "Quit" button in
Tux Paint's toolbar (greying it out), and prevents Tux Paint from
being quit using the [Escape] key.
The "never save over" option is enabled. (This disables the prompt
that would appear when you click 'Save.')
If Tux Paint is not in fullscreen mode, simply click the
window close button on Tux Paint's title bar.
(i.e., the "(x) at the upper right.)
If you're running Tux Paint from a command-line, make sure you're not
giving it a "--saveovernew" option.
If Tux Paint is in fullscreen mode, you will need to use the
[Shift] + [Control] + [Escape] sequence on the keyboard to
quit Tux Paint.
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--saveovernew" is listed as an
argument.
(Note: with or without "noquit" set, you can always use the
[Alt] + [F4] combination on your keyboard to quit Tux Paint.)
If "--saveovernew" isn't on the command-line, check Tux Paint's
configuration file ("~/.tuxpaintrc" under Linux and Unix,
"tuxpaint.cfg" under Windows) for a line reading: "saveover=new".
Either remove that line, or simply run Tux Paint with the command-line
argument: "--saveoverask", which will override the configuration
file's setting.
I don't want "noquit" mode enabled!
-----------------------------------
If you're running Tux Paint from a command-line, make sure you're
not giving it a "--noquit" option.
Or use Tux Paint Config. and make sure "Ask Before Overwriting" (under
"Saving") is checked.
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--noquit" is listed as an argument.
Also, see "Tux Paint always saves over my old picture!", above.
If "--noquit" isn't on the command-line, check Tux Paint's
configuration file ("~/.tuxpaintrc" under Linux and Unix,
"tuxpaint.cfg" under Windows) for a line reading: "noquit=yes".
Audio Problems
Either remove that line, or simply run Tux Paint with the command-line
argument: "--quit", which will override the configuration file's
setting.
* There's no sound!
First, check the obvious:
Tux Paint keeps writing weird messages to the screen / to a text file
---------------------------------------------------------------------
A few messages are normal, but if Tux Paint is being extremely verbose
(like listing the name of every rubber-stamp image it finds while loading
them), then it was probably compiled with debugging output turned on.
* Are you certain you're using the computer with the sound card?
* Are your speakers connected and turned on?
* Is the volume turned up on your speakers?
* Is the volume turned up in your Operating System's "mixer?"
* Are any other programs running that use sound? (They may be
'blocking' Tux Paint)
* (Unix/Linux) Are you using a sound system, such as aRts, ESD or
GStreamer? If so, try setting the "SDL_AUDIODRIVER" environment
variable before running Tux Paint (e.g.,
"export SDL_AUDIODRIVER=arts"). Or, run Tux Paint through the
system's rerouter (e.g., run "artsdsp tuxpaint" or
"esddsp tuxpaint", instead of simply "tuxpaint").
Rebuild Tux Paint from source. Be sure to remove or comment out any
line that says:
#define DEBUG
If sound seems to work otherwise (and you're sure no other program is
"blocking" the sound device), then Tux Paint is either running with a
"no sound" option or was compiled with sound support disabled
entirely.
in the "tuxpaint.c" file in the "src" directory.
To test whether sound support was enabled when Tux Paint was compiled,
run Tux Paint from a command line, like so:
Tux Paint is using options I didn't specify!
--------------------------------------------
By default, Tux Paint first looks at configuration files for
options.
tuxpaint --version
Unix and Linux
--------------
Under Unix and Linux, it first examines the system-wide
configuration file, located here:
If, amongst the other information, you see "Sound disabled", then the
version of Tux Paint you're running has sound disabled. Recompile
Tux Paint, and be sure NOT to build the "nosound" target. (i.e., don't
run "make nosound") Be sure the SDL_mixer library and its development
headers are available!
/etc/tuxpaint/tuxpaint.conf
If Tux Paint wasn't build without sound support, make sure you're not
running Tux Paint with the "--nosound" option as a command-line
argument.
It then examines the user's personal configuration file:
~/.tuxpaintrc
If it's not, then check the configuration file ("~/.tuxpaintrc" under
Linux and Unix, and "tuxpaint.cfg" under Windows) for a line reading:
"nosound=yes".
Finally, any options sent as command-line arguments are used.
Either remove that line, or simply run Tux Paint with the command-line
argument: "--sound", which will override the configuration file's
setting.
Windows
-------
Under Windows, Tux Paint first examines the configuration file:
Or use Tux Paint Config. and make sure "Enable Sound Effects" (under
"Video & Sound") is checked.
tuxpaint.cfg
* The sound effects sound strange
Then, any options sent as command-line arguments are used.
This could have to do with how SDL and SDL_mixer were initialized.
(The buffer size chosen.)
Please e-mail us with details about your computer system. (Operating
system and version, sound card, which version of Tux Paint you're
running (run "tuxpaint --version" to verify), and so on.)
This means that if anything is set in a configuration file that
you don't want set, you'll need to either change the config. file
(if you can), or override the option on the command-line.
Fullscreen Mode Problems
For example, if "/etc/tuxpaint/tuxpaint.conf" includes an option
to disable sound:
* When I run Tux Paint full-screen and ALT-TAB out, the window turns
black!
nosound=yes
This is apparently a bug in the SDL library. Sorry.
You can reenable sound by either adding this option to your own
".tuxpainrc" file:
* When I run Tux Paint full-screen, it has large borders around it
sound=yes
Linux users - Your X-Window server is probably not set with the
ability to switch to the desired resolution: 800×600. (or whatever
resolution you have Tux Paint set to run at.) (This is typically done
manually under the X-Window server by pressing [Ctrl]-[Alt]-[KeyPad
Plus] and -[KeyPad Minus].)
Or by using this command-line argument:
For this to work, your monitor must support that resolution, and you
need to have it listed in your X server configuration.
--sound
Check the "Display" subsection of the "Screen" section of your XFree86
or X.org configuration file (typically "/etc/X11/XF86Config-4" or
"/etc/X11/XF86Config", depending on the version of XFree86 you're
using; 3.x or 4.x, respectively, or "/etc/X11/xorg.conf" for X.org).
Add "800x600" (or whatever resolution(s) you want) to the appropriate
"Modes" line. (e.g., in the "Display" subsection that contains 24-bit
color depth ("Depth 24"), which is what Tux Paint tries to use.) e.g.:
Linux and Unix users can also disable the system-wide configuration
file by including the following command-line argument:
Modes "1280x1024" "1024x768" "800x600" "640x480"
--nosysconfig
Note that some Linux distributions have tools that can make these
changes for you. Debian users can run the command "dpkg-reconfigure
xserver-xfree86" as root, for example.
Tux Paint will then only look at "~/.tuxpaintrc" and command-line
arguments to determine what options should be set.
* Tux Paint keeps running in Full Screen mode - I want it windowed!
The "fullscreen" option is set.
If you're running Tux Paint from a command-line, make sure you're not
giving it a "--fullscreen" option.
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--fullscreen" is listed as an
argument.
If "--fullscreen" isn't on the command-line, check Tux Paint's
configuration file ("~/.tuxpaintrc" under Linux and Unix,
"tuxpaint.cfg" under Windows) for a line reading: "fullscreen=yes".
Either remove that line, or simply run Tux Paint with the command-line
argument: "--windowed", which will override the configuration file's
setting.
Or use Tux Paint Config. and make sure "Fullscreen" (under "Video &
Sound") is not checked.
Other Probelms
* Tux Paint won't run
If Tux Paint aborts with the message: "You're already running a copy
of Tux Paint!", this means it has been launched in the last 30
seconds. (On Unix/Linux, this message would appear in a terminal
console if you ran Tux Paint from a command-line. On Windows, this
message would appear in a file named "stdout.txt" in the same folder
where TuxPaint.exe resides (e.g., C:\Program Files\TuxPaint).
A lockfile ("~/.tuxpaint/lockfile.dat" on Linux and Unix,
"userdata\lockfile.dat" on Windows) is used to make sure Tux Paint
isn't run too many times at once (e.g., due to a child impatiently
clicking its icon more than once).
Even if the lockfile exists, it contains the 'time' Tux Paint was last
run. If it's been more than 30 seconds, Tux Paint should run fine, and
simply update the lockfile with the current time.
If multiple users are sharing the directory where this file is stored
(e.g., on a shared network drive), then you'll need to disable this
feature.
To disable the lockfile, add the "--nolockfile" argument to
Tux Paint's command-line.
* I can't quit Tux Paint
The "noquit" option is set. This disables the "Quit" button in
Tux Paint's toolbar (greying it out), and prevents Tux Paint from
being quit using the [Escape] key.
If Tux Paint is not in fullscreen mode, simply click the window close
button on Tux Paint's title bar. (i.e., the "(x)" at the upper right.)
If Tux Paint is in fullscreen mode, you will need to use the [Shift] +
[Control] + [Escape] sequence on the keyboard to quit Tux Paint.
(Note: with or without "noquit" set, you can always use the [Alt] +
[F4] combination on your keyboard to quit Tux Paint.)
* I don't want "noquit" mode enabled!
If you're running Tux Paint from a command-line, make sure you're not
giving it a "--noquit" option.
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--noquit" is listed as an argument.
If "--noquit" isn't on the command-line, check Tux Paint's
configuration file ("~/.tuxpaintrc" under Linux and Unix,
"tuxpaint.cfg" under Windows) for a line reading: "noquit=yes".
Either remove that line, or simply run Tux Paint with the command-line
argument: "--quit", which will override the configuration file's
setting.
Or use Tux Paint Config. and make sure "Disable Quit Button and
[Escape] Key" (under "Simplification") is not checked.
* Tux Paint keeps writing weird messages to the screen / to a text file
A few messages are normal, but if Tux Paint is being extremely verbose
(like listing the name of every rubber-stamp image it finds while
loading them), then it was probably compiled with debugging output
turned on.
Rebuild Tux Paint from source. Be sure to remove or comment out any
line that says:
#define DEBUG
in the "tuxpaint.c" file in the "src" directory.
* Tux Paint is using options I didn't specify!
By default, Tux Paint first looks at configuration files for options.
* Unix and Linux
Under Unix and Linux, it first examines the system-wide
configuration file, located here:
/etc/tuxpaint/tuxpaint.conf
It then examines the user's personal configuration file:
~/.tuxpaintrc
Finally, any options sent as command-line arguments are used.
* Windows
Under Windows, Tux Paint first examines the configuration file:
tuxpaint.cfg
Then, any options sent as command-line arguments are used.
This means that if anything is set in a configuration file that you
don't want set, you'll need to either change the config. file (if you
can), or override the option on the command-line.
For example, if "/etc/tuxpaint/tuxpaint.conf" includes an option to
disable sound:
nosound=yes
You can reenable sound by either adding this option to your own
".tuxpainrc" file:
sound=yes
Or by using this command-line argument:
--sound
Linux and Unix users can also disable the system-wide configuration
file by including the following command-line argument:
--nosysconfig
Tux Paint will then only look at "~/.tuxpaintrc" and command-line
arguments to determine what options should be set.
Help / Contact
--------------
Any questions you don't see answered? Let me know!
bill@newbreedsoftware.com
Any questions you don't see answered? Let me know!
Or post to our 'tuxpaint-dev' mailing list:
bill@newbreedsoftware.com
http://www.newbreedsoftware.com/tuxpaint/lists/
Or post to our 'tuxpaint-users' mailing list:
http://www.newbreedsoftware.com/tuxpaint/lists/

View file

@ -26,530 +26,584 @@ com/tuxpaint/</a></p>
<p>September 14, 2002 - October 9, 2005</p>
</center>
<pre>
Frequently Asked Questions:
---------------------------
Drawing-related
---------------
The Magic "Fill" Tool Looks Bad
-------------------------------
Tux Paint is probably comparing exact pixel colors when filling.
This is faster, but looks worse. Run the command "tuxpaint --version"
from a command line, and you should see, amongst the other output:
"Low Quality Flood Fill enabled".
<h2>Drawing-related</h2>
To change this, you must rebuild Tux Paint from source.
Be sure to remove or comment out any line that says:
<ul>
<li><em>The Magic "Fill" Tool Looks Bad</em>
<p>Tux&nbsp;Paint is probably comparing exact pixel colors when filling.
This is faster, but looks worse. Run the command "tuxpaint --version"
from a command line, and you should see, amongst the other output:
"Low Quality Flood Fill enabled".</p>
<p>To change this, you must rebuild Tux&nbsp;Paint from source.
Be sure to remove or comment out any line that says:</p>
<blockquote><p><code>
#define LOW_QUALITY_FLOOD_FILL
</code></p></blcokquote>
in the "tuxpaint.c" file in the "src" directory.
<p>in the "tuxpaint.c" file in the "src" directory.</p>
</li>
<li><em>Stamp outlines are always rectangles</em>
<p>Tux&nbsp;Paint was built with low-quality (but faster) stamp outlines.</p>
Stamp outlines are always rectangles
------------------------------------
Tux Paint was built with low-quality (but faster) stamp outlines.
<p>Rebuild Tux&nbsp;Paint from source. Be sure to remove or comment out any
line that says:</p>
Rebuild Tux Paint from source. Be sure to remove or comment out any
line that says:
<blockquote><p><code>
#define LOW_QUALITY_STAMP_OUTLINE
</code></p></blockquote>
in the "tuxpaint.c" file in the "src" directory.
<p>in the "tuxpaint.c" file in the "src" directory.</p>
</li>
<li><em>The Rubber Stamp tool is greyed out!</em>
<p>This means that Tux&nbsp;Paint either couldn't find any stamp images,
or was asked not to load them.</p>
The Rubber Stamp tool is greyed out!
------------------------------------
This means that Tux Paint either couldn't find any stamp images,
or was asked not to load them.
<p>If you installed Tux&nbsp;Paint, but did not install the separate,
optional "Stamps" collection, quit Tux&nbsp;Paint and install it now.
It should be available from the same place you got the main
Tux&nbsp;Paint program. <i>(Note: As of version 0.9.14, Tux&nbsp;Paint
comes with a small collection of example stamps.)</i></p>
If you installed Tux Paint, but did not install the separate,
optional "Stamps" collection, quit Tux Paint and install it now.
It should be available from the same place you got the main
Tux Paint program.
<p>If you don't want to install the default collection of stamps,
you can just create your own. See the <a href="README.html">README
documentation</a> for more on creating PNG image files, TXT text
description files, WAV sound files, and DAT text data files that
make up stamps.</p>
If you don't want to install the default collection of stamps,
you can just create your own. See the README documentation for
more on creating PNG image files, TXT text description files,
WAV sound files, and DAT text data files that make up stamps.
<p>Finally, if you install the stamps, and think they should be loading,
check to see that the "nostamps" option isn't being set.
(Either via a "--nostamps" option to Tux&nbsp;Paint's command line, or
"nostamps=yes" in the configuration file.)</p>
Finally, if you install the stamps, and think they should be loading,
check to see that the "nostamps" option isn't being set.
(Either via a "--nostamps" option to Tux Paint's command line, or
"nostamps=yes" in the configuration file.)
<p>If so, either change/remove the "nostamps" option, or you can
override it with "--stamps" on the command line or
"nostamps=no" or "stamps=yes" in a configuration file.</p>
</li>
</ul>
If so, either change/remove the "nostamps" option, or you can
override it with "--stamps" on the command line or
"nostamps=no" or "stamps=yes" in a configuration file.
<h2>Interface Problems</h2>
<ul>
<li><em>Stamp thumbnails in the Stamp Selector look bad</em>
<p>Tux&nbsp;Paint was probably compiled with the faster, lower quality
thumbnail code enabled. Run the command: "tuxpaint --version" from
a command line. If, amongst the other output, you see the text:
"Low Quality Thumbnails enabled", then this is what's happening.</p>
Interface Problems
------------------
Stamp thumbnails in the Stamp Selector look bad
-----------------------------------------------
Tux Paint was probably compiled with the faster, lower quality
thumbnail code enabled. Run the command: "tuxpaint --version" from
a command line. If, amongst the other output, you see the text:
"Low Quality Thumbnails enabled", then this is what's happening.
<p>Rebuild Tux&nbsp;Paint from source. Be sure to remove or comment out any
line that says:</p>
Rebuild Tux Paint from source. Be sure to remove or comment out any
line that says:
<blockquote><p><code>
#define LOW_QUALITY_THUMBNAILS
</code></p></blockquote>
in the "tuxpaint.c" file in the "src" directory.
<p>in the "tuxpaint.c" file in the "src" directory.</p>
</li>
<li><em>Pictures in the 'Open' dialog look bad</em>
<p>"Low Quality Thumbnails" is probably enabled.
See: "Stamp thumbnails in the Stamp Selector look bad", above.</p>
</li>
Pictures in the 'Open' dialog look bad
--------------------------------------
"Low Quality Thumbnails" is probably enabled.
See: "Stamp thumbnails in the Stamp Selector look bad", above.
<li><em>The color picker buttons are ugly squares, not pretty buttons!</em>
<p>Tux&nbsp;Paint was probably compiled with the nice looking color
selector buttons disabled. Run the command: "tuxpaint --version" from
a command line. If, amongst the other output, you see the text:
"Low Quality Color Selector enabled", then this is what's happening.</p>
<p>Rebuild Tux&nbsp;Paint from source. Be sure to remove or comment out any
line that says:</p>
The color picker buttons are ugly squares, not pretty buttons!
--------------------------------------------------------------
Tux Paint was probably compiled with the nice looking color
selector buttons disabled. Run the command: "tuxpaint --version" from
a command line. If, amongst the other output, you see the text:
"Low Quality Color Selector enabled", then this is what's happening.
Rebuild Tux Paint from source. Be sure to remove or comment out any
line that says:
<blockquote><p><code>
#define LOW_QUALITY_COLOR_SELECTOR
</code></p></blockquote>
in the "tuxpaint.c" file in the "src" directory.
The Mouse Pointer Leaves Trails!
--------------------------------
In Windows under fullscreen, and in Linux under fullscreen outside of
X-Window, the SDL library has a bug where the mouse pointer can leave
trails of 'garbage' on the screen.
<p>in the "tuxpaint.c" file in the "src" directory.</p>
</li>
Until there's a fix, either don't use fullscreen, or disable the
fancy mouse pointer shapes using the configuration option:
<li><em>All of the text is in uppercase!</em>
<p>The "uppercase" option is on.</p>
nofancycursors=yes
<p>If you're running Tux&nbsp;Paint from a command-line, make sure you're
not giving it an "--uppercase" option.</p>
Or by using this command-line argument:
<p>If you're running Tux&nbsp;Paint by double-clicking an icon, check the
properties of the icon to see if "--uppercase" is listed as a
command-line argument.</p>
--nofancycursors
All of the text is in uppercase!
--------------------------------
The "uppercase" option is on.
<p>If "--uppercase" isn't being sent on the command line, check
Tux&nbsp;Paint's configuration file ("~/.tuxpaintrc" under Linux and Unix,
"tuxpaint.cfg" under Windows) for a line reading: "uppercase=yes".</p>
If you're running Tux Paint from a command-line, make sure you're
not giving it an "--uppercase" option.
<p>Either remove that line, or simply run Tux&nbsp;Paint with the
command-line argument: "--mixedcase", which will override the uppercase
setting.</p>
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--uppercase" is listed as a
command-line argument.
<p>Or use Tux&nbsp;Paint&nbsp;Config. and make sure
"Show Uppercase Text Only" (under "Languages") is not checked.</p>
</li>
If "--uppercase" isn't being sent on the command line, check Tux Paint's
configuration file ("~/.tuxpaintrc" under Linux and Unix,
"tuxpaint.cfg" under Windows) for a line reading: "uppercase=yes".
<li><em>Tux&nbsp;Paint is in a different language!</em>
<p>Make sure your locale setting is correct.
See "Tux&nbsp;Paint won't switch to my language", below.</p>
Either remove that line, or simply run Tux Paint with the command-line
argument: "--mixedcase", which will override the uppercase setting.
<li><em>Tux&nbsp;Paint won't switch to my language</em>
<ul>
<li><i>Linux and Unix users: Make sure the locale is available</i></li>
<p>Make sure the locale you want is available. Check your
"/etc/locale.gen" file. See the
<a href="README.html">README documentation</a> for the locales
Tux&nbsp;Paint uses (especially when using the "--lang" option).</p>
<p>Note: Debian users can simply run "dpkg-reconfigure locales"
if the locales are managed by "dpkg."</p>
Tux Paint is in a weird language!
---------------------------------
Make sure your locale setting is correct.
See "Tux Paint won't switch to my language", below.
<ul>
<li>If you're using the "--lang" command-line option
<p>Try using the "--locale" command-line option, or your operating
system's locale settings (e.g., the "$LANG" environment variable), and
please e-mail us regarding your trouble.</p>
</li>
<li>If you're using the "--locale" command-line option
<p>If this doesn't work, please e-mail us regarding your trouble.</p>
</li>
Tux Paint won't switch to my language
-------------------------------------
Linux and Unix users: Make sure the locale is available
-------------------------------------------------------
Make sure the locale you want is available. Check your
"/etc/locale.gen" file. See README.txt for the locales
Tux Paint uses (especially when using the "--lang" option).
<li>If you're trying to use your Operating System's locale
<p>If this doesn't work, please e-mail us regarding your trouble.</p>
</li>
Note: Debian users can simply run "dpkg-reconfigure locales"
if the locales are managed by dpkg.
<li>Make sure you have the necessary font
<p>Some translations require their own font. Chinese and Korean,
for example, need Chinese and Korean TrueType Fonts installed
and placed in the proper location, respectively.</p>
<p>The appropriate fonts for such locales can be downloaded from the
Tux&nbsp;Paint website:</p>
<blockquote><p>
<a href="http://www.newbreedsoftware.com/tuxpaint/download/fonts/"
>http://www.newbreedsoftware.com/tuxpaint/download/fonts/</a>
</p></blockquote>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h2>Printing</h2>
<ul>
<li><em>Tux&nbsp;Paint won't print, gives an error, or prints garbage
(Unix/Linux)</em>
<p>Tux&nbsp;Paint prints by creating a PostScript rendition of the picture
and sending it to an external command. By default, this command is
the "lpr" printing tool.</p>
<p>If that program is not available (for example, you're using CUPS,
the Common Unix Printing System, and do not have "cups-lpr" installed),
you will need to specify an appropriate command using the
"printcommand" option in Tux&nbsp;Paint's configuration file.
(See the <a href="OPTIONS.html">OPTIONS documentation</a>.)</p>
<p><i>Note: Versions of Tux&nbsp;Paint prior to 0.9.15 used a different
default command for printing, "pngtopnm&nbsp;|&nbsp;pnmtops&nbsp;|&nbsp;lpr",
as Tux&nbsp;Paint output PNG format, rather than PostScript.</p>
If you're using the "--lang" command-line option
------------------------------------------------
Try using the "--locale" command-line option, or your operating system's
locale settings (e.g., the "$LANG" environment variable), and
please e-mail us regarding your trouble.
If you're using the "--locale" command-line option
--------------------------------------------------
If this doesn't work, please e-mail us regarding your trouble.
If you're trying to use your Operating System's locale
------------------------------------------------------
If this doesn't work, please e-mail us regarding your trouble.
<p>If you had changed your "printcommand" option prior to Tux&nbsp;Paint
0.9.15, you will need to go back and alter it to accept PostScript.</p>
</li>
Make sure you have the necessary font
-------------------------------------
Some translations require their own font. Chinese and Korean,
for example, need Chinese and Korean TrueType Fonts installed
and placed in the proper location, respectively.
<li><em>I get the message "You can't print yet!" when I go to print!</em>
<p>The "print delay" option is on. You can only print once every
<i>X</i>&nbsp;seconds.</p>
The appropriate fonts for such locales can be downloaded from the
Tux Paint website:
<p>If you're running Tux&nbsp;Paint from a command-line, make sure you're
not giving it a "--printdelay=..." option.</p>
http://www.newbreedsoftware.com/tuxpaint/download/fonts/
<p>If you're running Tux&nbsp;Paint by double-clicking an icon, check the
properties of the icon to see if "--printdelay=..." is listed as
a command-line argument.</p>
<p>If a "--printdelay=..." option isn't being sent on the command line,
check Tux&nbsp;Paint's configuration file ("~/.tuxpaintrc" under Linux and
Unix, "tuxpaint.cfg" under Windows) for a line reading:
"printdelay=...".</p>
Printing
--------
Tux Paint won't print, gives an error, or prints garbage (Unix/Linux)
---------------------------------------------------------------------
Tux Paint prints by creating a PostScript rendition of the picture
and sending it to an external command. By default, this command is
the "lpr" printing tool.
<p>Either remove that line, set the delay value to 0 (no delay), or
decrease the delay to a value you prefer. (See the
<a href="README.html">README documentation</a>).</p>
If that program is not available (for example, you're using CUPS,
the Common Unix Printing System, and do not have "cups-lpr" installed),
you will need to specify an appropriate command using the
"printcommand" option in Tux Paint's configuration file.
(See the OPTIONS documentation.)
<p>Or, you can simply run Tux&nbsp;Paint with the command-line argument:
"--printdelay=0", which will override the configuration file's setting,
and allow unlimited printing. (You won't have to wait between prints.)</p>
Note: Versions of Tux Paint prior to 0.9.15 used a different default
command for printing, "pngtopnm | pnmtops | lpr", as Tux Paint output
PNG format, rather than PostScript.
If you had changed your "printcommand" option prior to Tux Paint 0.9.15,
you will need to go back and alter it to accept PostScript.
<p>Or use Tux&nbsp;Paint&nbsp;Config. and make sure
"Print Delay" (under "Printing") is set to "0&nbsp;seconds."</p>
</li>
<li><em>I simply can't print! The button is greyed out!</em>
<p>The "no print" option is on.</p>
I get the message "You can't print yet!" when I go to print!
------------------------------------------------------------
The "print delay" option is on. You can only print once every X seconds.
<p>If you're running Tux&nbsp;Paint from a command-line, make sure you're
not giving it a "--noprint" option.</p>
If you're running Tux Paint from a command-line, make sure you're
not giving it a "--printdelay=..." option.
<p>If you're running Tux&nbsp;Paint by double-clicking an icon, check the
properties of the icon to see if "--noprint" is listed as an argument.</p>
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--printdelay=..." is listed as
a command-line argument.
<p>If "--noprint" isn't on the command-line, check Tux&nbsp;Paint's
configuration file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg"
under Windows) for a line reading: "noprint=yes".</p>
If a "--printdelay=..." option isn't being sent on the command line,
check Tux Paint's configuration file ("~/.tuxpaintrc" under Linux and
Unix, "tuxpaint.cfg" under Windows) for a line reading:
"printdelay=...".
<p>Either remove that line, or simply run Tux&nbsp;Paint with the
command-line argument: "--print", which will override the configuration
file's setting.</p>
Either remove that line, set the delay value to 0 (no delay), or
decrease the delay to a value you prefer. (See README.txt).
Or, you can simply run Tux Paint with the command-line argument:
"--printdelay=0", which will override the configuration file's setting,
and allow unlimited printing. (You won't have to wait between prints.)
<p>Or use Tux&nbsp;Paint&nbsp;Config. and make sure
"Allow Printing" (under "Printing") is checked.</p>
</li>
</ul>
<h2>Saving</h2>
<ul>
<li><em>Tux&nbsp;Paint always saves over my old picture!</em>
<p>The "save over" option is enabled. (This disables the prompt
that would appear when you click 'Save.')</p>
I simply can't print! The button is greyed out!
------------------------------------------------
The "no print" option is on.
<p>If you're running Tux&nbsp;Paint from a command-line, make sure you're
not giving it a "--saveover" option.</p>
If you're running Tux Paint from a command-line, make sure you're
not giving it a "--noprint" option.
<p>If you're running Tux&nbsp;Paint by double-clicking an icon, check the
properties of the icon to see if "--saveover" is listed as an argument.</p>
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--noprint" is listed as an argument.
<p>If "--saveover" isn't on the command-line, check Tux&nbsp;Paint's
configuration file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg"
under Windows) for a line reading: "saveover=yes".</p>
If "--noprint" isn't on the command-line, check Tux Paint's configuration
file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg" under Windows)
for a line reading: "noprint=yes".
<p>Either remove that line, or simply run Tux&nbsp;Paint with the
command-line argument: "--saveoverask", which will override the
configuration file's setting.</p>
Either remove that line, or simply run Tux Paint with the command-line
argument: "--print", which will override the configuration file's setting.
<p>Or use Tux&nbsp;Paint&nbsp;Config. and make sure
"Ask Before Overwriting" (under "Saving") is checked.</p>
<p>Also, see "Tux&nbsp;Paint always saves a new picture!", below.</p>
</li>
Saving
------
Tux Paint always saves over my old picture!
-------------------------------------------
The "save over" option is enabled. (This disables the prompt
that would appear when you click 'Save.')
<li><em>Tux&nbsp;Paint always saves a new picture!</em>
<p>The "never save over" option is enabled. (This disables the prompt
that would appear when you click 'Save.')</p>
If you're running Tux Paint from a command-line, make sure you're
not giving it a "--saveover" option.
<p>If you're running Tux&nbsp;Paint from a command-line, make sure you're
not giving it a "--saveovernew" option.</p>
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--saveover" is listed as an argument.
<p>If you're running Tux&nbsp;Paint by double-clicking an icon, check the
properties of the icon to see if "--saveovernew" is listed as an
argument.</p>
If "--saveover" isn't on the command-line, check Tux Paint's configuration
file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg" under Windows)
for a line reading: "saveover=yes".
<p>If "--saveovernew" isn't on the command-line, check Tux&nbsp;Paint's
configuration file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg"
under Windows) for a line reading: "saveover=new".</p>
Either remove that line, or simply run Tux Paint with the command-line
argument: "--saveoverask", which will override the configuration file's
setting.
<p>Either remove that line, or simply run Tux&nbsp;Paint with the
command-line argument: "--saveoverask", which will override the
configuration file's setting.</p>
Also, see "Tux Paint always saves a new picture!", below.
<p>Or use Tux&nbsp;Paint&nbsp;Config. and make sure
"Ask Before Overwriting" (under "Saving") is checked.</p>
<p>Also, see "Tux&nbsp;Paint always saves over my old picture!", above.</p>
</li>
</ul>
Tux Paint always saves a new picture!
-------------------------------------
The "never save over" option is enabled. (This disables the prompt
that would appear when you click 'Save.')
<h2>Audio Problems</h2>
<ul>
<li><em>There's no sound!</em>
<p>First, check the obvious:</p>
If you're running Tux Paint from a command-line, make sure you're
not giving it a "--saveovernew" option.
<ul>
<li>Are you certain you're using the computer with the sound card?
<li>Are your speakers connected and turned on?
<li>Is the volume turned up on your speakers?
<li>Is the volume turned up in your Operating System's "mixer?"
<li>Are any other programs running that use sound? (They may be
'blocking' Tux&nbsp;Paint)
<li>(Unix/Linux) Are you using a sound system, such as aRts, ESD or
GStreamer? If so, try setting the "SDL_AUDIODRIVER" environment variable
before running Tux&nbsp;Paint (e.g., "export&nbsp;SDL_AUDIODRIVER=arts").
Or, run Tux&nbsp;Paint through the system's rerouter (e.g.,
run "artsdsp&nbsp;tuxpaint" or "esddsp&nbsp;tuxpaint", instead of
simply "tuxpaint").
</ul>
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--saveovernew" is listed as an argument.
<p>If sound seems to work otherwise (and you're sure no other program is
"blocking" the sound device), then Tux&nbsp;Paint is either running with
a "no sound" option or was compiled with sound support disabled entirely.</p>
If "--saveovernew" isn't on the command-line, check Tux Paint's
configuration file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg"
under Windows) for a line reading: "saveover=new".
Either remove that line, or simply run Tux Paint with the command-line
argument: "--saveoverask", which will override the configuration file's
setting.
Also, see "Tux Paint always saves over my old picture!", above.
Audio Problems
--------------
There's no sound!
-----------------
First, check the obvious:
* Are you certain you're using the computer with the sound card? ;^)
* Are your speakers connected and turned on?
* Is the volume turned up on your speakers?
* Is the volume turned up in your Operating System's "mixer?"
* Are any other programs running that use sound? (They may be
'blocking' Tux Paint)
If sound seems to work otherwise (and you're sure no other program is
"blocking" the sound device), then Tux Paint is either running with
a "no sound" option or was compiled with sound support disabled entirely.
To test whether sound support was enabled when Tux Paint was compiled,
run Tux Paint from a command line, like so:
<p>To test whether sound support was enabled when Tux&nbsp;Paint was
compiled, run Tux&nbsp;Paint from a command line, like so:</p>
<blockquote><p><code>
tuxpaint --version
</code></p></blockquote>
If, amongst the other information, you see "Sound disabled", then the
version of Tux Paint you're running has sound disabled. Recompiled
Tux Paint, and be sure NOT to build the "nosound" target.
(i.e., don't run "make nosound") Be sure SDL_mixer library is available!
<p>If, amongst the other information, you see "Sound disabled", then the
version of Tux&nbsp;Paint you're running has sound disabled. Recompile
Tux&nbsp;Paint, and be sure NOT to build the "nosound" target.
(i.e., don't run "make nosound") Be sure the SDL_mixer library and
its development headers are available!</p>
If Tux Paint wasn't build without sound support, make sure you're
not running Tux Paint with the "--nosound" option as a command-line
argument.
<p>If Tux&nbsp;Paint wasn't build without sound support, make sure you're
not running Tux&nbsp;Paint with the "--nosound" option as a command-line
argument.</p>
If it's not, then check the configuration file ("~/.tuxpaintrc" under
Linux and Unix, and "tuxpaint.cfg" under Windows) for a line reading:
"nosound=yes".
<p>If it's not, then check the configuration file ("~/.tuxpaintrc" under
Linux and Unix, and "tuxpaint.cfg" under Windows) for a line reading:
"nosound=yes".</p>
Either remove that line, or simply run Tux Paint with the command-line
argument: "--sound", which will override the configuration file's setting.
<p>Either remove that line, or simply run Tux&nbsp;Paint with the
command-line argument: "--sound", which will override the configuration
file's setting.</p>
<p>Or use Tux&nbsp;Paint&nbsp;Config. and make sure
"Enable Sound Effects" (under "Video &amp; Sound") is checked.</p>
The sound effects sound strange
-------------------------------
This could have to do with how SDL and SDL_mixer were initialized.
(The buffer size chosen.)
<li><em>The sound effects sound strange</em>
<p>This could have to do with how SDL and SDL_mixer were initialized.
(The buffer size chosen.)</p>
Please e-mail us with details about your computer system.
(Operating system and version, sound card, which version of Tux Paint
you're running (run "tuxpaint --version" to verify), and so on.)
<p>Please e-mail us with details about your computer system.
(Operating system and version, sound card, which version of Tux&nbsp;Paint
you're running (run "tuxpaint --version" to verify), and so on.)</p>
</li>
</ul>
<h2>Fullscreen Mode Problems</h2>
<ul>
<li><em>When I run Tux&nbsp;Paint full-screen and ALT-TAB out, the window turns
black!</em>
Fullscreen Mode Problems
------------------------
When I run Tux Paint full-screen and ALT-TAB out, the window turns black!
-------------------------------------------------------------------------
This is apparently a bug in the SDL library. Sorry.
<p>This is apparently a bug in the SDL library. Sorry.</p>
<li><em>When I run Tux&nbsp;Paint full-screen, it has large borders around
it</em>
When I run Tux Paint full-screen, it has large borders around it
----------------------------------------------------------------
Linux users - Your X-Window server is probably not set with the
ability to switch to the desired resolution: 640 x 480.
(This is typically done manually under the XFree86 server by
pressing [Ctrl]-[Alt]-[KeyPad Plus] and -[KeyPad Minus].)
<p>Linux users - Your X-Window server is probably not set with the
ability to switch to the desired resolution: 800&times;600.
(or whatever resolution you have Tux&nbsp;Paint set to run at.)
(This is typically done manually under the X-Window server by
pressing [Ctrl]-[Alt]-[KeyPad Plus] and -[KeyPad Minus].)</p>
For this to work, your monitor must support that resolution, and
you need to have it listed in your X server configuration.
<p>For this to work, your monitor must support that resolution, and
you need to have it listed in your X server configuration.</p>
Check the "Display" subsection of the "Screen" section of your
XFree86 configuration file (typically "/etc/X11/XF86Config-4" or
"/etc/X11/XF86Config", depending on the version of XFree86 you're
using; 3.x or 4.x, respectively).
<p>Check the "Display" subsection of the "Screen" section of your
XFree86 or X.org configuration file (typically "/etc/X11/XF86Config-4" or
"/etc/X11/XF86Config", depending on the version of XFree86 you're
using; 3.x or 4.x, respectively, or "/etc/X11/xorg.conf" for X.org).</p>
Add "640x480" to the appropriate "Modes" line. (e.g., in
the "Display" subsection that contains 16-bit color depth ("Depth 16"),
which is what Tux Paint tries to use.)
e.g.:
<p>Add "800x600" (or whatever resolution(s) you want) to the appropriate
"Modes" line. (e.g., in the "Display" subsection that contains 24-bit color
depth ("Depth&nbsp;24"), which is what Tux&nbsp;Paint tries to use.)
e.g.:<p>
<blockquote><p><code>
Modes "1280x1024" "1024x768" "800x600" "640x480"
</code></p></blockquote>
Note that some Linux distributions have tools that can make these
changes for you. Debian users can run the command
"dpkg-reconfigure xserver-xfree86" as root, for example.
<p>Note that some Linux distributions have tools that can make these
changes for you. Debian users can run the command
"dpkg-reconfigure xserver-xfree86" as root, for example.</p>
</li>
<li><em>Tux&nbsp;Paint keeps running in Full Screen mode - I want it
windowed!</em>
<p>The "fullscreen" option is set.</p>
Tux Paint keeps running in Full Screen mode - I want it windowed!
-----------------------------------------------------------------
The "fullscreen" option is set.
<p>If you're running Tux&nbsp;Paint from a command-line, make sure you're
not giving it a "--fullscreen" option.</p>
If you're running Tux Paint from a command-line, make sure you're
not giving it a "--fullscreen" option.
<p>If you're running Tux&nbsp;Paint by double-clicking an icon, check the
properties of the icon to see if "--fullscreen" is listed as an argument.</p>
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--fullscreen" is listed as an argument.
<p>If "--fullscreen" isn't on the command-line, check Tux&nbsp;Paint's
configuration file ("~/.tuxpaintrc" under Linux and Unix,
"tuxpaint.cfg" under Windows) for a line reading: "fullscreen=yes".</p>
If "--fullscreen" isn't on the command-line, check Tux Paint's
configuration file ("~/.tuxpaintrc" under Linux and Unix,
"tuxpaint.cfg" under Windows) for a line reading: "fullscreen=yes".
<p>Either remove that line, or simply run Tux&nbsp;Paint with the
command-line argument: "--windowed", which will override the configuration
file's setting.</p>
Either remove that line, or simply run Tux Paint with the command-line
argument: "--windowed", which will override the configuration file's
setting.
<p>Or use Tux&nbsp;Paint&nbsp;Config. and make sure
"Fullscreen" (under "Video &amp; Sound") is not checked.</p>
</li>
</ul>
<h2>Other Probelms</h2>
<ul>
<li><em>Tux&nbsp;Paint won't run</em>
<p>If Tux&nbsp;Paint aborts with the message:
"You're already running a copy of Tux&nbsp;Paint!",
this means it has been launched in the last 30 seconds.
(On Unix/Linux, this message would appear in a terminal console if you
ran Tux&nbsp;Paint from a command-line. On Windows, this message would
appear in a file named "stdout.txt" in the same folder where TuxPaint.exe
resides (e.g., C:\Program&nbsp;Files\TuxPaint).</p>
Other Probelms
--------------
Tux Paint won't run
-------------------
If Tux Paint aborts with the message:
"You're already running a copy of Tux Paint!",
this means it has been launched in the last 30 seconds.
<p>A lockfile ("~/.tuxpaint/lockfile.dat" on Linux and Unix,
"userdata\lockfile.dat" on Windows) is used to make sure Tux&nbsp;Paint
isn't run too many times at once (e.g., due to a child impatiently
clicking its icon more than once).</p>
A lockfile ("~/.tuxpaint/lockfile.dat" on Linux and Unix,
"userdata\lockfile.dat" on Windows) is used to make sure Tux Paint
isn't run too many times at once (e.g., due to a child impatiently
clicking its icon more than once).
<p>Even if the lockfile exists, it contains the 'time' Tux&nbsp;Paint was
last run. If it's been more than 30 seconds, Tux&nbsp;Paint should run fine,
and simply update the lockfile with the current time.</p>
Even if the lockfile exists, it contains the 'time' Tux Paint was last
run. If it's been more than 30 seconds, Tux Paint should run fine,
and simply update the lockfile with the current time.
<p>If multiple users are sharing the directory where this file is stored
(e.g., on a shared network drive), then you'll need to disable this
feature.</p>
If multiple users are sharing the directory where this file is stored
(e.g., on a shared network drive), then you'll need to disable this
feature.
<p>To disable the lockfile, add the "--nolockfile" argument to
Tux&nbsp;Paint's command-line.</p>
</li>
To disable the lockfile, add the "--nolockfile" argument to Tux Paint's
command-line.
<li><em>I can't quit Tux&nbsp;Paint</em>
<p>The "noquit" option is set. This disables the "Quit" button in
Tux&nbsp;Paint's toolbar (greying it out), and prevents Tux&nbsp;Paint from
being quit using the [Escape] key.</p>
<p>If Tux&nbsp;Paint is not in fullscreen mode, simply click the
window close button on Tux&nbsp;Paint's title bar.
(i.e., the "(x)" at the upper right.)</p>
I can't quit Tux Paint
----------------------
The "noquit" option is set. This disables the "Quit" button in
Tux Paint's toolbar (greying it out), and prevents Tux Paint from
being quit using the [Escape] key.
<p>If Tux&nbsp;Paint is in fullscreen mode, you will need to use the
[Shift] + [Control] + [Escape] sequence on the keyboard to
quit Tux&nbsp;Paint.</p>
If Tux Paint is not in fullscreen mode, simply click the
window close button on Tux Paint's title bar.
(i.e., the "(x) at the upper right.)
<p>(Note: with or without "noquit" set, you can always use the
[Alt] + [F4] combination on your keyboard to quit Tux&nbsp;Paint.)</p>
</li>
If Tux Paint is in fullscreen mode, you will need to use the
[Shift] + [Control] + [Escape] sequence on the keyboard to
quit Tux Paint.
<li><em>I don't want "noquit" mode enabled!</em>
<p>If you're running Tux&nbsp;Paint from a command-line, make sure you're
not giving it a "--noquit" option.</p>
(Note: with or without "noquit" set, you can always use the
[Alt] + [F4] combination on your keyboard to quit Tux Paint.)
<p>If you're running Tux&nbsp;Paint by double-clicking an icon, check the
properties of the icon to see if "--noquit" is listed as an argument.</p>
<p>If "--noquit" isn't on the command-line, check Tux&nbsp;Paint's
configuration file ("~/.tuxpaintrc" under Linux and Unix,
"tuxpaint.cfg" under Windows) for a line reading: "noquit=yes".</p>
I don't want "noquit" mode enabled!
-----------------------------------
If you're running Tux Paint from a command-line, make sure you're
not giving it a "--noquit" option.
<p>Either remove that line, or simply run Tux&nbsp;Paint with the
command-line argument: "--quit", which will override the configuration file's
setting.</p>
If you're running Tux Paint by double-clicking an icon, check the
properties of the icon to see if "--noquit" is listed as an argument.
<p>Or use Tux&nbsp;Paint&nbsp;Config. and make sure
"Disable Quit Button and [Escape] Key" (under "Simplification")
is not checked.</p>
</li>
If "--noquit" isn't on the command-line, check Tux Paint's
configuration file ("~/.tuxpaintrc" under Linux and Unix,
"tuxpaint.cfg" under Windows) for a line reading: "noquit=yes".
<li><em>Tux&nbsp;Paint keeps writing weird messages to the screen / to a text
file</em>
<p>A few messages are normal, but if Tux&nbsp;Paint is being extremely
verbose (like listing the name of every rubber-stamp image it finds while
loading them), then it was probably compiled with debugging output turned
on.</p>
Either remove that line, or simply run Tux Paint with the command-line
argument: "--quit", which will override the configuration file's
setting.
<p>Rebuild Tux&nbsp;Paint from source. Be sure to remove or comment out any
line that says:</p>
Tux Paint keeps writing weird messages to the screen / to a text file
---------------------------------------------------------------------
A few messages are normal, but if Tux Paint is being extremely verbose
(like listing the name of every rubber-stamp image it finds while loading
them), then it was probably compiled with debugging output turned on.
Rebuild Tux Paint from source. Be sure to remove or comment out any
line that says:
<blockquote><p><code>
#define DEBUG
</code></p></blockquote>
in the "tuxpaint.c" file in the "src" directory.
<p>in the "tuxpaint.c" file in the "src" directory.</p>
</li>
Tux Paint is using options I didn't specify!
--------------------------------------------
By default, Tux Paint first looks at configuration files for
options.
<li><em>Tux&nbsp;Paint is using options I didn't specify!</em>
<p>By default, Tux&nbsp;Paint first looks at configuration files for
options.</p>
Unix and Linux
--------------
Under Unix and Linux, it first examines the system-wide
configuration file, located here:
<ul>
<li><i>Unix and Linux</i>
<p>Under Unix and Linux, it first examines the system-wide
configuration file, located here:</p>
<blockquote><p><code>
/etc/tuxpaint/tuxpaint.conf
</code></p></blockquote>
It then examines the user's personal configuration file:
<p>It then examines the user's personal configuration file:</p>
<blockquote><p><code>
~/.tuxpaintrc
</code></p></blockquote>
Finally, any options sent as command-line arguments are used.
<p>Finally, any options sent as command-line arguments are used.</p>
</li>
Windows
-------
Under Windows, Tux Paint first examines the configuration file:
<li><i>Windows</i>
<p>Under Windows, Tux&nbsp;Paint first examines the configuration file:</p>
<blockquote><p><code>
tuxpaint.cfg
</blockquote></p></code>
Then, any options sent as command-line arguments are used.
<p>Then, any options sent as command-line arguments are used.</p>
</li>
</ul>
<p>This means that if anything is set in a configuration file that
you don't want set, you'll need to either change the config. file
(if you can), or override the option on the command-line.</p>
This means that if anything is set in a configuration file that
you don't want set, you'll need to either change the config. file
(if you can), or override the option on the command-line.
For example, if "/etc/tuxpaint/tuxpaint.conf" includes an option
to disable sound:
<p>For example, if "/etc/tuxpaint/tuxpaint.conf" includes an option
to disable sound:</p>
<blockquote><p><code>
nosound=yes
</blockquote></p></code>
You can reenable sound by either adding this option to your own
".tuxpainrc" file:
<p>You can reenable sound by either adding this option to your own
".tuxpainrc" file:</p>
<blockquote><p><code>
sound=yes
</blockquote></p></code>
Or by using this command-line argument:
<p>Or by using this command-line argument:</p>
<blockquote><p><code>
--sound
</blockquote></p></code>
<p>Linux and Unix users can also disable the system-wide configuration
file by including the following command-line argument:</p>
Linux and Unix users can also disable the system-wide configuration
file by including the following command-line argument:
<blockquote><p><code>
--nosysconfig
</blockquote></p></code>
Tux Paint will then only look at "~/.tuxpaintrc" and command-line
arguments to determine what options should be set.
<p>Tux&nbsp;Paint will then only look at "~/.tuxpaintrc" and command-line
arguments to determine what options should be set.</p>
</li>
</ul>
<h2>Help / Contact</h2>
<p>Any questions you don't see answered? Let me know!</p>
Help / Contact
--------------
Any questions you don't see answered? Let me know!
<blockquote><p><a href="mailto:bill@newbreedsoftware.com"
>bill@newbreedsoftware.com</a></p></blockquote>
bill@newbreedsoftware.com
<p>Or post to our 'tuxpaint-users' mailing list:</p>
Or post to our 'tuxpaint-dev' mailing list:
http://www.newbreedsoftware.com/tuxpaint/lists/
</pre>
<blockquote><p><a href="http://www.newbreedsoftware.com/tuxpaint/lists/"
>http://www.newbreedsoftware.com/tuxpaint/lists/</a></p></blockquote>
</body></html>