Hello everyone. I present you my new script. Its only useful for developers. Here goes the description:
# File/Folder Chooser script by BlinK_
# 2008.06.12
#
# This script will let you to select any file or folder.
# It uses show* binaries for GUI. Big thanks to the creators.
#
# This script takes three parameters:
# 1. [o,l,f] Tells what do you want to select from.
# o - folders
# l - symbolic links
# f - files
# 2. [Starting directory] No explanation needed (: .
# 3. [Message] Message which is displayed in title.
#
# This script will return full path to selected file/folder,
# or number zero if cancel pressed.
#
# for example.:
# ./fileChooser.lin olf / "Select file/folder"
# This will start script at / and will let you to select
# folders, symbolic links and regular files.
#
# ./fileChooser.lin o /home/ "Select folder"
# This will start script at /home/ and will let you to select
# only folders.
#
# When navigating, select ../ to go back one folder.
# Select ./ to select current folder. All the folders have
# following /, symlinks have following @, and regular files
# have following *.
#
# This script does NOT follow symbolic links. It treats them
# as regular files.
#
# Known bugs: does not work with files or folders which have
# spaces in names.
#
# Inspired by Keaglez Wall Changer application. This script is
# a MUST for it. (:
#
# Big thanks to everyone who contributed to E2 community.
# Use this script wherever you want. (: But leave this header.
EDIT: New Version. Only a bug fix.