| Type | Title | Author |
|---|---|---|
| Forum topic | WebEx Connect Integration Availability | kreester |
| Notebook entry | Day One Dream Factory | chuckbrady |
| Notebook entry | how to animate a sprite | butcher |
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
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.
1) Read the salesforce.com Quick Start Guide so that I can learn how to build DreamFactory applications.
2)
3) Profit!