View Single Post
Old 11-17-2012, 04:37 PM   PM User | #3
KenJackson
New to the CF scene

 
Join Date: Aug 2010
Location: Maryland, USA
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
KenJackson is an unknown quantity at this point
Almost definitely yes. But you have not been very specific about what you want.

A less-conventional solution, if you have a web site, is one of the power-point-like web presentations. Here are example presentations of two different technologies: Slidy and S5.

You mentioned notepad, so you're probably running Windows. If you install Cygwin, you can write a small bash script to run in a bash shell (a very powerful replacement for the DOS/CMD window) that would pop up a picture, wait and pop up another. I just wrote this little script that I ran just now. It's very limited, but it works.
Code:
#!/bin/bash
IMAGES=(
  "cat-with-mice-on-head.jpg"
  "MSlogo-big.jpg"
  "shed-old-side.jpg"
)

cd ~/img  ||  exit              # Change to my directory with images
for image in "${IMAGES[@]}"; do
    qiv "$image" &              # Display the image with the "qiv" program
    sleep 2.5                   # Pause 2.5 seconds
    kill $(jobs -p)             # Stop displaying the image
done
And of course, you can write a python script with notepad.
KenJackson is offline   Reply With Quote