-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
Behalf Of Florian Bogeschdorfer

>put "a".symbol
>-- #A
>put "b".symbol
>-- #b
>
>Why does it change the "a" to uppercase and the rest not?


Once you've defined a symbol with a certain case, you're stuck with it. Try
to type something like this:

put #BiTmAp
-- #bitmap

Bitmap is a reserved symbol, already defined by Director.. can't do anything
about changing its case.

When you 'invent' a new symbol name, you're also hardwiring the case for the
name. Try this:

put symbol("AVeryUniqueSymbol")
-- #AVeryUniqueSymbol
put symbol("aVERYuniQuEsymBOL")
-- #AVeryUniqueSymbol

The symbol is not defined in uppercase for me when I rev up a new project,
so it's probably not a reserved name. You must have already type '#A' in the
message window (or in your Lingo scripts) at some point while working on
this project and that defined it as a capital 'A'.

Michael Szabo
www.cheezywhiz.com


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]

Reply via email to