Not signed in (Sign In)

Vanilla 1.0.3 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorskolnabber
    • CommentTimeFeb 11th 2007
     
    Hi, I have what is hopefully an easily answerable question.

    I"m trying to pass the page title below to a swf via so.addVariable and am not able to see the plus character (+) render. I've embedded the fonts w/in flash and included the + character there. I've tried various tricks to no avail. Any suggestions much appreciated.

    so.addVariable("pageTitleString", "Airports + Transit");
    • CommentAuthorGeoff
    • CommentTimeFeb 12th 2007
     
    you could try escaping the + symbol - just do

    <code>
    so.addVariable("pageTitleString", escape("Airports + Transit"));
    </code>
    • CommentAuthorskolnabber
    • CommentTimeFeb 12th 2007
     
    thanks for the response.

    I'm still not able to see the + character. Using escape works for other characters, like an ampersand, but not for the +.

    code is viewable at:

    http://www.fulgentstudios.com/genslerdev/airportsTransitIndex.html

    thanks for any further help