Username: Password:

butcher's Notebook


As you learn, you're going to want a handy place to write things down. How-to's, quick tips or reminders, source code snippets, and your plans for world domination. Keep them here, and they'll always be at your fingertips.

how to animate a sprite

in the sprite's script, these functions should animate it.

// - - - code - - -

code nodeopen()
sprite.colset(me, 1)
threadstart(me, nextframe(), - 100)
endcode

code nodeclose()
sprite.colset(me, 1)
endcode

code nextframe()
local col, theversion

col = sprite.colget(me) + 1
if col > 6
col = 1
endif
sprite.colset(me, col)

threadstart(me, nextframe(), - 100)
endcode

reminder: read the new Amazon S3 guide

Mitch and Ciara spent a lot of time on this, and I think Ken did too. (Not sure because I haven't read it yet to see how much was reused from the sfdc tutorial.) So make sure I read it before the next big meeting. That way I can speak intelligently to them about how to create apps.

To-do list for next week

1) Read the salesforce.com Quick Start Guide so that I can learn how to build DreamFactory applications.

2)

3) Profit!

Syndicate content