Thanks for responding, Tony. The library location seems to be in a weird place, though:
In file included from TinyScreen_Demo.ino:21:0:
C:\Program Files (x86)\Arduino\libraries\TinyCircuits/TinyScreen.h:62:18: fatal error: font.h: No such file or directory
#include "font.h"
^
Once I put the TinyCircuits library there, NameTag and Demo compiled just fine. For some reason, FlappyBirds would not compile - the progress bar would advance about 75%, then hang. (The IDE didn't crash or lock up; it just wouldn't finish compiling.) Not a problem, though - the Demo code has all I need for now.
Is there any way to change the default library location? I'd much rather have it in my user files area, both to avoid requiring administrative privileges to change it, and so that it will be correctly handled by my back-up strategy. I changed the "Sketchbook location" under preferences, but this didn't seem to have any effect.
~~
UPDATE! It turns out that the <Sketchbook location> path includes a "libraries" folder that is searched as well as the one in the Arduino installation folder, but changes/additions to this aren't detected until the IDE is re-started. (Tony, you alluded to this in your earlier post.) I removed the TinyCircuits library from the Arduino installation folder ("\Program Files 9x86)..."), but left it in the user files Arduino location, and after re-starting the IDE the TinyScreen sketches compile just fine.
I still don't know whats wrong with FlappyBirds, though...
~~