(AGK version: 108.15)
Submitted: 2013-07-15 14:17:42
Setvirtualresolution(640,480)
ResetTimer()
//Create test sprite cube
id=CreateSprite(0)
SetSpriteSize(id,25,25)
Do
    For i=10 to 255
        SetSpriteColor(id,0,255,0,i)
        Sync()
    Next i
    If Timer()>15 Then Exit
    Sync()
Loop
End
(AGK version: 108.15)
Submitted: 2013-07-15 14:21:28
Setvirtualresolution(640,480)
ResetTimer()
//Create test sprite cube
id=CreateSprite(0)
SetSpriteSize(id,25,25)
SetSpriteColor(id,0,255,0,10)
Do
    For i=10 to 255
        SetSpriteColorAlpha(id,i)
        Sync()
    Next i
    If Timer()>15 Then Exit
    Sync()
Loop
End
Help make AGK better by submitting an example for this command!
(All examples are subject to approval)
Login to post an example of your own.