mapgears / scribeui

http://scribeui.org
MIT License
27 stars 15 forks source link

Problem writing Layer OPACITY with scale rules in COMPOSITE block #143

Closed LarsSchy closed 8 years ago

LarsSchy commented 8 years ago

The following syntax gives errors in ScibeUI. I think it should work. COMPOSITE also seems to be a missing keyword since it is not colored in pink.

    COMPOSITE {
        13 -14 {
        OPACITY: 60
        }
        15-16 {
            OPACITY: 100
        }
    }
samuellapointe commented 8 years ago

There's a space between 13 and -14. Try this:

COMPOSITE {
        13-14 {
            OPACITY: 60
        }
        15-16 {
            OPACITY: 100
        }
    }
LarsSchy commented 8 years ago

Those little spaces are hard to find sometimes. Thanks!