Quick Links: Download Gideros Studio | Gideros Documentation | Gideros Development Center | Gideros community chat | DONATE
Tiny little docs error — Gideros Forum

Tiny little docs error

edited February 2014 in Bugs and issues
Hi, guys. I have a quick and easy issue to report regarding the MovieClip->"Common uses and examples" segment in the reference manual. This line in particular has tripped me up a couple of times now:
{50, 150, sprite1, {y = {0, 100, "linear"}}, {alpha = {0, 1, "easeOut"}}},
The y and alpha are in separate elements, when they actually need be in the same one in order for this to work:
{50, 150, sprite1, {y = {0, 100, "linear"}, alpha = {0, 1, "easeOut"}},

Comments

  • edited February 2014
    And, as counting curly brackets goes, I just realized I left one off the end!
    {50, 150, sprite1, {y = {0, 100, "linear"}, alpha = {0, 1, "easeOut"}}},
Sign In or Register to comment.